summaryrefslogtreecommitdiffstats
path: root/make_boot_img
blob: a9eea94a20c9a938b9717efb80072ad9fda591ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
#!/usr/bin/perl

use Config;
use MDK::Common;
Config->import;
my ($arch) = $Config{archname} =~ /(.*?)-/;

# move stuff to new "kernel" directory
-d 'kernel' or die "directory kernel is missing\n";
rename 'all.kernels', 'kernel/all.kernels';
rename 'all.modules', 'kernel/all.modules';

my $default_append = "ramdisk_size=128000 root=/dev/ram3";
# full acpi support for amd64, enough acpi support for x86 ht, no acpi for others
my $default_acpi = $arch =~ /i.86/ ? "acpi=ht" : $arch =~ /x86_64/ ? "acpi=off" : "acpi=off";
my $default_vga = "vga=788";

my $instdir = "mdk-stage1";
my $tmp_mnt = '/tmp/drakx_mnt';
my $tmp_mnt_initrd = '/tmp/drakx_mnt2';

my $sudo;
if ($>) {
    $sudo = "sudo";
    $ENV{PATH} = "/sbin:/usr/sbin:$ENV{PATH}";
}

sub __ { print @_, "\n"; system(@_) }
sub _ { __ @_; $? and die }
sub mke2fs { 
    my ($f) = @_;
    _ "/sbin/mke2fs -q -m 0 -F -s 1 $f";
    _ "/sbin/tune2fs -c 0 -U clear -T 1970010101 $f";
}

_ "$sudo mkdir -p $tmp_mnt $tmp_mnt_initrd";
mkdir "images";

chomp(my $main = `cat kernel/all.kernels/.main`);
my @kernels = grep { /^2/ } all('kernel/all.kernels');


my @all_images = (
		  if_($arch =~ /i.86/, 'cdrom.img', 'cdrom-changedisk.img', 'pcmcia.img', 'isolinux', 'boot.iso', 'hd_grub.img', 'network.img', 'network_drivers.img'),
		  if_($arch =~ /x86_64/, 'cdrom.img', 'isolinux', 'boot.iso'),
		  if_($arch =~ /ia64/, 'all.img'),
		 );

my @images = @ARGV ? @ARGV : map { "images/$_" } @all_images;

if (any { /move/ } @images) {
    -e "$instdir/init-move" or die "ERROR: $instdir not built for move\n";
} else {
    -e "$instdir/init-move" and die "ERROR: $instdir built for move\n";
}

foreach my $img (@images) {
    my ($type, $I, $extension) = $img =~ m!([^/]*)(64)?\.([^.]*)$!;

    if ($img =~ /hd_grub/) {
	hd_grub($tmp_mnt, $img);
    } elsif ($img =~ /isolinux/) {
	isolinux($main, @kernels);

	if (my ($tftpboot) = grep { -e $_ } qw(/tftpboot /var/lib/tftpboot)) {
	    system("/bin/cp -f isolinux/alt0/* $tftpboot");
	}
    } elsif ($img =~ /move/) {
	isolinux_move($main);

	if (my ($tftpboot) = grep { -e $_ } qw(/tftpboot /var/lib/tftpboot)) {
	    system("/bin/cp -f move/isolinux/* $tftpboot/move 2>/dev/null");
	}
    } elsif ($img =~ /boot.iso/) {
	boot_iso($img, 0);
    } elsif ($img =~ /bootcdrom.iso/) {
	boot_iso($img, 1);
    } elsif ($img =~ /drivers/) {
	drivers($type, $I, "$img-$_") foreach @kernels;
	rename("$img-$main", $img);
    } elsif ($extension eq 'rdz') {
	initrd($tmp_mnt_initrd, $type, $I, "$img-$_") foreach @kernels;
    } elsif ($extension eq 'img') {
	print STDERR "calling boot_img_$arch for $img\n";
	$::{"boot_img_$arch"}->($tmp_mnt, $type, $I, "$img-$_", glob("kernel/all.kernels/$_/boot/vmlinu*")) foreach @kernels;
	rename("$img-$main", $img);
    } else {
	die "unknown image $img";
    }
}

sub syslinux_color {
    "0" . {
	default => '7',
	blue    => '9',
	green   => 'a',
	red     => 'c',
	yellow  => 'e',
	white   => 'f',
    }->{$_[0]} || die "unknown color $_[0]\n";
}

sub syslinux_msg { 
    my ($msg_xml_file, @more_text) = @_;

    require XML::Parser;

    sub xml_tree2syslinux {
	my ($current_color, $tree) = @_;
	my (undef, @l) = @$tree;
	join('', map {
	    my ($type, $val) = @$_;
	    if ($type eq '0') {
		$val;
	    } else {
		syslinux_color($type) . xml_tree2syslinux($type, $val) . syslinux_color($current_color);
	    }
	} group_by2(@l));
    };

    print "parsing $msg_xml_file\n";
    my $tree = XML::Parser->new(Style => 'Tree')->parsefile($msg_xml_file);
    $tree->[0] eq 'document' or die "bad file $msg_xml_file\n";
    my $text = xml_tree2syslinux('default', $tree->[1]);

    pack("C*", 0x0E, 0x80, 0x03, 0x00) . ""
      . $text . join('', @more_text)
      . "\n" . syslinux_color('red') . "[F1-Help] [F2-Advanced Help] [F3-Main]" . syslinux_color('default') . "\n";
}

sub install_stripped { _ "strip $_[0]"; _ "$sudo install $_[0] $_[1]" }

sub initrd {
    my ($mnt, $type, $I, $img, $o_raw_stage1_tree_kind) = @_;
    my $tmp = "$ENV{HOME}/tmp/initrd";
    my $tar = "$instdir/stage1-data/stage1$o_raw_stage1_tree_kind.tar.bz2";

    __ "$sudo umount $tmp $mnt 2>/dev/null";
    _ "dd if=/dev/zero of=$tmp bs=1k count=" . ($arch =~ /ia64/ ? ($type eq "all" ? 16386 : 16384) : ($type eq "all" ? 5000 : 2000));
    mke2fs($tmp);
    _ "$sudo mount -t ext2 $tmp $mnt -o loop";

    _ "$sudo tar xjC $mnt -f $tar";
    symlinkf "/tmp/stage2/lib64", "$mnt/lib64" if $arch =~ /x86_64/;

    {
	my $install = ${{
	    network => "stage1-network",
	    cdrom => "stage1-cdrom",
	}}{$type} || 'stage1-full';
	install_stripped("$instdir/init", "$mnt/sbin");
	install_stripped("$instdir/$install", "$mnt/sbin/stage1");
    }

    if (member($type, qw(network all))) {
	install_stripped("$instdir/ppp/pppd-bin", "$mnt/sbin/pppd");
	install_stripped("$instdir/rp-pppoe/pppoe-bin", "$mnt/sbin/pppoe");
	_ "$sudo mknod $mnt/dev/ppp c 108 0";
	_ "$sudo mknod $mnt/dev/ptyp0 c 2 0";
	_ "$sudo mknod $mnt/dev/ttyp0 c 3 0";
    }

    if (member($type, qw(pcmcia all network)) && $arch !~ /ppc|ia64|x86_64/) {
	 _ "$sudo cp -a /etc/pcmcia $mnt/etc";
	 _ "cp $mnt/etc/pcmcia/config /tmp/pcmcia_config_tmp";
	 _ "tools/patch_pcmcia_config.pl /tmp/pcmcia_config_tmp kernel/all.modules/$main/modules.dep";
	 _ "sudo mv /tmp/pcmcia_config_tmp $mnt/etc/pcmcia/config";
    }
    my ($ext) = $img =~ /rdz-(.*)/ or die "bad initrd name ($img)";
    my $modz = "kernel/all.modules$I/$ext";
    _ "$sudo cp -f $modz/${type}_modules.mar $mnt/modules/modules$I.mar";
    _ "$sudo cp -f $modz/modules.dep $mnt/modules/";
    _ "$sudo cp -f /sbin/sash $mnt/tmp/sh" if $ENV{DEBUGSTAGE1};
    _ "$sudo umount $mnt";

# Workaround for vfat-loop bug (quite touchy)
    _ "gzip -9f $tmp";
    _ "cp -f $tmp.gz $img";
    _ "rm -f $tmp.gz";
#    _ "gzip -9 -c $tmp > $img";
#    _ "rm -f $tmp";
}

sub entries_append {
    my ($type) = @_;

    my $automatic = $type =~ /cdrom/ ? 'automatic=method:cdrom' : '';
    $automatic .= " changedisk" if $type =~ /changedisk/;

    my @simple_entries = (
	linux => $default_vga,
	vgalo => "vga=785",
	vgahi => "vga=791",
	vga16 => "vga16",
	text => "text",
	patch => "patch $default_vga",
	expert => "expert $default_vga",
	rescue => "rescue rw",
    );
    my @entries = (
        (map { $_->[0] => "$automatic $default_acpi $_->[1]" } group_by2(@simple_entries)),
	acpi => "$automatic $default_vga",
	if_(member($type, "cdrom", "all"), oem => "automatic=method:cdrom $default_vga $default_acpi rescue oem rw",),
        if_($type eq "all", all => "pcmcia $default_vga $default_acpi"),
    );

    map { [ $_->[0], "$default_append $_->[1]" ] }
      group_by2(@entries);
}

sub boot_img_i386 {
    my ($mnt, $type, $I, $img, $kernel) = @_;

    __ "$sudo umount $mnt 2>/dev/null";

    _ "dd if=/dev/zero of=$img bs=1k count=" . ($type eq 'all' ? 2880 : 1440);
    _ "mkdosfs -f 1 -r 16 -s 2 $img"; # keep the FAT bookkeeping as small as possible
    _ "$sudo syslinux-graphic $img";

    _ "$sudo mount -t vfat -o umask=0 $img $mnt -o loop";
    _ "cat $kernel > $mnt/vmlinuz";
    bmp_to_msg('isolinux-graphic-simple.bmp', "$mnt/boot.msg", '397,190,14,6', 27, 27);

    output("$mnt/help.msg", syslinux_msg('help.msg.xml'));
    output("$mnt/advanced.msg", syslinux_msg('advanced.msg.xml'));

    (my $rdz = $img) =~ s/\.img/.rdz/;
    (my $initrd_type = $type) =~ s/-changedisk//;
    initrd($tmp_mnt_initrd, $initrd_type, $I, $rdz);
    my $short_type = substr($type, 0, 8);

    my $timeout = 72;
    output "$mnt/syslinux.cfg",
"default linux
prompt 1
timeout $timeout
display boot.msg
F1 help.msg
F2 advanced.msg
F3 boot.msg
" . join('', map {
"label $_->[0]
  kernel vmlinuz
  append initrd=$short_type.rdz $_->[1]
" } entries_append($type));

    eval { _ "cp -f $rdz $mnt/$short_type.rdz" };
    if ($@) {
	unlink "$mnt/$short_type.rdz";
	my $avail = (split ' ', `df $mnt`)[-3];
	my $s = int((-s $rdz) / 1024);

	my ($ext) = $img =~ /\.img-(.*)/ or die "bad initrd name ($img)";
	my $dir = "kernel/all.modules/$ext";
	my $pcitable = cat_('/usr/share/ldetect-lst/pcitable');
	my @l = sort { $a <=> $b } map {
	    my ($name) = /(\S+)\.k?o$/ or die "bad file in .mar";
	    my $gz_size = chomp_(`gzip -c $dir/$_ | wc -c`);
	    sprintf "%7d  %6d      %s\n", $gz_size, listlength($pcitable =~ /"$name"/g), $name;
	} split(' ', `mdk-stage1/mar/mar -l $dir/${initrd_type}_modules.mar`);
	output('.not-enough-room', "gz size - pcitable - name\n", @l);

	warn sprintf("not enough room for $rdz: need %dKB (available %dKB < needed %dKB)\n", $s - $avail, $avail, $s);
	die qq(check file ".not-enough-room" to see modules size and pcitable usage\n);
    }
    unlink $rdz;

    _ "sync";
    _ "df $mnt";
    _ "$sudo umount $mnt";
}

# alias to x86 variant, slightly bigger with images though
sub boot_img_x86_64 { &boot_img_i386 }

sub boot_img_alpha {
    my ($mnt, $type, $I, $img) = @_;

    __ "$sudo umount $mnt 2>/dev/null";
    _ "dd if=/dev/zero of=$img bs=1k count=1440";
    mke2fs($img);
    _ "/sbin/e2writeboot $img /boot/bootlx";
    _ "$sudo mount -t ext2 $img $mnt -o loop";
    _ "cp -f vmlinux.gz $mnt";
    -f "$type.rdz" ? _ "cp -f $type.rdz $mnt" : initrd($tmp_mnt_initrd, $type, $I, "$mnt/$type.rdz");

    mkdir "$mnt/etc", 0777;
    output("$mnt/etc/aboot.conf", 
"0:vmlinux.gz initrd=$type.rdz rw $default_append $type
1:vmlinux.gz initrd=$type.rdz rw $default_append text $type
");
    _ "sync";
    _ "df $mnt";
}

sub boot_img_ia64 {
    my ($mnt, $type, $_I, $img, $kernel) = @_;
	my $rdz = $img; $rdz =~ s/\.img/.rdz/;

    __ "$sudo umount $mnt 2>/dev/null";
    _ "dd if=/dev/zero of=$img bs=1k count=16384";
    _ "mkdosfs $img";
    _ "$sudo mount -t vfat $img $mnt -o loop,umask=000";
    _ "$sudo cp -f $kernel $mnt/vmlinux";
    _ "cp -f $rdz $mnt/$type.rdz";
    _ "$sudo cp -f tools/ia64/elilo.efi $mnt";
	output("$mnt/elilo.conf", qq(
prompt
timeout=50

image=vmlinux
        label=linux
        root=/dev/ram3
        initrd=$type.rdz
        append=" ramdisk_size=120000"
        read-only

image=vmlinux
        label=rescue
        root=/dev/ram3
        initrd=$type.rdz
        append=" rescue ramdisk_size=120000"
"));
    _ "sync";
    _ "df $mnt";

}

sub boot_img_sparc {
    my ($mnt, $type, $I, $_img) = @_;
    if ($type =~ /^live(.*)/) {
	#- hack to produce directly into /export the needed file for cdrom boot.
	my $dir = "/export";
	my $boot = "boot"; #- non-absolute pathname only!

	_ "mkdir -p $dir/$boot";
	_ "cp -f /boot/cd.b /boot/second.b $dir/$boot";
	_ "cp -f vmlinux$1 $dir/$boot/vmlinux$1";
	-f "live$1.rdz" ? _ "cp -f live$1.rdz $dir/$boot" : initrd($tmp_mnt_initrd, $type, $I, "$dir/$boot/live$1.rdz");

	output("$dir/$boot/silo.conf", qq(
partition=1
default=linux
timeout=100
read-write
message=/$boot/boot.msg
image="cat /$boot/boot.msg"
  label=1
  single-key
image="cat /$boot/general.msg"
  label=2
  single-key
image="cat /$boot/expert.msg"
  label=3
  single-key
image="cat /$boot/rescue.msg"
  label=4
  single-key
image="cat /$boot/kickit.msg"
  label=5
  single-key
image="cat /$boot/param.msg"
  label=6
  single-key
image[sun4c,sun4d,sun4m]=/$boot/vmlinux
  label=linux
  alias=install
  initrd=/$boot/live.rdz
  append="ramdisk_size=128000 root=/dev/ram3"
image[sun4c,sun4d,sun4m]=/$boot/vmlinux
  label=text
  initrd=/$boot/live.rdz
  append="ramdisk_size=128000 text root=/dev/ram3"
image[sun4c,sun4d,sun4m]=/$boot/vmlinux
  label=expert
  initrd=/$boot/live.rdz
  append="ramdisk_size=128000 expert root=/dev/ram3"
image[sun4c,sun4d,sun4m]=/$boot/vmlinux
  label=ks
  initrd=/$boot/live.rdz
  append="ramdisk_size=128000 ks root=/dev/ram3"
image[sun4c,sun4d,sun4m]=/$boot/vmlinux
  label=rescue
  initrd=/$boot/live.rdz
  append="ramdisk_size=128000 rescue rw root=/dev/ram3"
image[sun4u]=/$boot/vmlinux64
  label=linux
  alias=install
  initrd=/$boot/live64.rdz
  append="ramdisk_size=128000 root=/dev/ram3"
image[sun4u]=/$boot/vmlinux64
  label=text
  initrd=/$boot/live64.rdz
  append="ramdisk_size=128000 text root=/dev/ram3"
image[sun4u]=/$boot/vmlinux64
  label=expert
  initrd=/$boot/live64.rdz
  append="ramdisk_size=128000 expert root=/dev/ram3"
image[sun4u]=/$boot/vmlinux64
  label=ks
  initrd=/$boot/live64.rdz
  append="ramdisk_size=128000 ks root=/dev/ram3"
image[sun4u]=/$boot/vmlinux64
  label=rescue
  initrd=/$boot/live64.rdz
  append="ramdisk_size=128000 rescue rw root=/dev/ram3"
"));

	output("$dir/$boot/README", "
To Build a Bootable CD-ROM, try:
  mkisofs -R -o t.iso -s /$boot/silo.conf /export
");
    } elsif ($type =~ /^tftprd(.*)/) {
	my $dir = "/export";
	my $boot = "images";
	my $setarch = $1 ? "sparc64" : "sparc32";

	_ "mkdir -p $dir/$boot";
	-f "$type.rdz" or initrd($tmp_mnt_initrd, $type, $I, "$type.rdz");
	_ "cp -f vmlinux$1.aout $dir/$boot/$type.img";
	_ "$setarch kernel$1/src/arch/sparc$1/boot/piggyback $dir/$boot/$type.img kernel$1/boot/System.map $type.rdz";
    } elsif ($type =~ /^tftp(.*)/) {
	my $dir = "/export";
	my $boot = "images";

	_ "mkdir -p $dir/$boot";
	_ "cp -f vmlinux$1.aout $dir/$boot/$type.img";
    } else {
	my $dir = "floppy";
	__ "$sudo umount $mnt 2>/dev/null";
	_ "rm -rf $dir";
	_ "mkdir -p $dir";
	_ "cp -f /boot/fd.b /boot/second.b $dir";
	_ "cp -f vmlinuz$I $dir/vmlinux$I.gz";
	-f "$type.rdz" ? _ "cp -f $type.rdz $dir" : initrd($tmp_mnt_initrd, $type, $I, "$dir/$type.rdz");

	output("$dir/boot.msg", "
Welcome to Mandrake Linux 7.1

Press <Enter> to install or upgrade a system 7mMandrake Linux7m
");

	output("$dir/silo.conf", qq(
partition=1
default=linux
timeout=100
read-write
message=/boot.msg
image=/vmlinux$I.gz
  label=linux
  initrd=/$type.rdz
  append="ramdisk_size=128000 $type root=/dev/ram3"
"));
	_ "genromfs -d $dir -f /dev/ram -A 2048,/.. -a 512 -V 'DrakX boot disk'";
	_ "$sudo mount -t romfs /dev/ram $mnt";
	_ "silo -r $mnt -F -i /fd.b -b /second.b -C /silo.conf";
	_ "$sudo umount $mnt";
	_ "dd if=/dev/ram of=$type.img bs=1440k count=1";
	_ "sync";
	_ "$sudo mount -t romfs /dev/ram $mnt";
	_ "df $mnt";
    }
}

sub boot_img_ppc() {
	#- hack to produce directly into /export the needed file for cdrom boot.
	my $dir = "/export";
	my $boot = "boot"; #- non-absolute pathname only!
    _ "rm -rf $dir/$boot"; mkdir "$dir/$boot", 0777;
	foreach (glob("kernel/all.kernels/*")) {
		my $ext = basename($_);
		if ($ext =~ /2.4/) {
			_ "cp $_/boot/vmlinux $dir/$boot/vmlinux";
			_ "cp images/all.rdz-$ext $dir/$boot/all.gz";
		}
		if ($ext =~ /2.2/) {
			_ "cp $_/boot/vmlinux $dir/$boot/vmlinux-2.2";
			_ "cp images/all.rdz-$ext $dir/$boot/all-2.2.gz";
		}
    }
    _ "cp -f /usr/lib/yaboot/yaboot $dir/$boot/yaboot";
	
	output("$dir/$boot/ofboot.b", '<CHRP-BOOT>
<COMPATIBLE>
MacRISC
</COMPATIBLE>
<DESCRIPTION>
Mandrake Linux PPC bootloader
</DESCRIPTION>
<BOOT-SCRIPT>
" screen" output
dev screen
" "(0000000000aa00aa0000aaaaaa0000aa00aaaa5500aaaaaa)" drop 0 8 set-colors
" "(5555555555ff55ff5555ffffff5555ff55ffffff55ffffff)" drop 8 8 set-colors
device-end
3 to foreground-color
0 to background-color
" "(0C)" fb8-write drop
" Booting Mandrake Linux PPC..." fb8-write drop 100 ms
boot cd:2,\\\\yaboot
</BOOT-SCRIPT>
<OS-BADGE-ICONS>
1010
000000000000F8FEACF6000000000000
0000000000F5FFFFFEFEF50000000000
00000000002BFAFEFAFCF70000000000
0000000000F65D5857812B0000000000
0000000000F5350B2F88560000000000
0000000000F6335708F8FE0000000000
00000000005600F600F5FD8100000000
00000000F9F8000000F5FAFFF8000000
000000008100F5F50000F6FEFE000000
000000F8F700F500F50000FCFFF70000
00000088F70000F50000F5FCFF2B0000
0000002F582A00F5000008ADE02C0000
00090B0A35A62B0000002D3B350A0000
000A0A0B0B3BF60000505E0B0A0B0A00
002E350B0B2F87FAFCF45F0B2E090000
00000007335FF82BF72B575907000000
000000000000ACFFFF81000000000000
000000000081FFFFFFFF810000000000
0000000000FBFFFFFFFFAC0000000000
000000000081DFDFDFFFFB0000000000
000000000081DD5F83FFFD0000000000
000000000081DDDF5EACFF0000000000
0000000000FDF981F981FFFF00000000
00000000FFACF9F9F981FFFFAC000000
00000000FFF98181F9F981FFFF000000
000000ACACF981F981F9F9FFFFAC0000
000000FFACF9F981F9F981FFFFFB0000
00000083DFFBF981F9F95EFFFFFC0000
005F5F5FDDFFFBF9F9F983DDDD5F0000
005F5F5F5FDD81F9F9E7DF5F5F5F5F00
0083DD5F5F83FFFFFFFFDF5F835F0000
000000FBDDDFACFBACFBDFDFFB000000
000000000000FFFFFFFF000000000000
0000000000FFFFFFFFFFFF0000000000
0000000000FFFFFFFFFFFF0000000000
0000000000FFFFFFFFFFFF0000000000
0000000000FFFFFFFFFFFF0000000000
0000000000FFFFFFFFFFFF0000000000
0000000000FFFFFFFFFFFFFF00000000
00000000FFFFFFFFFFFFFFFFFF000000
00000000FFFFFFFFFFFFFFFFFF000000
000000FFFFFFFFFFFFFFFFFFFFFF0000
000000FFFFFFFFFFFFFFFFFFFFFF0000
000000FFFFFFFFFFFFFFFFFFFFFF0000
00FFFFFFFFFFFFFFFFFFFFFFFFFF0000
00FFFFFFFFFFFFFFFFFFFFFFFFFFFF00
00FFFFFFFFFFFFFFFFFFFFFFFFFF0000
000000FFFFFFFFFFFFFFFFFFFF000000
</OS-BADGE-ICONS>
</CHRP-BOOT>
');

	output("$dir/$boot/yaboot.conf", '
init-message = "\nWelcome to Mandrake Linux PPC!\nHit <TAB> for boot options.\n\n"
timeout = 150
default = install-gui
message=cd:,\\\\yaboot.msg

image = cd:,\\\\vmlinux
    label = install-gui
    root = /dev/ram3
    initrd = cd:,\\\\all.gz
    initrd-size = 34000

image = cd:,\\\\vmlinux-2.2
    label = install-gui-2.2
    root = /dev/ram3
    initrd = cd:,\\\\all-2.2.gz
    initrd-size = 34000

image = cd:,\\\\vmlinux
    label = install-text
    root = /dev/ram3
    initrd = cd:,\\\\all.gz
    initrd-size = 34000
    append = " text video=ofonly"

image = cd:,\\\\vmlinux-2.2
    label = install-text-2.2
    root = /dev/ram3
    initrd = cd:,\\\\all-2.2.gz
    initrd-size = 34000
    append = " text video=ofonly"

image = cd:,\\\\vmlinux
    label = install-gui-old
    root = /dev/ram3
    initrd = cd:,\\\\all.gz
    initrd-size = 34000
    append = " gui-old video=ofonly"

image = cd:,\\\\vmlinux-2.2
    label = install-gui-old-2.2
    root = /dev/ram3
    initrd = cd:,\\\\all-2.2.gz
    initrd-size = 34000
    append = " gui-old video=ofonly"

image = enet:0,vmlinux
    label = install-net
    root = /dev/ram3
    initrd = enet:0,all.gz
    initrd-size = 34000
    append = " video=ofonly"

image = enet:0,vmlinux-2.2
    label = install-net-2.2
    root = /dev/ram3
    initrd = enet:0,all-2.2.gz
    initrd-size = 34000
    append = " video=ofonly"
	
image = enet:0,vmlinux
    label = install-net-text
    root = /dev/ram3
    initrd = enet:0,all.gz
    initrd-size = 34000
    append = " text video=ofonly"

image = enet:0,vmlinux-2.2
    label = install-net-text-2.2
    root = /dev/ram3
    initrd = enet:0,all-2.2.gz
    initrd-size = 34000
    append = " text video=ofonly"
	
image = cd:,\\\\vmlinux
    label = rescue
    root = /dev/ram3
    initrd = cd:,\\\\all.gz
    initrd-size = 34000
    append = " rescue video=ofonly"    

image = enet:0,vmlinux
    label = rescue-net
    root = /dev/ram3
    initrd = enet:0,all.gz
    initrd-size = 34000
    append = " rescue video=ofonly"    
');

	output("$dir/$boot/yaboot.msg", '
Thanks for choosing Mandrake Linux PPC.  The following is a short
explanation of the various options for booting the install CD.

All options ending with "2.2" will use the 2.2.20-9mdkBOOT kernel.
The default syntax with no suffix uses the 2.4.18-4mdkBOOT kernel.
The default if you just hit enter is "install-gui".

install-gui:        	uses XFree86 fbdev mode
install-text:       	text based install
install-gui-old:    	old Xpmac gui
install-net:            allows you to use a minimal boot CD,
                        pulling the rest of the install from
                        a network server
install-net-text:       text mode network install
rescue:                 boots the rescue image
rescue-net:             boots the rescue image from a network server

');

}

sub bmp_to_msg {
    my ($bmp, $msg, $progress_place, $progress_color, $clear_color) = @_;
    #- change here for newer picture isolinux-graphic.bmp and newer parameters.
    #- for old style pictures (9.1 and previous)
    # lilo-bmp2mdk mode:0x103 progress:425,173,16,7,64+21 clear:600,800,64+59 pos:0,0 <isolinux-graphic.bmp >isolinux/boot.msg
    #- for current 9.2 pictures.
    -e $bmp and _ "lilo-bmp2mdk mode:0x103 progress:$progress_place,64+$progress_color clear:600,800,64+$clear_color pos:0,0 <$bmp >$msg"
}

sub isolinux {
    my ($main, @kernels) = @_;
    @kernels = ($main, grep { $_ ne $main } @kernels);
    _ "rm -rf isolinux"; mkdir "isolinux", 0777;

    each_index {
	mkdir "isolinux/alt$::i", 0777;
	my ($kernel) = glob("kernel/all.kernels/$_/boot/vmlinu*");
	_ "cp $kernel isolinux/alt$::i/vmlinuz";
	initrd($tmp_mnt_initrd, 'all', '', "images/all.rdz-$_");
	_ "mv images/all.rdz-$_ isolinux/alt$::i/all.rdz";
    } @kernels;

    bmp_to_msg('isolinux-graphic.bmp', 'isolinux/boot.msg', '397,190,14,6', 18, 18);

    _ "cp /usr/lib/syslinux/isolinux.bin isolinux/isolinux.bin";
    _ "install -m 644 -D /boot/memtest* isolinux/test/memtest.bin";
    output "isolinux/isolinux.cfg", "
default linux
prompt 1
timeout 150
display boot.msg
F1 help.msg
F2 advanced.msg
F3 boot.msg
" . join('', map {
"label $_->[0]
  kernel alt0/vmlinuz
  append initrd=alt0/all.rdz $_->[1] automatic=method:cdrom
" } entries_append('all'))
  . join('', map_index {
"label alt$::i
  kernel alt$::i/vmlinuz
  append initrd=alt$::i/all.rdz $default_append $default_acpi $default_vga
" } @kernels) .
"label memtest
  kernel test/memtest.bin
";

    output("isolinux/help.msg", syslinux_msg('help.msg.xml'));
    output("isolinux/advanced.msg", syslinux_msg('advanced.msg.xml', 
						 "\nYou can choose the following kernels :\n",
						 map_index { " o  " . syslinux_color('white') . "alt$::i" . syslinux_color('default') . " is kernel $_\n" } @kernels));
}

sub isolinux_move {   
    my ($main) = @_;

    my ($kernel) = glob("kernel/all.kernels/$main/boot/vmlinu*");
    _ "cp $kernel move/isolinux/vmlinuz";
    initrd($tmp_mnt_initrd, 'all', '', "move/isolinux/all.rdz-$main", '-with-busybox');
    rename "move/isolinux/all.rdz-$main", "move/isolinux/all.rdz";

    bmp_to_msg('move/data/isolinux-graphic.bmp', 'move/isolinux/boot.msg', '371,144,4,4', 11, 127);
    _ "cp /usr/lib/syslinux/isolinux.bin isolinux/isolinux.bin";
}

sub hd_grub {
    my ($mnt, $img) = @_;
    my $mapfile = '/tmp/device.map.tmp';

    my @grub_files = map { "/boot/grub/$_" } qw(stage1 stage2);
    my $size = 40_000 + sum(map { -s $_ } @grub_files);

    __ "$sudo umount $mnt 2>/dev/null";
    _ "dd if=/dev/zero of=$img bs=1 count=$size";
    _ "mkdosfs $img";
    _ "$sudo mount -t vfat -o umask=0 $img $mnt -o loop";
    _ "cp @grub_files $mnt";

    output("$mnt/menu.lst", <<EOF);
timeout 0
default 0
fallback 1

title Mandrake Install

root (hd0,0)
kernel /cooker/isolinux/alt0/vmlinuz $default_append $default_acpi $default_vga automatic=method:disk
initrd /cooker/isolinux/alt0/all.rdz

title Help

pause To display the help, press <space> until you reach "HELP END"
pause .
pause Please see http://qa.mandrakesoft.com/hd_grub.cgi for a friendlier solution
pause .
pause To specify the location where Mandrake Linux is copied,
pause choose "Mandrake Install", and press "e".
pause Then change "root (hd0,0)". FYI:
pause - (hd0,0) is the first partition on first bios hard drive (usually hda1)
pause - (hd0,4) is the first extended partition (usually hda5)
pause - (hd1,0) is the first partition on second bios hard drive
pause Replace /cooker to suits the directory containing Mandrake Linux
pause .
pause HELP END
EOF

    _ "$sudo umount $mnt";

    output($mapfile, "(fd0) $img\n");

    open(my $G, "| grub --device-map=$mapfile --batch");
    print $G <<EOF;
root (fd0)
install /stage1 d (fd0) /stage2 p /menu.lst
quit
EOF
    close $G;
    unlink $mapfile;
}

sub boot_iso {
    my ($iso, $bootcdrom) = @_;

    my $cfg = cat_('isolinux/isolinux.cfg') or die 'isolinux missing';
    if ($bootcdrom) {
	$cfg =~ s/(automatic=method:\w+)/changedisk $1/gm;
    } else {
	$cfg =~ s/(automatic=method:\w+)//gm;
    }

    eval { rm_rf('.boot_iso') };
    mkdir_p('.boot_iso/isolinux');
    _ "cd .boot_iso/isolinux ; ln -s ../../isolinux/* .";
   
    my $cfg_file = '.boot_iso/isolinux/isolinux.cfg';
    unlink $cfg_file;
    output($cfg_file, $cfg);

    _ "mkisofs -r -f -J -cache-inodes -V 'Mdk Boot ISO' -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o $iso .boot_iso";
    rm_rf('.boot_iso');
}

sub drivers {
    my ($type, $I, $img) = @_;

    _ "dd if=/dev/zero of=$img bs=1k count=1440";
    mke2fs($img);
    _ "$sudo mount -t ext2 $img $tmp_mnt -o loop";

    my ($ext) = $img =~ /img-(.*)/ or die "bad image name ($img)";
    _ "$sudo cp -f kernel/all.modules$I/$ext/${type}_modules.mar $tmp_mnt/modules$I.mar";

    _ "sync";
    _ "df $tmp_mnt";

    _ "$sudo umount $tmp_mnt";
}
85
-#, fuzzy
-msgid "What norm is your TV using?"
-msgstr "Watter tipe is u ISDN-konneksie?"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132
-msgid "First sector of boot partition"
-msgstr "Eerste sektor van herlaaipartisie"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
-msgid "First sector of drive (MBR)"
-msgstr "Eerste sektor van skyf (MBR)"
-
-#: ../../any.pm_.c:111
-msgid "SILO Installation"
-msgstr "SILO installasie"
-
-#: ../../any.pm_.c:112 ../../any.pm_.c:125
-msgid "Where do you want to install the bootloader?"
-msgstr "Waar wil u die herlaaistelsel installeer"
-
-#: ../../any.pm_.c:124
-msgid "LILO/grub Installation"
-msgstr "LILO/grub installasie"
-
-#: ../../any.pm_.c:136 ../../any.pm_.c:150
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:138
-msgid "LILO with text menu"
-msgstr "LILO met tekskieskaart"
-
-#: ../../any.pm_.c:139 ../../any.pm_.c:150
-msgid "LILO with graphical menu"
-msgstr "LILO met grafiese kieskaart"
-
-#: ../../any.pm_.c:142
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:146
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Laai vauit DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:150
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:158 ../../any.pm_.c:189
-msgid "Bootloader main options"
-msgstr "Herlaaistelsel hoofopsies"
-
-#: ../../any.pm_.c:159 ../../any.pm_.c:190
-msgid "Bootloader to use"
-msgstr "Herlaaistelsel om te gebruik"
-
-#: ../../any.pm_.c:161
-msgid "Bootloader installation"
-msgstr "Herlaaiprogram installasie"
-
-#: ../../any.pm_.c:163 ../../any.pm_.c:192
-msgid "Boot device"
-msgstr "Herlaaitoestel"
-
-#: ../../any.pm_.c:164
-msgid "Compact"
-msgstr "Kompak"
-
-#: ../../any.pm_.c:164
-msgid "compact"
-msgstr "kompak"
-
-#: ../../any.pm_.c:165 ../../any.pm_.c:289
-msgid "Video mode"
-msgstr "Videomodus"
-
-#: ../../any.pm_.c:167
-msgid "Delay before booting default image"
-msgstr "Wagperiode voro verstekstelsel gelaai word"
-
-#: ../../any.pm_.c:169 ../../any.pm_.c:772
-#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
-#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
-#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
-#: ../../standalone/drakconnect_.c:647
-msgid "Password"
-msgstr "Wagwoord"
-
-#: ../../any.pm_.c:170 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1078
-msgid "Password (again)"
-msgstr "Wagwoord (weer)"
-
-#: ../../any.pm_.c:171
-msgid "Restrict command line options"
-msgstr "Beperk instruksielynopsies"
-
-#: ../../any.pm_.c:171
-msgid "restrict"
-msgstr "beperk"
-
-#: ../../any.pm_.c:173
-msgid "Clean /tmp at each boot"
-msgstr "Maak /tmp skoon met elke herlaai"
-
-#: ../../any.pm_.c:174
+#: ../../any.pm:1
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-
-#: ../../any.pm_.c:176
-msgid "Enable multi profiles"
-msgstr "Gebruik multiprofiele"
-
-#: ../../any.pm_.c:180
-msgid "Give the ram size in MB"
-msgstr "Gee die geheuegrootte in MB"
+msgid "Please give a user name"
+msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:182
-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:1
+#, c-format
+msgid "This password is too simple"
+msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../diskdrake/interactive.pm_.c:1204
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:191
-msgid "Init Message"
-msgstr "Beginboodskap"
+#: ../../any.pm:1
+#, c-format
+msgid "(already added %s)"
+msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:193
-msgid "Open Firmware Delay"
+#: ../../any.pm:1
+#, c-format
+msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:194
-msgid "Kernel Boot Timeout"
-msgstr "Tydsbeperking vir stelselkernlaai"
+#: ../../any.pm:1
+#, c-format
+msgid "access to network tools"
+msgstr ""
-#: ../../any.pm_.c:195
-msgid "Enable CD Boot?"
-msgstr "Laat CD-herlaai toe?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to administrative files"
+msgstr ""
-#: ../../any.pm_.c:196
-msgid "Enable OF Boot?"
-msgstr "Laat OF-herlaai toe?"
+#: ../../any.pm:1
+#, c-format
+msgid "allow \"su\""
+msgstr ""
-#: ../../any.pm_.c:197
-msgid "Default OS?"
-msgstr "Verstek bedryfstelsel?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to rpm tools"
+msgstr ""
-#: ../../any.pm_.c:231
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm:1
+#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
+"You can create additional entries or change the existing ones."
msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
-#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
-#: ../../standalone/drakfont_.c:996
-msgid "Add"
-msgstr "Voeg by"
-
-#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
-#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
-#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
-msgid "Done"
-msgstr "Klaar"
-
-#: ../../any.pm_.c:257
-msgid "Modify"
-msgstr "Verander"
-
-#: ../../any.pm_.c:265
-msgid "Which type of entry do you want to add?"
-msgstr "Watter tipe inskrywing wil u byvoeg?"
-
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:266
-msgid "Other OS (SunOS...)"
-msgstr "Ander bedryfstelsel (SunOS...)"
-
-#: ../../any.pm_.c:267
-msgid "Other OS (MacOS...)"
-msgstr "Ander bedryfstelsel (MacOS...)"
-
-#: ../../any.pm_.c:267
+#: ../../any.pm:1
+#, c-format
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:285
-msgid "Image"
-msgstr "Beeld"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (MacOS...)"
+msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:286 ../../any.pm_.c:297
-msgid "Root"
-msgstr "Basis"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (SunOS...)"
+msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:287 ../../any.pm_.c:315
-msgid "Append"
-msgstr "Aanlas"
+#: ../../any.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Linux"
+msgstr "Linux"
-#: ../../any.pm_.c:291
-msgid "Initrd"
-msgstr "Initrd"
+#: ../../any.pm:1
+#, c-format
+msgid "Which type of entry do you want to add?"
+msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:292
-msgid "Read-write"
-msgstr "Lees-skryf"
+#: ../../any.pm:1
+#, c-format
+msgid "This label is already used"
+msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:299
-msgid "Table"
-msgstr "Tabel"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "You must specify a root partition"
+msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:300
-msgid "Unsafe"
-msgstr "Onveilig"
+#: ../../any.pm:1
+#, c-format
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
-msgid "Label"
-msgstr "Etiket"
+#: ../../any.pm:1
+#, c-format
+msgid "Empty label not allowed"
+msgstr "Leл etiket word nie toegelaat nie"
-#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+#: ../../any.pm:1 ../../harddrake/v4l.pm:1
+#, c-format
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:316
-msgid "Initrd-size"
-msgstr "Initrd-grootte"
-
-#: ../../any.pm_.c:318
+#: ../../any.pm:1
+#, c-format
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:326
-msgid "Remove entry"
-msgstr "Verwyder inskrywing"
+#: ../../any.pm:1
+#, c-format
+msgid "Initrd-size"
+msgstr "Initrd-grootte"
-#: ../../any.pm_.c:329
-msgid "Empty label not allowed"
-msgstr "Leл etiket word nie toegelaat nie"
+#: ../../any.pm:1
+#, c-format
+msgid "Append"
+msgstr "Aanlas"
-#: ../../any.pm_.c:330
-msgid "You must specify a kernel image"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Label"
+msgstr "Etiket"
-#: ../../any.pm_.c:330
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "U moet oor 'n ruilpartisie beskik"
+#: ../../any.pm:1
+#, c-format
+msgid "Unsafe"
+msgstr "Onveilig"
-#: ../../any.pm_.c:331
-msgid "This label is already used"
-msgstr "Hierdie etiket is alreeds in gebruik"
+#: ../../any.pm:1
+#, c-format
+msgid "Table"
+msgstr "Tabel"
-#: ../../any.pm_.c:640
+#: ../../any.pm:1
#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Het %s %s koppelvlakke gevind"
+msgid "Root"
+msgstr "Basis"
-#: ../../any.pm_.c:641
-msgid "Do you have another one?"
-msgstr "Beskik u oor nog?"
+#: ../../any.pm:1
+#, c-format
+msgid "Read-write"
+msgstr "Lees-skryf"
-#: ../../any.pm_.c:642
+#: ../../any.pm:1
#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Het u enige %s koppelvlakke?"
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
-msgid "No"
-msgstr "Nee"
+#: ../../any.pm:1
+#, c-format
+msgid "Video mode"
+msgstr "Videomodus"
-#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
-#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
-#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
-msgid "Yes"
-msgstr "Ja"
+#: ../../any.pm:1
+#, c-format
+msgid "Image"
+msgstr "Beeld"
-#: ../../any.pm_.c:645
-msgid "See hardware info"
-msgstr "Sien hardeware inligting"
+#: ../../any.pm:1
+#, c-format
+msgid "Default OS?"
+msgstr "Verstek bedryfstelsel?"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:662
+#: ../../any.pm:1
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Drywer vir %s kaart %s in installasieproses"
+msgid "Enable OF Boot?"
+msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:663
+#: ../../any.pm:1
#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
+msgid "Enable CD Boot?"
+msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:674
+#: ../../any.pm:1
#, 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 ""
+msgid "Kernel Boot Timeout"
+msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:680
+#: ../../any.pm:1
#, 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''"
+msgid "Open Firmware Delay"
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:682
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:694
+#: ../../any.pm:1
#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Watter %s drywer meot ek probeer?"
+msgid "Boot device"
+msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:703
+#: ../../any.pm:1
#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
-"meeste gevalle dit nie nodig wees nie. Wil u ekstra opsies voorsien od moet\n"
-"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
-"ophang, maar dit sal nie skade veroorsaak nie."
+msgid "Init Message"
+msgstr "Beginboodskap"
-#: ../../any.pm_.c:707
-msgid "Autoprobe"
-msgstr "Aftas"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader to use"
+msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:707
-msgid "Specify options"
-msgstr "Spesifieer opsies"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader main options"
+msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:719
+#: ../../any.pm:1
#, c-format
msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Laai van module %s het gefaal.\n"
-"Wil u ander parameters probeer?"
-
-#: ../../any.pm_.c:734
-msgid "access to X programs"
-msgstr ""
-
-#: ../../any.pm_.c:735
-msgid "access to rpm tools"
+"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:736
-msgid "allow \"su\""
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:737
-msgid "access to administrative files"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Enable multiple profiles"
+msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:738
-msgid "access to network tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:739
-msgid "access to compilation tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Clean /tmp at each boot"
+msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:744
+#: ../../any.pm:1
#, c-format
-msgid "(already added %s)"
-msgstr "(%s alreeds bygevoeg)"
+msgid "Create a bootdisk"
+msgstr "Maar 'n herlaaiskyf"
-#: ../../any.pm_.c:749
-msgid "This password is too simple"
-msgstr "Die wagwoorde is te eenvoudig"
+#: ../../any.pm:1
+#, c-format
+msgid "restrict"
+msgstr "beperk"
-#: ../../any.pm_.c:750
-msgid "Please give a user name"
-msgstr "Gee asb. 'n gebruikerskode"
+#: ../../any.pm:1
+#, c-format
+msgid "Restrict command line options"
+msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:751
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
+#: ../../any.pm:1
+#, c-format
+msgid "Delay before booting default image"
+msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:752
-#, fuzzy
-msgid "The user name is too long"
-msgstr "Hierdie genruikerskode bestaan alreeds"
+#: ../../any.pm:1
+#, c-format
+msgid "compact"
+msgstr "kompak"
-#: ../../any.pm_.c:753
-msgid "This user name is already added"
-msgstr "Hierdie genruikerskode bestaan alreeds"
+#: ../../any.pm:1
+#, c-format
+msgid "Compact"
+msgstr "Kompak"
-#: ../../any.pm_.c:757
-msgid "Add user"
-msgstr "Voeg gebruiker by"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader installation"
+msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:758
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Tik 'n gebruiker in\n"
-"%s"
+msgid "First sector of boot partition"
+msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:759
-msgid "Accept user"
-msgstr "Aanvaar gebruiker"
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of drive (MBR)"
+msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:770
-msgid "Real name"
-msgstr "Regte naam"
+#: ../../any.pm:1
+#, c-format
+msgid "Where do you want to install the bootloader?"
+msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
-#: ../../printer/printerdrake.pm_.c:915
-msgid "User name"
-msgstr "Gebruikerskode"
+#: ../../any.pm:1
+#, c-format
+msgid "LILO/grub Installation"
+msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:774
-msgid "Shell"
-msgstr "Dop"
+#: ../../any.pm:1
+#, c-format
+msgid "SILO Installation"
+msgstr "SILO installasie"
-#: ../../any.pm_.c:776
-msgid "Icon"
-msgstr "Ikoon"
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Skip"
+msgstr "Mis hierdie stap"
-#: ../../any.pm_.c:803
-msgid "Autologin"
-msgstr "Outointeken"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "On Floppy"
+msgstr "Stoor op floppie"
-#: ../../any.pm_.c:804
+#: ../../any.pm:1
+#, c-format
msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
+"\n"
+"On which drive are you booting?"
msgstr ""
-"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
-"Verlang u hierdie funksionaliteit?"
-
-#: ../../any.pm_.c:808
-msgid "Choose the default user:"
-msgstr "Kies die verstek gebruiker:"
-#
-#: ../../any.pm_.c:809
-msgid "Choose the window manager to run:"
-msgstr "Kies die vensterbestuurder om te loop:"
-
-#: ../../any.pm_.c:824
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Kies asb. 'n taal om te gebruik."
+#: ../../any.pm:1
+#, c-format
+msgid "Creating bootdisk..."
+msgstr "Herlaaiskyf word geskryf"
-#: ../../any.pm_.c:826
-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:1
+#, fuzzy, c-format
+msgid "Insert a floppy in %s"
+msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
-#: ../../standalone/drakxtv_.c:70
-msgid "All"
-msgstr "Alles"
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "Allow all users"
-msgstr "Voeg 'n gebruiker by"
+#: ../../any.pm:1
+#, c-format
+msgid "Second floppy drive"
+msgstr "Tweede sagteskyfaandrywer"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS word gelaai"
+#: ../../any.pm:1
+#, c-format
+msgid "First floppy drive"
+msgstr "Eerste sagteskyfaandrywer"
-#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
-#, 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:1
+#, c-format
+msgid "Sorry, no floppy drive available"
+msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../any.pm_.c:973
+#: ../../any.pm:1
+#, c-format
msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures. Would you like to create a bootdisk for your system?\n"
+"%s"
msgstr ""
+"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
+"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
+"u nie LILO (of Grub) op u stelsel wil installeer nie, 'n ander bedryfstelsel "
+"LILO\n"
+"verwyder of LILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
+"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
+"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
+"%s"
-#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
+#: ../../any.pm:1
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:987
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:1001
-msgid "Launch userdrake"
+"\n"
+"(WARNING! You're using XFS for your root partition,\n"
+"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
+"because XFS needs a very large driver)."
msgstr ""
-#: ../../any.pm_.c:1003
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
+"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
+"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
+"u nie SILO op u stelsel wil installeer nie, 'n ander bedryfstelsel SILO\n"
+"verwyder of SILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
+"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
+"ernstige stelselfalings te herstel.\n"
+"\n"
+"Indien u 'n herlaaiskyf wil maak,\n"
+"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
-msgid "Welcome To Crackers"
-msgstr "Krakers welkom"
-
-#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
-msgid "Poor"
-msgstr "Swak"
-
-#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
-msgid "Standard"
-msgstr "Standaard"
-
-#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
-msgid "High"
-msgstr "Hoog"
-
-#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
-#, fuzzy
-msgid "Higher"
-msgstr "Hoog"
-
-#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
-msgid "Paranoid"
-msgstr "Paranoпes"
-
-#: ../../any.pm_.c:1061
-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."
+#: ../../bootloader.pm:1
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:1064
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
-"aanbeveel nie."
+#: ../../bootloader.pm:1
+#, c-format
+msgid "not enough room in /boot"
+msgstr "nie genoeg spasie in /boot nie"
-#: ../../any.pm_.c:1065
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Hierdie is die standaard sekuriteitsvlak wat aanbeveel word vir rekenaars\n"
-"wat aan die internet as 'n kliлnt konnekteer. Daar is heelwat "
-"sekuriteitstoetse."
+#. -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:1
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../any.pm_.c:1066
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-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:1
+#, c-format
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
-#: ../../any.pm_.c:1067
-#, 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 kliлnte\n"
-"af kan aanvaar."
+#. -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:1
+#, c-format
+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."
-#: ../../any.pm_.c:1070
-#, fuzzy
-msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+#. -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:1
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
-"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
-"Sekuriteitseienskappe is maksimaal."
-
-#: ../../any.pm_.c:1076
-#, fuzzy
-msgid "DrakSec Basic Options"
-msgstr "Opsies"
+"Gebruik die %c en %c sleutels om die inskrywing te kies wat uitgelig moet "
+"word."
-#: ../../any.pm_.c:1077
-#, fuzzy
-msgid "Please choose the desired security level"
-msgstr "Gebruik sekuriteitsvlak"
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#. -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:1
+#, c-format
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
-#: ../../any.pm_.c:1080
-#, fuzzy
-msgid "Security level"
-msgstr "Sekuriteitsvlak word gestel."
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../any.pm_.c:1082
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Selekteer opsies vir bediener"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Grub"
+msgstr "Grub"
-#: ../../any.pm_.c:1083
-msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
+#: ../../bootloader.pm:1
+#, c-format
+msgid "LILO with text menu"
+msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:1084
-msgid "Security Administrator (login or email)"
-msgstr ""
+#: ../../bootloader.pm:1
+#, c-format
+msgid "LILO with graphical menu"
+msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:1166
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
+#: ../../bootloader.pm:1
+#, c-format
+msgid "SILO"
+msgstr "SILO"
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
@@ -1102,12 +733,12 @@ 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:436
+#: ../../bootloader.pm:1
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
-"Choose an operating system in the list above or\n"
+"Choose an operating system from the list above or\n"
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
@@ -1117,207 +748,70 @@ msgstr ""
"%d sekonde vir die verstekopsie.\n"
"\n"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#. -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:983
-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:986
+#: ../../bootlook.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../network/netconnect.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
-"Gebruik die %c en %c sleutels om die inskrywing te kies wat uitgelig moet "
-"word."
-
-#. -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:989
-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:992
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
+msgid "OK"
+msgstr "OK"
-#. -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:995
+#: ../../bootlook.pm:1
#, 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:999
-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:1099
-msgid "Desktop"
-msgstr "Werkskerm"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1101
-msgid "Start Menu"
-msgstr "Beginkieskaart"
-
-#: ../../bootloader.pm_.c:1120
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Waar wil u die herlaaistelsel installeer"
-
-#: ../../bootlook.pm_.c:53
-msgid "Boot Style Configuration"
-msgstr "Herlaaistylkonfigurasie"
-
-#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
-#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
-#: ../../standalone/logdrake_.c:74
-msgid "/_File"
-msgstr "/_Lкer"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/logdrake_.c:80
-msgid "/File/_Quit"
-msgstr "/Lкer/_Verlaat"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:82
-msgid "NewStyle Categorizing Monitor"
-msgstr "Nuwe monitorkategoriasiestyl"
-
-#: ../../bootlook.pm_.c:83
-msgid "NewStyle Monitor"
-msgstr "Nuwe styl monitor"
-
-#: ../../bootlook.pm_.c:84
-msgid "Traditional Monitor"
-msgstr "Tradisionele monitor"
-
-#: ../../bootlook.pm_.c:85
-msgid "Traditional Gtk+ Monitor"
-msgstr "Tradisionele Gtk+ Monitor"
-
-#: ../../bootlook.pm_.c:86
-msgid "Launch Aurora at boot time"
-msgstr "Laai Aurora met herlaaityd"
-
-#: ../../bootlook.pm_.c:89
-msgid "Lilo/grub mode"
-msgstr "LILO/GRUB metode"
-
-#: ../../bootlook.pm_.c:89
-msgid "Yaboot mode"
-msgstr "Yaboot metode"
-
-#: ../../bootlook.pm_.c:138
-#, fuzzy
-msgid "Install themes"
-msgstr "Installeer stelsel"
-
-#: ../../bootlook.pm_.c:139
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: ../../bootlook.pm_.c:140
-#, fuzzy
-msgid "Create new theme"
-msgstr "Kies 'n nuwe grootte"
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm:1
#, c-format
-msgid "Backup %s to %s.old"
-msgstr ""
+msgid "No, I don't want autologin"
+msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm:1
#, c-format
-msgid "Copy %s to %s"
-msgstr ""
-
-#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
-#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
-#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
-#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
-#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
-#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
-msgid "Error"
-msgstr "Fout"
-
-#: ../../bootlook.pm_.c:192
-msgid "Lilo message not found"
-msgstr ""
-
-#: ../../bootlook.pm_.c:222
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
-
-#: ../../bootlook.pm_.c:222
-#, fuzzy, c-format
-msgid "Write %s"
-msgstr "XFree %s"
+msgid "Launch the graphical environment when your system starts"
+msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:224
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
+#: ../../bootlook.pm:1
+#, c-format
+msgid "System mode"
+msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:235
+#: ../../bootlook.pm:1
#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:238
+#: ../../bootlook.pm:1
#, c-format
-msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:244
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+"\n"
+"Select the theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separately"
msgstr ""
-#: ../../bootlook.pm_.c:248
-msgid "Relaunch 'lilo'"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
-#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "Notice"
-msgstr "Geen video"
-
-#: ../../bootlook.pm_.c:251
-msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Splash selection"
+msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:251
-#, fuzzy
-msgid "Theme installation failed!"
-msgstr "Kies installasieklas"
+#: ../../bootlook.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Configure"
+msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm:1
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1326,1064 +820,333 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
-#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
-#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
-msgid "Configure"
-msgstr "Konfigureer"
-
-#: ../../bootlook.pm_.c:268
-#, fuzzy
-msgid "Splash selection"
-msgstr "Stoor pakketseleksie"
-
-#: ../../bootlook.pm_.c:271
-msgid "Themes"
-msgstr ""
-
-#: ../../bootlook.pm_.c:273
-msgid ""
-"\n"
-"Select theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separatly"
-msgstr ""
-
-#: ../../bootlook.pm_.c:276
-msgid "Lilo screen"
-msgstr ""
-
-#: ../../bootlook.pm_.c:281
-msgid "Bootsplash"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:316
-msgid "System mode"
-msgstr "Stelselmode"
-
-#: ../../bootlook.pm_.c:318
-msgid "Launch the graphical environment when your system starts"
-msgstr "Laai X-Windowstelsel met herlaai"
-
-#: ../../bootlook.pm_.c:323
-msgid "No, I don't want autologin"
-msgstr "Nee, ek verlang outo-aanteken"
-
-#: ../../bootlook.pm_.c:325
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-
-#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
-#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
-#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
-#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
-#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
-#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
-#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
-#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
-#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
-#: ../../ugtk2.pm_.c:355
-msgid "OK"
-msgstr "OK"
-
-#: ../../common.pm_.c:107
-msgid "GB"
-msgstr "GB"
-
-#: ../../common.pm_.c:107
-msgid "KB"
-msgstr "KB"
-
-#: ../../common.pm_.c:107
-msgid "MB"
-msgstr "MB"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Theme installation failed!"
+msgstr "Kies installasieklas"
-#: ../../common.pm_.c:115
-msgid "TB"
-msgstr "TB"
+#: ../../bootlook.pm:1 ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Notice"
+msgstr "Geen video"
-#: ../../common.pm_.c:123
+#: ../../bootlook.pm:1 ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "%d minutes"
-msgstr "%d minute"
-
-#: ../../common.pm_.c:125
-msgid "1 minute"
-msgstr "1 minuut"
+msgid "Error"
+msgstr "Fout"
-#: ../../common.pm_.c:127
+#: ../../bootlook.pm:1
#, c-format
-msgid "%d seconds"
-msgstr "%d sekondes"
-
-#: ../../common.pm_.c:172
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Ek kan nie meer partisies byvoeg nie"
-
-#: ../../common.pm_.c:179
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:127
-msgid "France"
-msgstr "Frankryk"
-
-#: ../../crypto.pm_.c:15
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:130
-#, fuzzy
-msgid "Belgium"
-msgstr "Belgies"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Germany"
-msgstr "Duitsland"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Greece"
-msgstr "Grieks"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
-#, fuzzy
-msgid "Norway"
-msgstr "Norweegs"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
-#, fuzzy
-msgid "Sweden"
-msgstr "Sien"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:128
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Italy"
-msgstr "Italiaans"
-
-#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
-#, fuzzy
-msgid "Austria"
-msgstr "seriaal"
-
-#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:131
-msgid "United States"
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:19
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../diskdrake/dav.pm_.c:27
-#, fuzzy
-msgid "New"
-msgstr "nuut"
-
-#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
-#: ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Ontheg"
-
-#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
-#: ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Heg"
-
-#: ../../diskdrake/dav.pm_.c:65
-msgid "Server"
-msgstr "Bediener"
-
-#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
-#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
-#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Hegpunt"
-
-#
-#: ../../diskdrake/dav.pm_.c:85
-#, fuzzy
-msgid "Please enter the WebDAV server URL"
-msgstr "Toets asb. die muis"
-
-#: ../../diskdrake/dav.pm_.c:88
-msgid "The URL must begin with http:// or https://"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../diskdrake/dav.pm_.c:109
-#, fuzzy
-msgid "Server: "
-msgstr "Bediener"
-
-#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
-#: ../../diskdrake/interactive.pm_.c:1102
-#: ../../diskdrake/interactive.pm_.c:1177
-msgid "Mount point: "
-msgstr "Hegpunt:"
-
-#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
+#: ../../bootlook.pm:1
#, c-format
-msgid "Options: %s"
-msgstr "Opsies: %s"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-msgid "Please make a backup of your data first"
-msgstr "Rugsteun u data eers asb."
-
-#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
-#: ../../diskdrake/interactive.pm_.c:956
-#: ../../diskdrake/interactive.pm_.c:1022
-msgid "Read carefully!"
-msgstr "Lees noukeurig!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:100
-msgid ""
-"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
-"enough)\n"
-"at the beginning of the disk"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
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:154
-msgid "Wizard"
-msgstr "Assistent"
-
-#: ../../diskdrake/hd_gtk.pm_.c:187
-msgid "Choose action"
-msgstr "Kies aksie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:191
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"U het een massiewe FAT partisie. \n"
-"(gewoonlik deur DOS/Windows gebruik)\n"
-"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:194
-msgid "Please click on a partition"
-msgstr "Kliek asb. op 'n partisie"
-
-#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:464
-msgid "Details"
-msgstr "Detail"
-
-#: ../../diskdrake/hd_gtk.pm_.c:254
-#, fuzzy
-msgid "No hard drives found"
-msgstr "Plaaslike drukker"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-#, fuzzy
-msgid "Journalised FS"
-msgstr "Gejoernaliseer"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Swap"
-msgstr "Ruilarea"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
-msgid "Empty"
-msgstr "Leeg"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
-#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
-msgid "Other"
-msgstr "Ander"
-
-#: ../../diskdrake/hd_gtk.pm_.c:330
-msgid "Filesystem types:"
-msgstr "LOersteltipes:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
-msgid "Create"
-msgstr "Skep"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
-#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
-msgid "Type"
-msgstr "Tipe"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
-#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
-msgid "Delete"
-msgstr "Uitwis"
-
-#: ../../diskdrake/hd_gtk.pm_.c:353
-msgid "Use ``Unmount'' first"
-msgstr "Gebruik ``Ontheg'' eerste"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
-"partisietipe"
-
-#: ../../diskdrake/interactive.pm_.c:177
-msgid "Choose a partition"
-msgstr "Kies 'n partisie"
-
-#: ../../diskdrake/interactive.pm_.c:177
-msgid "Choose another partition"
-msgstr "Kies 'n ander partisie"
-
-#: ../../diskdrake/interactive.pm_.c:202
-msgid "Exit"
-msgstr "Verlaat"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to expert mode"
-msgstr "Skakel oor na kundige gebruiksvlak"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to normal mode"
-msgstr "Skakel oor na normale gebruiksvlak"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Undo"
-msgstr "Herroep"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Continue anyway?"
-msgstr "Wil u in elk geval voortgaan?"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without saving"
-msgstr "Verlaat, maar moenie iets stoor nie"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without writing the partition table?"
-msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-
-#: ../../diskdrake/interactive.pm_.c:257
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Wil u die /etc/fstab veranderinge stoor?"
-
-#: ../../diskdrake/interactive.pm_.c:271
-msgid "Clear all"
-msgstr "Verwydeer almal"
-
-#: ../../diskdrake/interactive.pm_.c:272
-msgid "Auto allocate"
-msgstr "Outo-allokeer"
-
-#: ../../diskdrake/interactive.pm_.c:273
-#: ../../install_steps_interactive.pm_.c:220
-msgid "More"
-msgstr "Nog"
-#: ../../diskdrake/interactive.pm_.c:278
-msgid "Hard drive information"
-msgstr "Hardeskyfinligting"
-
-#: ../../diskdrake/interactive.pm_.c:310
-msgid "All primary partitions are used"
-msgstr "Alle primкre partisies is gebruik"
-
-#: ../../diskdrake/interactive.pm_.c:311
-msgid "I can't add any more partition"
-msgstr "Ek kan nie meer partisies byvoeg nie"
-
-#: ../../diskdrake/interactive.pm_.c:312
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Lilo message not found"
msgstr ""
-"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
-"skep"
-
-#: ../../diskdrake/interactive.pm_.c:322
-#, fuzzy
-msgid "Save partition table"
-msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:323
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Reddingspartisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:324
-msgid "Rescue partition table"
-msgstr "Reddingspartisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:326
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Reddingspartisietabel"
-
-#: ../../diskdrake/interactive.pm_.c:331
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Verwyderbare media"
-
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
-msgid "Select file"
-msgstr "Selekteer lOer"
-
-#: ../../diskdrake/interactive.pm_.c:347
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Copy %s to %s"
msgstr ""
-"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
-"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
-#: ../../network/modem.pm_.c:95
-msgid "Warning"
-msgstr "Waarskuwing"
-
-#: ../../diskdrake/interactive.pm_.c:362
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Backup %s to %s.old"
msgstr ""
-"Sit 'n floppie in die aandrywer.\n"
-"Alle data op hierdie floppie sal verloor word."
-
-#: ../../diskdrake/interactive.pm_.c:373
-msgid "Trying to rescue partition table"
-msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:379
-msgid "Detailed information"
-msgstr "Gedetaileerde inligting"
-
-#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
-msgid "Resize"
-msgstr "Verstel Grootte"
-
-#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
-msgid "Move"
-msgstr "Skuif"
-
-#: ../../diskdrake/interactive.pm_.c:396
-msgid "Format"
-msgstr "Formatteer"
-
-#: ../../diskdrake/interactive.pm_.c:398
-msgid "Add to RAID"
-msgstr "Voeg by RAID"
-
-#: ../../diskdrake/interactive.pm_.c:399
-msgid "Add to LVM"
-msgstr "Voeg by LVM"
-
-#: ../../diskdrake/interactive.pm_.c:402
-msgid "Remove from RAID"
-msgstr "Verwyder uit RAID"
-
-#: ../../diskdrake/interactive.pm_.c:403
-msgid "Remove from LVM"
-msgstr "Verwyder uit LVM"
-
-#: ../../diskdrake/interactive.pm_.c:404
-msgid "Modify RAID"
-msgstr "Verander RAID"
-
-#: ../../diskdrake/interactive.pm_.c:405
-msgid "Use for loopback"
-msgstr "Gebruik vir teruglus"
-
-#: ../../diskdrake/interactive.pm_.c:445
-msgid "Create a new partition"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Create new theme"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:448
-msgid "Start sector: "
-msgstr "Kies sektor: "
-
-#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
-msgid "Size in MB: "
-msgstr "Grootte in MB: "
-
-#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
-msgid "Filesystem type: "
-msgstr "LOerstelseltipe: "
-
-#: ../../diskdrake/interactive.pm_.c:456
-msgid "Preference: "
-msgstr "Voorkeure: "
-
-#: ../../diskdrake/interactive.pm_.c:481
-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:511
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Terugluslкer %s word geformateer"
-
-#: ../../diskdrake/interactive.pm_.c:541
-msgid "Change partition type"
-msgstr "Verander partisietipe"
-
-#
-#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Watter lкerstelsel verlang u?"
-
-#: ../../diskdrake/interactive.pm_.c:548
-msgid "Switching from ext2 to ext3"
-msgstr "Oorskakeling van ext2 na ext3"
-
-#: ../../diskdrake/interactive.pm_.c:578
+#: ../../bootlook.pm:1
#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Waar wil u terugluslкer %s heg?"
-
-#: ../../diskdrake/interactive.pm_.c:579
-#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Waar wil u toestel %s heg?"
-
-#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Display theme\n"
+"under console"
msgstr ""
-"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
-"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:606
+#: ../../bootlook.pm:1
#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Waar wil u toestel %s heg?"
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "Computing FAT filesystem bounds"
-msgstr "FAT lкerstelselgrense word bereken"
-
-#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
-#: ../../install_interactive.pm_.c:131
-msgid "Resizing"
-msgstr "Grootteverandering"
-
-#: ../../diskdrake/interactive.pm_.c:662
-msgid "This partition is not resizeable"
-msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-
-#: ../../diskdrake/interactive.pm_.c:667
-msgid "All data on this partition should be backed-up"
-msgstr "Alle data om hierdie partisie moet gerugsteun word."
+msgid "Install themes"
+msgstr "Installeer stelsel"
-#: ../../diskdrake/interactive.pm_.c:669
+#: ../../bootlook.pm:1
#, 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:674
-msgid "Choose the new size"
-msgstr "Kies die nuwe grootte"
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "New size in MB: "
-msgstr "Nuwe grootte in MB: "
-
-#: ../../diskdrake/interactive.pm_.c:728
-msgid "Which disk do you want to move it to?"
-msgstr "Na watter skyf wil u skuif?"
-
-#: ../../diskdrake/interactive.pm_.c:729
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:730
-msgid "Which sector do you want to move it to?"
-msgstr "Na watter sektor wil u skuif?"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving"
-msgstr "Verskuiwing"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving partition..."
-msgstr "Partisie word verskuif..."
-
-#: ../../diskdrake/interactive.pm_.c:750
-msgid "Choose an existing RAID to add to"
-msgstr "Kies 'n bestaande RAID om by toe te voeg"
-
-#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
-msgid "new"
-msgstr "nuut"
-
-#: ../../diskdrake/interactive.pm_.c:766
-msgid "Choose an existing LVM to add to"
-msgstr "Kies 'n bestaande LVM om by toe te voeg"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "LVM name?"
-msgstr "LVM naam?"
-
-#: ../../diskdrake/interactive.pm_.c:812
-msgid "This partition can't be used for loopback"
-msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-
-#: ../../diskdrake/interactive.pm_.c:825
-msgid "Loopback"
-msgstr "Teruglus"
-
-#: ../../diskdrake/interactive.pm_.c:826
-msgid "Loopback file name: "
-msgstr "Teruglus lкernaam:"
-
-#: ../../diskdrake/interactive.pm_.c:831
-#, fuzzy
-msgid "Give a file name"
-msgstr "Regte naam"
-
-#: ../../diskdrake/interactive.pm_.c:834
-msgid "File already used by another loopback, choose another one"
-msgstr "Lкer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-
-#: ../../diskdrake/interactive.pm_.c:835
-msgid "File already exists. Use it?"
-msgstr "Lкer bestaan alreeds. Moet dit gebruik word?"
-
-#: ../../diskdrake/interactive.pm_.c:858
-msgid "Mount options"
-msgstr "Hegopsies:"
-
-#: ../../diskdrake/interactive.pm_.c:865
-msgid "Various"
-msgstr "Verskeie"
-
-#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
-msgid "device"
-msgstr "toestel"
-
-#: ../../diskdrake/interactive.pm_.c:930
-msgid "level"
-msgstr "vlak"
-
-#: ../../diskdrake/interactive.pm_.c:931
-msgid "chunk size"
-msgstr "blokgrootte"
-
-#: ../../diskdrake/interactive.pm_.c:947
-msgid "Be careful: this operation is dangerous."
-msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-
-#: ../../diskdrake/interactive.pm_.c:962
-msgid "What type of partitioning?"
-msgstr "Watter tipe van partisionering?"
-
-#: ../../diskdrake/interactive.pm_.c:978
-#, 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:992
-msgid ""
-"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
-"1024).\n"
-"Either you use LILO and it won't work, or you don't use LILO and you don't "
-"need /boot"
-msgstr ""
-"Jammer, ek kan nie die versoek om /boot om hierdie skyf (op 'n silinder > "
-"1024) te skep,\n"
-"aanvaar nie. As u LILO gebruik sal dit nie werk nie en as u nie LILO "
-"gebruik\n"
-"nie, dan het u nie /boot nodig nie."
-
-#: ../../diskdrake/interactive.pm_.c:996
-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 ""
-"_ keuse vir die \"root\" partisie (/) is fisies buite die 1024de silindervan "
-"die\n"
-"hardeskyf en u het nie 'n /boot partisie nie. Indien u beplan om LILO te "
-"gebruik,moet u\n"
-"asb. 'n /boot partisie skep,"
-
-#: ../../diskdrake/interactive.pm_.c:1002
-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 ""
-"U het 'n sagteware RAID-partisie as wortel (/).\n"
-"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
-"Onthou om 'n /boot by te voeg."
+msgid "Lilo/grub mode"
+msgstr "LILO/GRUB metode"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../bootlook.pm:1
#, 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:1026
-msgid "You'll need to reboot before the modification can take place"
-msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
+msgid "Yaboot mode"
+msgstr "Yaboot metode"
-#: ../../diskdrake/interactive.pm_.c:1037
+#: ../../bootlook.pm:1
#, 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:1039
-msgid "Formatting"
-msgstr "Formatering"
+msgid "Launch Aurora at boot time"
+msgstr "Laai Aurora met herlaaityd"
-#: ../../diskdrake/interactive.pm_.c:1040
+#: ../../bootlook.pm:1
#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Terugluslкer %s word geformateer"
+msgid "Traditional Gtk+ Monitor"
+msgstr "Tradisionele Gtk+ Monitor"
-#: ../../diskdrake/interactive.pm_.c:1041
-#: ../../install_steps_interactive.pm_.c:466
+#: ../../bootlook.pm:1
#, c-format
-msgid "Formatting partition %s"
-msgstr "Partisie %s word formateer"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid het gefaal"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+msgid "Traditional Monitor"
+msgstr "Tradisionele monitor"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1064
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+msgid "NewStyle Monitor"
+msgstr "Nuwe styl monitor"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../bootlook.pm:1
#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1072
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "LPD word verwyder..."
+msgid "NewStyle Categorizing Monitor"
+msgstr "Nuwe monitorkategoriasiestyl"
-#: ../../diskdrake/interactive.pm_.c:1082
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1103
-#: ../../diskdrake/interactive.pm_.c:1162
-msgid "Device: "
-msgstr "Toestel:"
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1108
-#: ../../diskdrake/interactive.pm_.c:1116
-#: ../../diskdrake/interactive.pm_.c:1181
-msgid "Type: "
-msgstr "Tipe:"
-
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Name: "
-msgstr "Naam: "
+msgid "/File/_Quit"
+msgstr "/Lкer/_Verlaat"
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "Start: sector %s\n"
-msgstr "Begin: sektor %s\n"
+msgid "/_File"
+msgstr "/_Lкer"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../bootlook.pm:1
#, c-format
-msgid "Size: %s"
-msgstr "Grootte: %s"
+msgid "Boot Style Configuration"
+msgstr "Herlaaistylkonfigurasie"
-#: ../../diskdrake/interactive.pm_.c:1123
+#: ../../common.pm:1
#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektore"
-
-#: ../../diskdrake/interactive.pm_.c:1125
-#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silinder %d na silinder %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1126
-msgid "Formatted\n"
-msgstr "Geformateer\n"
-
-#: ../../diskdrake/interactive.pm_.c:1127
-msgid "Not formatted\n"
-msgstr "Nie geformatter\n"
-
-#: ../../diskdrake/interactive.pm_.c:1128
-msgid "Mounted\n"
-msgstr "Geheg\n"
+msgid "consolehelper missing"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1129
+#: ../../common.pm:1
#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+msgid "kdesu missing"
+msgstr "kdesu is weg"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../common.pm:1
#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Teruglus lкer(s): %s\n"
+msgid "Screenshots will be available after install in %s"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../diskdrake/interactive.pm_.c:1132
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Verstekpartisie vir herlaai\n"
-" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
+#: ../../common.pm:1
+#, fuzzy, c-format
+msgid "Can't make screenshots before partitioning"
+msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../common.pm:1
#, c-format
-msgid "Level %s\n"
-msgstr "Vlak %s\n"
+msgid "%d seconds"
+msgstr "%d sekondes"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../common.pm:1
#, c-format
-msgid "Chunk size %s\n"
-msgstr "Blokgrootte %s\n"
+msgid "1 minute"
+msgstr "1 minuut"
-#: ../../diskdrake/interactive.pm_.c:1136
+#: ../../common.pm:1
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-skywe %s\n"
+msgid "%d minutes"
+msgstr "%d minute"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../common.pm:1
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Teruglus lкernaam: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1141
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Dis hoogs waarskynlik dat hierdie partisie\n"
-"drywerpartisie is en verkieslik alleen gelos\n"
-"moet word.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1144
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Hierdie spesiale herlaaipartisie\n"
-"is om u stelsel te duolaai.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1163
-msgid "Read-only"
-msgstr ""
+msgid "TB"
+msgstr "TB"
-#: ../../diskdrake/interactive.pm_.c:1164
+#: ../../common.pm:1
#, c-format
-msgid "Size: %s\n"
-msgstr "Grootte: %s\n"
+msgid "GB"
+msgstr "GB"
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../common.pm:1
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-
-#: ../../diskdrake/interactive.pm_.c:1166
-msgid "Info: "
-msgstr "Info:"
+msgid "MB"
+msgstr "MB"
-#: ../../diskdrake/interactive.pm_.c:1167
+#: ../../common.pm:1
#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-skywe %s\n"
+msgid "KB"
+msgstr "KB"
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Partisietabeltipe: %s\n"
+msgid "United States"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1169
+#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "op bus %d id %d\n"
+msgid "Austria"
+msgstr "seriaal"
-#: ../../diskdrake/interactive.pm_.c:1199
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "LOerstelseltipe: "
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Italy"
+msgstr "Italiaans"
-#: ../../diskdrake/interactive.pm_.c:1200
-msgid "Choose your filesystem encryption key"
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "Netherlands"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1203
+#: ../../crypto.pm:1 ../../lang.pm:1
#, 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:1204
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Die wagwoorde stem nie ooreen nie."
+msgid "Sweden"
+msgstr "Sien"
-#: ../../diskdrake/interactive.pm_.c:1207
-msgid "Encryption key"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Norway"
+msgstr "Norweegs"
-#: ../../diskdrake/interactive.pm_.c:1208
-msgid "Encryption key (again)"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greece"
+msgstr "Grieks"
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Verander tipe"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Germany"
+msgstr "Duitsland"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "Can't login using username %s (bad password?)"
+msgid "Czech Republic"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
-msgid "Domain Authentication Required"
-msgstr "Magtiging"
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "Belgium"
+msgstr "Belgies"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
-msgid "Another one"
-msgstr "Internet"
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "France"
+msgstr "Frankryk"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
-msgid "Which username"
-msgstr "Gebruikerskode"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Costa Rica"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:176
-msgid ""
-"Please enter your username, password and domain name to access this host."
+#: ../../fsedit.pm:1
+#, c-format
+msgid "Error opening %s for writing: %s"
+msgstr "Four om %s in skryfmode te open: %s"
+
+#: ../../fsedit.pm:1
+#, c-format
+msgid "Nothing to do"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
-#, fuzzy
-msgid "Username"
-msgstr "Gebruikerskode"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid "Not enough free space for auto-allocating"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
-msgid "Domain"
-msgstr "NIS-domein"
+#: ../../fsedit.pm:1
+#, 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."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:200
-#, fuzzy
-msgid "Search servers"
-msgstr "DNS bediener"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
+msgstr "U benodig 'n ware lкerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fs.pm_.c:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
-#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
+#: ../../fsedit.pm:1
#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s formatering ban %s het gefaal"
+msgid "This directory should remain within the root filesystem"
+msgstr "Hierdie lкergids moet altyd in die wortellкerstelsel bly"
-#: ../../fs.pm_.c:610
+#: ../../fsedit.pm:1
#, 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"
+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."
-#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
+#: ../../fsedit.pm:1
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
+msgid "There is already a partition with mount point %s\n"
+msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
+#: ../../fsedit.pm:1
#, c-format
-msgid "error unmounting %s: %s"
-msgstr "fout met onthegting van %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "eenvoudig"
+msgid "Mount points must begin with a leading /"
+msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+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:30
-msgid "server"
-msgstr "bediener"
+#: ../../fsedit.pm:1
+#, c-format
+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:240
+#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
@@ -2400,754 +1163,602 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../fsedit.pm_.c:501
-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:502
-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:521
-msgid "Mount points must begin with a leading /"
-msgstr "Hegpunte moet met 'n / begin"
-
-#: ../../fsedit.pm_.c:522
+#: ../../fsedit.pm:1
#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
+msgid "server"
+msgstr "bediener"
-#: ../../fsedit.pm_.c:526
+#: ../../fsedit.pm:1
#, 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:528
-msgid "This directory should remain within the root filesystem"
-msgstr "Hierdie lкergids moet altyd in die wortellкerstelsel bly"
+msgid "with /usr"
+msgstr ""
-#: ../../fsedit.pm_.c:530
-#, fuzzy
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
-msgstr "U benodig 'n ware lкerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
+#: ../../fsedit.pm:1
+#, c-format
+msgid "simple"
+msgstr "eenvoudig"
-#: ../../fsedit.pm_.c:532
+#: ../../fs.pm:1
#, 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."
+msgid "Enabling swap partition %s"
+msgstr "Partisie %s word formateer"
-#: ../../fsedit.pm_.c:599
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+#: ../../fs.pm:1 ../../partition_table.pm:1
+#, c-format
+msgid "error unmounting %s: %s"
+msgstr "fout met onthegting van %s: %s"
-#: ../../fsedit.pm_.c:601
-msgid "Nothing to do"
+#: ../../fs.pm:1
+#, c-format
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fsedit.pm_.c:694
-#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Four om %s in skryfmode te open: %s"
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Mounting partition %s"
+msgstr "Partisie %s word formateer"
-#: ../../harddrake/data.pm_.c:71
-msgid "cpu /* "
-msgstr ""
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Checking %s"
+msgstr "LPD word verwyder..."
-#: ../../harddrake/sound.pm_.c:170
-msgid "No alternative driver"
-msgstr ""
+#: ../../fs.pm:1
+#, c-format
+msgid "Formatting partition %s"
+msgstr "Partisie %s word formateer"
-#: ../../harddrake/sound.pm_.c:171
+#: ../../fs.pm:1
#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
+msgid "Creating and formatting file %s"
+msgstr "Lкer %s word geskep en formatteer"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
-msgid "Sound configuration"
-msgstr "Konfigurasie"
+#: ../../fs.pm:1
+#, 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"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../fs.pm:1
#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
+msgid "%s formatting of %s failed"
+msgstr "%s formatering ban %s het gefaal"
-#: ../../harddrake/sound.pm_.c:176
+#: ../../help.pm:1
#, c-format
msgid ""
+"Click on \"Next ->\" if you want to delete all data and partitions present\n"
+"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
+"be able to recover any data and partitions present on this hard drive,\n"
+"including any Windows data.\n"
"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:178
-#, fuzzy
-msgid "Driver:"
-msgstr "Drywer"
-
-#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
-#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
-#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
-#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
-#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
-#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
-msgid "Help"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:185
-msgid "Switching between ALSA and OSS help"
+"Click on \"<- Previous\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../harddrake/sound.pm_.c:186
+#: ../../help.pm:1
+#, c-format
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
+"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 ""
-#: ../../harddrake/sound.pm_.c:202
+#: ../../help.pm:1
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
+"As a review, DrakX will present a summary of various information it has\n"
+"about your system. Depending on your installed hardware, you may have some\n"
+"or all of the following entries:\n"
"\n"
-"It has been reported to oopses the kernel on unloading.\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
-#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
-#: ../../standalone/service_harddrake_.c:64
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../harddrake/sound.pm_.c:210
-msgid "No known driver"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:211
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:214
-#, fuzzy
-msgid "Unkown driver"
-msgstr "Onbekende model"
-
-#: ../../harddrake/sound.pm_.c:215
-#, c-format
-msgid ""
-"The \"%s\" driver for your sound card is unlisted\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary.\n"
"\n"
-"Please send the output of the \"lspcidrake -v\" command to\n"
-"<install at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver \"%s\""
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Gebruik outobespeuring"
-
-#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generies"
-
-#: ../../harddrake/v4l.pm_.c:97
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:98
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:224
-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/v4l.pm_.c:227
-#, fuzzy
-msgid "Card model:"
-msgstr "Kaartgeheue (DMA)"
-
-#: ../../harddrake/v4l.pm_.c:228
-#, fuzzy
-msgid "Tuner type:"
-msgstr "Verander tipe"
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:231
-#, fuzzy
-msgid "PLL setting:"
-msgstr "Formatering"
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "Radio support:"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "enable radio support"
-msgstr ""
-
-#: ../../help.pm_.c:13
-#, fuzzy
-msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more this concept. But unlike \"root\", which is the\n"
-"administrator, the users you add here will not be entitled to change\n"
-"anything except their own files and their own configurations. You will have\n"
-"to create at least one regular user for yourself. That account is where you\n"
-"should log in for routine use. Although it is very practical to log in as\n"
-"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
-"could mean that your system would not work any more. If you make a serious\n"
-"mistake as a regular user, you may only lose some information, but not the\n"
-"entire system.\n"
-"\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\n"
-"first 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"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
-"one from a security point of view, but that is no reason to neglect it:\n"
-"after all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of the people meant to use that computer. When you are\n"
-"finish adding all the users you want, select \"Done\".\n"
+" * \"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one.\n"
"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default).\n"
+" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+"primary language you have chosen. But here, just as in your choice of a\n"
+"keyboard, you may not be in the country for which the chosen language\n"
+"should correspond. You may need to click on the \"Timezone\" button to\n"
+"configure the clock for the correct timezone.\n"
"\n"
-"When you are finished adding all users, you will be proposed to choose a\n"
-"user which can automatically log into the system when the computer boots\n"
-"up. If you are interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click \"Yes\".\n"
-"If you are not interested in this feature, click \"No\"."
-msgstr ""
-"GNU/Linux is 'n multigebruikerstelsel en dit beteken dat elke gebruiker sy "
-"eie\n"
-"voorkeure kan stel, met sy eie lкers ens. U kan meer hieroor in die "
-"gebruikersgids\n"
-"lees. Maak andersins as 'root', die supergebruiker, kan gebruikers wat u "
-"hier byvoeg\n"
-"niks verander behalwe hul eie lкers en konfigurasie nie. U moet ten minste "
-"een gewone\n"
-"gebruiker vir u self skep. Hierdie gebruker is die een waaronder u moet "
-"inteken vir\n"
-"normale gebruik van die stelsel. Alhoewel dit baie gemaklik is om as 'root' "
-"in te teken vir\n"
-"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan u stelsel "
-"immobiliseer. 'n Fout\n"
-"wat as gewone gebruiker gemaak word sal net daardie gebruiker beпnvloed\n"
-"en nie hele stelsel nie.\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation.\n"
"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-"Eers moet u u eie naam intik. Dit is nie verpligtend nie, want u kan eintlik "
-"enigiets intik as\n"
-"u wil. DrakX sal dan die eerste woord wat u ingetik het in die "
-"gebruikerskode inskrywingsveld\n"
-"plaas. U kan hier verander indien u wil. Dit is die gebruikerskode waarmee "
-"die gebruiker in die\n"
-"stelsel sal inteken. U moet dan ook 'n wagwoord hier invoeg. 'n Gewone "
-"gebruiker se wagwoord\n"
-"is nie so krities as diй van die supergebruiker (uit 'n sekuriteitsoogpunt) "
-"nie, maar daar is geen\n"
-"rede om agterlosig met u data te wees nie.\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" resolution. If that does not suits you, click on\n"
+"the button to reconfigure your grapical interface.\n"
"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now, you can by clicking on this button.\n"
"\n"
-"Indien u op Aanvaar kliek sal die gebruiker geskep word en kan u nog "
-"gebruikers byvoeg.\n"
-"U kan vir al u vriende gebruikerskodes skep of sommer een vir pa en ma ook. "
-"Wanneer u\n"
-"klaar is kliek op Klaar.\n"
+" * \"Sound card\": if a sound card is detected on your system, it is\n"
+"displayed here. If you notice the sound card displayed is not the one that\n"
+"is actually present on your system, you can click on the button and choose\n"
+"another driver.\n"
"\n"
-"Kliek op die Gevorderd knoppie indien u die verstek instruksiedop vir die "
-"gebruiker wil verander.\n"
-"Dit is bash by verstek."
+" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+"here. If you have a TV card and it is not detected, click on the button to\n"
+"try to configure it manually.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated with the card."
+msgstr ""
-#: ../../help.pm_.c:48
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\"Sound card\": if a sound card is detected on your system, it is displayed\n"
+"here. If you notice the sound card displayed is not the one that is\n"
+"actually present on your system, you can click on the button and choose\n"
+"another driver."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
+"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
+"detected and installed in the bootloader menu. If this is not the case, you\n"
+"can add an entry by hand in this screen. Be careful to choose the correct\n"
+"parameters.\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+"Yaboot's main options are:\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+" * Init Message: a simple text message displayed before the boot prompt.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information.\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-
-#: ../../help.pm_.c:79
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"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."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:84
+#: ../../help.pm:1
+#, c-format
msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
+"You can add additional entries in yaboot for other operating systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
+"For other OSs, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
+"For Linux, there are a few possible options:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation,\n"
-"select one or more of the corresponding groups;\n"
+" * Label: this is the name you will have to type at the yaboot prompt to\n"
+"select this boot option.\n"
"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension.\n"
"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
+" * Append: on Apple hardware, the kernel append option is often used to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button\n"
+"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
+"The following are some examples:\n"
"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you unselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
+" 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"
"\n"
-" * \"With X\": install the fewest packages possible to have a working\n"
-"graphical desktop;\n"
+" * Initrd: this option can be used either to load initial modules before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation.\n"
"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
+" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
+"need to allocate a large ramdisk, this option can be used to specify a\n"
+"ramdisk larger than the default.\n"
"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
+" * Read-write: normally the \"root\" partition is initially mounted as\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"You can override the default with this option.\n"
"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support.\n"
"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful to repair or\n"
-"update an existing system."
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
+"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
-#: ../../help.pm_.c:135
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Finally, depending on whether or not you chose to be able to select\n"
-"individual packages, you will be presented a tree containing all packages\n"
-"classified by groups and subgroups. While browsing the tree, you can select\n"
-"entire groups, subgroups, or individual packages.\n"
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An installation time estimate is displayed\n"
-"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
-"of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
+"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
+"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
+"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
+"your machine. If you're not sure, you can check the list of hardware\n"
+"detected in your machine by selecting \"See hardware info \" and clicking\n"
+"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
+"->\" button to return to the SCSI interface question.\n"
"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of the previous step on how to\n"
-"create such a floppy disk."
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
msgstr ""
-
-#: ../../help.pm_.c:171
-msgid ""
-"You are now able to set up your Internet/network connection. If you wish to\n"
-"connect your computer to the Internet or to a local network, click \"OK\".\n"
-"The autodetection of network devices and modem will be launched. If this\n"
-"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
-"also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
+"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
+"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer omte gebruik sal "
+"dit outomaties installeer word.\n"
"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"Indien u nie oor 'n SCSI-kaart, beskik nie of oor 'n ISA SCSI-kaart of 'n "
+"PCI SCSI-kaart beskik wat DrakX nie kan herken nie, sal u gevra word of daar "
+"enige SCSI-kaarte in diestelsel is. Indien daar geen is nie kliek op 'Nee', "
+"andersins op 'Ja'. U sal dan uit'n drywerlys kan kies.\n"
"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
"\n"
-"You can consult the ``Starter Guide'' chapter about Internet connections\n"
-"for details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
+"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige "
+"spesifiekeopsies.\n"
+"U kan egter DrakX toelaat om self die hardeware te ondervra. DIt werk "
+"gewoonlik die beste.\n"
"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
+"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die "
+"Windows-bedryfstelsel te bekom.\n"
+"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-#: ../../help.pm_.c:193
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other OSs may\n"
+"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
+"is best for a particular type of configuration.\n"
+"\n"
+" * \"pdq\" -- which is an acronym for ``print, don't queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
+"\" will handle only very simple network cases and is somewhat slow when\n"
+"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
+"printing to your local printer or to one halfway around the planet. It is\n"
+"simple to configure and can act as a server or a client for the ancient\n"
+"\"lpd \" printing system, so it compatible with older operating systems\n"
+"that may still need print services. While quite powerful, the basic setup\n"
+"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
+"sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
+"front-ends for printing or choosing printer options and for managing the\n"
+"printer.\n"
+"\n"
+"If you make a choice now, and later find that you don't like your printing\n"
+"system you may change it by running PrinterDrake from the Mandrake Control\n"
+"Center and clicking the expert button."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You may now choose which services you wish to start at boot time.\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. DrakX will analyze the disk boot sector and act according to\n"
+"what it finds there:\n"
"\n"
-"Here are listed all the services available with the current installation.\n"
-"Review them carefully and uncheck those which are not always needed at boot\n"
-"time.\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. This way you will be able to load either GNU/Linux or another\n"
+"OS.\n"
"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
-"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
-"wat die rol van die diens verduidelik.\n"
+"If it cannot make a determination, DrakX will ask you where to place the\n"
+"bootloader.\n"
"\n"
-"Wees versigtig met hierdie stap. Indien u beplan om diй rekenaar as 'n\n"
-"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-
-#: ../../help.pm_.c:210
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
+"\"Boot device\": in most cases, you will not change the default (\"First\n"
+"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
+"(\"On Floppy\").\n"
"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:224
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely.\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
+"\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
"\n"
-"You will be presented the list of available resolutions and color depth\n"
-"available for your hardware. Choose the one that best suit your needs (you\n"
-"will be able to change that after installation though). When you are\n"
-"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
-"then appear and ask you if you can see it.\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen. Refer then to the video\n"
-"configuration section of the user guide for more information on how to\n"
-"configure your display."
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
-#: ../../help.pm_.c:246
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options that will be available at boot time will be displayed.\n"
+"\n"
+"If there are other operating systems installed on your machine they will\n"
+"automatically be added to the boot menu. You can fine-tune the existing\n"
+"options by clicking \"Add\" to create a new entry; selecting an entry and\n"
+"clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" validates\n"
+"your changes.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone who goes to the console and reboots the machine. You can delete the\n"
+"corresponding entries for the operating systems to remove them from the\n"
+"bootloader menu, but you will need a boot disk in order to boot those other\n"
+"operating systems!"
msgstr ""
+"LILO (Die LInux LOader) en Grub is herlaaistelsels. Beide kan GNU/Linux of "
+"enige ander\n"
+"bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word hierdie\n"
+"beryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing maak\n"
+"op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
+"\n"
+"\n"
+"U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
+"nodige\n"
+"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
+"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:253
+#: ../../help.pm:1
+#, c-format
msgid ""
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
-"MBR) of your main disk (unless you are using another boot manager), to\n"
-"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
-"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector, and then you will not be able\n"
-"to start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
-"floppy disk you will insert must be empty or contain data which you do not\n"
-"need. You will not have to format it since DrakX will rewrite the whole\n"
-"disk."
-msgstr ""
-
-#: ../../help.pm_.c:277
-msgid ""
-"You now need to choose where you want to install the Mandrake Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space, you will need\n"
-"to partition it. Basically, partitioning a hard drive consists of logically\n"
-"dividing it to create space to install your new Mandrake Linux system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
-"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
-"Guide''. From the installation interface, you can use the wizards as\n"
-"described here by clicking the dialog's \"Wizard\" button.\n"
-"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available.\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
+"This dialog allows to finely tune your bootloader:\n"
"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option. You will then be asked to choose the mount points associated to\n"
-"each of the partitions. The legacy mount points are selected by default,\n"
-"and you should generally keep them.\n"
+" * \"Bootloader to use\": there are three choices for your bootloader:\n"
"\n"
-" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see ``Erase entire disk'' 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"
-"Microsoft Windows on the same computer.\n"
+" * \"GRUB\": if you prefer grub (text menu).\n"
"\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"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface.\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
+" * \"Delay before booting the default image\": after a boot or a reboot of\n"
+"the computer, this is the delay given to the user at the console to select\n"
+"a boot entry other than the default.\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Skip\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"system! Be sure you know what you do before changing any of the options. !!\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 option. You\n"
-"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing. To know how to use the DiskDrake utility used\n"
-"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
-"Guide''''"
+"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
+"that are reserved for the expert user."
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm:1
+#, c-format
msgid ""
-"There you are. Installation is now completed and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
+"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 the password that you chose too easy. As you\n"
+"can see, you are not forced to enter a password, but we strongly advise you\n"
+"against. GNU/Linux is as prone to operator error as any other operating\n"
+"system. Since \"root\" can overcome all limitations and unintentionally\n"
+"erase all data on partitions by carelessly accessing the partitions\n"
+"themselves, it is important that it be difficult to become \"root\".\n"
"\n"
-" Note that two different options are available after clicking the button:\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"
+"easy to compromise a system.\n"
"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
+"One caveat -- do not make the password too long or complicated because you\n"
+"must be able to remember it!\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is\n"
-"completely rewritten, all data is lost.\n"
+"The password will not be displayed on screen as you type it in. To reduce\n"
+"the chance of a blind typing error you will need to enter the password\n"
+"twice. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\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"
+"If you wish access to this computer to be controlled by an authentication\n"
+"server, clisk the \"Advanced\" button.\n"
"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you do not\n"
+"know which to use, ask your network administrator.\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+"If you happen to have problems with reminding passwords, you can choose to\n"
+"have \"No password\", if your computer won't be connected to the Internet,\n"
+"and if you trust anybody having access to it."
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem on it).\n"
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
+"ttyS0 onder GNU/Linux is."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the provided list.\n"
"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and to\n"
+"go back to the list of choices.\n"
"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"it.\n"
+"Wheel mice are occasionally not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"Next ->\" button, a mouse image is displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activated correctly. Once you\n"
+"see the on-screen scroll wheel moving as you scroll your mouse wheel, test\n"
+"the buttons and check that the mouse pointer moves on-screen as you move\n"
+"your mouse."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Your choice of preferred language will affect the language of the\n"
+"documentation, the installer and the system in general. Select first the\n"
+"region you are located in, and then the language you speak.\n"
"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation, thereby installing the\n"
+"language-specific files for system documentation and applications. For\n"
+"example, if you will host users from Spain on your machine, select English\n"
+"as the default language in the tree view and \"Espanol\" in the Advanced\n"
+"section.\n"
"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Note that you're not limited to choosing a single additional language. Once\n"
+"you have selected additional locales, click the \"Next ->\" button to\n"
+"continue.\n"
"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
+"To switch between the various languages installed on the system, you can\n"
+"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+"language used by the entire system. Running the command as a regular user\n"
+"will only change the language settings for that particular user."
msgstr ""
-#: ../../help.pm_.c:404
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
+"Depending on the default language you chose in Section , DrakX will\n"
+"automatically select a particular type of keyboard configuration. However,\n"
+"you might not have a keyboard that corresponds exactly to your language:\n"
+"for example, if you are an English speaking Swiss person, you may have a\n"
+"Swiss keyboard. Or if you speak English but are located in Quebec, you may\n"
+"find yourself in the same situation where your native language and keyboard\n"
+"do not match. In either case, this installation step will allow you to\n"
+"select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"More \" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"Please be patient."
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding that will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
msgstr ""
-#: ../../help.pm_.c:412
+#: ../../help.pm:1
+#, c-format
msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"This step is activated only if an old GNU/Linux partition has been found on\n"
+"your machine.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
+"DrakX now needs to know if you want to perform a new install or an upgrade\n"
+"of an existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": For the most part, this completely wipes out the old\n"
+"system. If you wish to change how your hard drives are partitioned, or\n"
+"change the file system, you should use this option. However, depending on\n"
+"your partitioning scheme, you can prevent some of your existing data from\n"
+"being over- written.\n"
+"\n"
+" * \"Upgrade\": this installation class allows you to update the packages\n"
+"currently installed on your Mandrake Linux system. Your current\n"
+"partitioning scheme and user data is not altered. Most of other\n"
+"configuration steps remain available, similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
+"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-#: ../../help.pm_.c:425
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms included in it, click on the \"Refuse\" button which will\n"
-"immediately terminate the installation. To continue with the installation,\n"
-"click on the \"Accept\" button."
+"\"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one."
msgstr ""
-"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
-"die hele Mandrake Lnux distirbusie, and indien u nie saamstem met al die\n"
-"terme daarin bevat nie, kliek om die Weier knoppie. Dit sal onmiddelik die\n"
-"installasie stop sit. Om met die installasie voort te gaan kliek op die "
-"Aanvaar\n"
-"knoppie."
-#: ../../help.pm_.c:432
+#: ../../help.pm:1
+#, c-format
msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
-"get more information about the meaning of these levels.\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-"If you do not know what to choose, keep the default option."
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm:1
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3162,530 +1773,679 @@ msgid ""
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
+"drive\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
-"swap partitions on your hard drive's free space;\n"
+" * \"Auto allocate\": this option enables you to automatically create ext3\n"
+"and swap partitions in free space of your hard drive\n"
"\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\n"
-"recommended to perform this step;\n"
+"recommended that you perform this step.\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from a floppy disk;\n"
+" * \"Restore partition table\": allows you to restore a previously saved\n"
+"partition table from a 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"
+"doesn't always work.\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and reloads the\n"
+"partition table that was originally on the hard drive.\n"
"\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\n"
-"your hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
+"your hard drive. This is recommended if you do not have a good\n"
+"understanding of partitioning.\n"
"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
+" * \"Undo\": use this option to cancel your changes.\n"
"\n"
" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
+"partitions (type, options, format) and gives more information about the\n"
+"hard drive.\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-" * Ctrl-d to delete a partition;\n"
+" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point.\n"
+" * Ctrl-m to set the mount point\n"
"\n"
-"To get information about the different filesystem types available, please\n"
+"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:513
+#: ../../help.pm:1
+#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"At this point, DrakX will allow you to choose the security level desired\n"
+"for the machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine will contain crucial data, or if it will be a machine\n"
+"directly exposed to the Internet. The trade-off of a higher security level\n"
+"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
+"chapter of the ``Command Line Manual'' to get more information about the\n"
+"meaning of these levels.\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Bugs may have been\n"
+"fixed, security issues resolved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. A package-selection tree will\n"
+"appear: review the selection, and press \"Install\" to retrieve and install\n"
+"the selected package( s), or \"Cancel\" to abort."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a file system).\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"At this time, you may wish to reformat some already existing partitions to\n"
+"erase any data they contain. If you wish to do that, please select those\n"
+"partitions as well.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Please note that it is not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
+"reformat partitions containing data that you wish to keep (typically\n"
+"\"/home\").\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"Please be careful when selecting partitions. After formatting, all data on\n"
+"the selected partitions will be deleted and you will not be able to recover\n"
+"it.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"Click on \"Next ->\" when you are ready to format partitions.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
+"Click on \"<- Previous\" if you want to choose another partition for your\n"
+"new Mandrake Linux operating system installation.\n"
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
-msgstr ""
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-#: ../../help.pm_.c:547
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
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\") over your\n"
-"installation. You can also choose to do a new installation or upgrade your\n"
-"existing Mandrake Linux system:\n"
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
+"you should see after your computer has finished doing its hardware tests is\n"
+"the bootloader menu, giving you the choice of which operating system to\n"
+"start.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
-" * \"Install\": completely wipes out the old system. However, depending on\n"
-"what is currently installed on your machine, you may be able to keep some\n"
-"old partitions (Linux or otherwise) unchanged;\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"that will automatically perform a whole installation without the help of an\n"
+"operator, similar to the installation you just configured.\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the\n"
-"packages currently installed on your Mandrake Linux system. It keeps your\n"
-"hard drives' current partitions as well as user configurations. All other\n"
-"configuration steps remain available, similar to a normal installation;\n"
+" Note that two different options are available after clicking the button:\n"
"\n"
-" * \"Upgrade Packages Only\": this new installation class allows you to\n"
-"upgrade an existing Mandrake Linux system while keeping all system\n"
-"configurations unchanged. Adding new packages to the current installation\n"
-"is also possible.\n"
+" * \"Replay\". This is a partially automated installation. The\n"
+"partitioning step is the only interactive procedure.\n"
"\n"
-"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
-"or later.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
-"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+" This feature is very handy when installing a number of similar machines.\n"
+"See the Auto install section on our web site for more information.\n"
"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
+" * \"Save packages selection\"(*): saves a list of the package selected in\n"
+"this installation. To use this selection with another installation, insert\n"
+"the floppy and start the installation. At the prompt, press the [F1] key\n"
+"and type >>linux defcfg=\"floppy\" <<.\n"
"\n"
-" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-"perform a highly customized installation. Some of the decisions you will\n"
-"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
-"so it is not recommended that those without a fair amount of experience\n"
-"select this installation class."
-msgstr "Kies asb. "
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
+msgstr ""
-#: ../../help.pm_.c:582
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen). However, you might not have a keyboard that\n"
-"corresponds exactly to your language: for example, if you are an English\n"
-"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
-"keyboard. Or if you speak English but are located in Quebec, you may find\n"
-"yourself in the same situation. In both cases, you will have to go back to\n"
-"this installation step and select an appropriate keyboard from the list.\n"
+"At this point, you need to decide where you want to install the Mandrake\n"
+"Linux operating system on your hard drive. If your hard drive is empty or\n"
+"if an existing operating system is using all the available space you will\n"
+"have to partition the drive. Basically, partitioning a hard drive consists\n"
+"of logically dividing it to create the space needed to install your new\n"
+"Mandrake Linux system.\n"
"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards.\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to lost data if there is an existing operating system already\n"
+"installed on the drive, partitioning can be intimidating and stressful if\n"
+"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on your hard drive configuration, several options are available:\n"
+"\n"
+" * \"Use free space\": this option will perform an automatic partitioning\n"
+"of your blank drive(s). If you use this option there will be no further\n"
+"prompts.\n"
+"\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated with\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and for the most part it's a good idea to keep them.\n"
+"\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
+"without the loss of any data, provided you previously defragment the\n"
+"Windows partition and that it uses the FAT format. Backing up your data is\n"
+"strongly recommended.. Using this option is recommended if you want to use\n"
+"both Mandrake Linux and Microsoft Windows on the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"then when you started. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software.\n"
+"\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful, because you will not be able to\n"
+"undo your choice after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
-"asked in the next dialog to choose the key binding that will switch the\n"
-"keyboard layout between the latin and non-latin layouts."
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"Custom disk partitionning\": choose this option if you want to\n"
+"manually partition your hard drive. Be careful -- it is a powerful but\n"
+"dangerous choice and you can very easily lose all your data. That's why\n"
+"this option is really only recommended if you have done something like this\n"
+"before and have some experience. For more instructions on how to use the\n"
+"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
+"the ``Starter Guide''."
msgstr ""
-#: ../../help.pm_.c:598
+#: ../../help.pm:1
+#, c-format
msgid ""
-"The first step is to choose your preferred language.\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
"\n"
-"Please choose your preferred language for installation and system usage.\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you host users from Spain on your machine,\n"
-"select English as the main language in the tree view and in the Advanced\n"
-"section, click on the box corresponding to \"Spanish|Spain\".\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue.\n"
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
"\n"
-"To switch from one language to the other, you can launch the\n"
-"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
-"language, or as a simple user to only change that user's default language."
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
-#: ../../help.pm_.c:617
+#: ../../help.pm:1
+#, c-format
msgid ""
-"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
-"it assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
-"\n"
-"If you wish to specify a different type of mouse, select the appropriate\n"
-"type from the provided list.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again.\n"
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Resolution\n"
"\n"
-"Sometimes, wheel mouses are not automatically detected. You will need to\n"
-"manually select it in the list. Be sure to select the one corresponding to\n"
-"the correct port it is attached to. After you have pressed the \"OK\"\n"
-"button, a mouse image will be displayed. You then need to move the wheel of\n"
-"your mouse to activate it correctly. Then test that all buttons and\n"
-"movements are correct."
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor."
msgstr ""
-#: ../../help.pm_.c:638
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"Monitor\n"
+"\n"
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own."
msgstr ""
-"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
-"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:642
-msgid ""
-"This is the most crucial decision in regards with the security of your\n"
-"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
-"system administrator and is the only one authorized to make updates, add\n"
-"users, change the overall system configuration, and so on. In short,\n"
-"\"root\" can do everything! That is why you must choose a password that is\n"
-"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
-"see, you can choose not to enter a password, but we strongly advise you\n"
-"against this if only for one reason: do not think that because you booted\n"
-"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
-"\"root\" can overcome all limitations and unintentionally erase all data on\n"
-"partitions by carelessly accessing the partitions themselves, it is\n"
-"important for it to be difficult to become \"root\".\n"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\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"
-"easy to compromise a system.\n"
+"You will be presented the list of different parameters to change to get an\n"
+"optimal graphical display: Graphic Card\n"
"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs.\n"
"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one as \"authentication\". If you have no\n"
-"clue, ask your network administrator.\n"
"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
-
-#: ../../help.pm_.c:678
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds there:\n"
+"Monitor\n"
"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own.\n"
"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
"\n"
-"if in doubt, DrakX will display a dialog with various options.\n"
"\n"
-" * \"Bootloader to use\": you have three choices:\n"
+"Resolution\n"
"\n"
-" * \"GRUB\": if you prefer grub (text menu);\n"
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor.\n"
"\n"
-" * \"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\n"
-"interface.\n"
"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"Test\n"
+"\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"Yes\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\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"
-"another boot entry than the default one.\n"
"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved for the expert user."
+"Options\n"
+"\n"
+" You can here choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"No\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-#: ../../help.pm_.c:718
+#: ../../help.pm:1
+#, c-format
msgid ""
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
+"Graphic Card\n"
"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
-"installation step.\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
-"You may also not want to give access to these other operating systems to\n"
-"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!"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
msgstr ""
-"LILO (Die LInux LOader) en Grub is herlaaistelsels. Beide kan GNU/Linux of "
-"enige ander\n"
-"bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word hierdie\n"
-"beryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing maak\n"
-"op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-"\n"
-"\n"
-"U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-"nodige\n"
-"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
-"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:732
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"GNU/Linux.\n"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
+"system clock and the hardware clock are in the same timezone. This is\n"
+"useful when the machine also hosts another operating system like Windows.\n"
"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
+"The \"Automatic time synchronization \" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. For this\n"
+"feature to work, you must have a working Internet connection. It is best to\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server that can used by other machines on your local network."
msgstr ""
-"U moet aandui waar u die informasie om Linux te herlaai, wil plaas.\n"
-"\n"
-"\n"
-"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
-"kies."
-#: ../../help.pm_.c:739
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Here, we select a printing system for your computer. Other OSes may offer\n"
-"you one, but Mandrake Linux offers two.\n"
+"This step is used to choose which services you wish to start at boot time.\n"
+"\n"
+"DrakX will list all the services available on the current installation.\n"
+"Review each one carefully and uncheck those which are not always needed at\n"
+"boot time.\n"
"\n"
-" * \"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 first 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"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you are not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
"\n"
-" * \"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."
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services that you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
+"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
+"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
+"wat die rol van die diens verduidelik.\n"
+"\n"
+"Wees versigtig met hierdie stap. Indien u beplan om diй rekenaar as 'n\n"
+"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-#: ../../help.pm_.c:759
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
+"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"You will now set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"Next\n"
+"->\". Mandrake Linux will attempt to autodetect network devices and modems.\n"
+"If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
+"also choose not to configure the network, or to do it later, in which case\n"
+"clicking the \"Cancel\" button will take you to the next step.\n"
"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
-"have no SCSI hardware. If you are unsure, you can check the list of\n"
-"hardware detected in your machine by selecting \"See hardware info\" and\n"
-"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
-"button to return to the SCSI interface question.\n"
+"When configuring your network, the available connections options are:\n"
+"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
+"simple LAN connection (Ethernet).\n"
"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
+"We will not detail each configuration option - just make sure that you have\n"
+"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
+"from your Internet Service Provider or system administrator.\n"
"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to manually provide options to the driver."
+"You can consult the ``Starter Guide'' chapter about Internet connections\n"
+"for details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection."
msgstr ""
-"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
-"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer omte gebruik sal "
-"dit outomaties installeer word.\n"
-"\n"
-"Indien u nie oor 'n SCSI-kaart, beskik nie of oor 'n ISA SCSI-kaart of 'n "
-"PCI SCSI-kaart beskik wat DrakX nie kan herken nie, sal u gevra word of daar "
-"enige SCSI-kaarte in diestelsel is. Indien daar geen is nie kliek op 'Nee', "
-"andersins op 'Ja'. U sal dan uit'n drywerlys kan kies.\n"
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes are discovered after this version of Mandrake Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
"\n"
-"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige "
-"spesifiekeopsies.\n"
-"U kan egter DrakX toelaat om self die hardeware te ondervra. DIt werk "
-"gewoonlik die beste.\n"
+"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
+"which appears whenever the installer automatically selects a package to\n"
+"resolve a dependency issue. Some packages have relationships between each\n"
+"other such that installation of a package requires that some other program\n"
+"is already installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
-"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die "
-"Windows-bedryfstelsel te bekom.\n"
-"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
+msgstr ""
-#: ../../help.pm_.c:781
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSes, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
+"It is now time to specify which programs you wish to install on your\n"
+"system. There are thousands of packages available for Mandrake Linux, and\n"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
"\n"
-"For Linux, there are a few possible options:\n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various containers, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' container installed.\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the applications that are in the workstation\n"
+"container.\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"
+" * \"Development\": if plan on using your machine for programming, choose\n"
+"the appropriate packages from the container.\n"
"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+" * \"Server\": if your machine is intended to be a server, select which of\n"
+"the more common services you wish to install on your machine.\n"
"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
+" * \"Graphical Environment\": this is where you will choose your preferred\n"
+"graphical environment. At least one must be selected if you want to have a\n"
+"graphical interface available.\n"
"\n"
-" 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"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
+" * \"With X\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server.\n"
"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a filesystem check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
+" * \"Truly minimal install\": will install the absolute minimum number of\n"
+"packages necessary to get a working Linux system. With this installation\n"
+"you will only have a command line interface. The total size of this\n"
+"installation is 65 megabytes.\n"
"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
msgstr ""
-#: ../../help.pm_.c:828
+#: ../../help.pm:1
+#, c-format
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"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
+"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM so it will eject\n"
+"the current CD and ask you to insert the correct CD as required."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Here are Listed the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Yaboot's main options are:\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-#: ../../help.pm_.c:860
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may (or may not), see the following entries:\n"
+"GNU/Linux is a multi-user system, meaning each user can have their own\n"
+"preferences, their own files and so on. You can read the ``Starter Guide''\n"
+"to learn more about multi-user systems. But unlike \"root\", which is the\n"
+"system administrator, the users you add at this point will not be\n"
+"authorized to change anything except their own files and their own\n"
+"configuration, protecting the system from unintentional or malicious\n"
+"changes that impact the system as a whole. You will have to create at least\n"
+"one regular user for yourself -- this is the account which you should use\n"
+"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
+"to do anything and everything, it may also be very dangerous! A mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, the worst that will happen is that you will lose\n"
+"some information, but not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you typed in and copy it to the \"User name\" field, which is the name this\n"
+"user will enter to log onto the system. If you like, you may override the\n"
+"default and change the username. The next step is to enter a password. From\n"
+"a security point of view, a non-privileged (regular) user password is not\n"
+"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
+"making it blank or too simple: after all, your files could be the ones at\n"
+"risk.\n"
+"\n"
+"Once you click on \"Accept user\", you can add other users. Add a user for\n"
+"each one of your friends: your father or your sister, for example. Click\n"
+"\"Next ->\" when you have finished adding users.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
+"When you are finished adding all users, you will be asked to choose a user\n"
+"that can automatically log into the system when the computer boots up. If\n"
+"you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Next\n"
+"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
+"to use this feature?\" box."
+msgstr ""
+"GNU/Linux is 'n multigebruikerstelsel en dit beteken dat elke gebruiker sy "
+"eie\n"
+"voorkeure kan stel, met sy eie lкers ens. U kan meer hieroor in die "
+"gebruikersgids\n"
+"lees. Maak andersins as 'root', die supergebruiker, kan gebruikers wat u "
+"hier byvoeg\n"
+"niks verander behalwe hul eie lкers en konfigurasie nie. U moet ten minste "
+"een gewone\n"
+"gebruiker vir u self skep. Hierdie gebruker is die een waaronder u moet "
+"inteken vir\n"
+"normale gebruik van die stelsel. Alhoewel dit baie gemaklik is om as 'root' "
+"in te teken vir\n"
+"daaglikse werk, is dit baie gevaarlik. 'n Eenvoudige fout kan u stelsel "
+"immobiliseer. 'n Fout\n"
+"wat as gewone gebruiker gemaak word sal net daardie gebruiker beпnvloed\n"
+"en nie hele stelsel nie.\n"
"\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. Consult the correpsonding chapter of the ``Starter\n"
-"Guide'' for more information on how to setup a new printer. The interface\n"
-"presented there is similar to the one used at installation time;\n"
+"Eers moet u u eie naam intik. Dit is nie verpligtend nie, want u kan eintlik "
+"enigiets intik as\n"
+"u wil. DrakX sal dan die eerste woord wat u ingetik het in die "
+"gebruikerskode inskrywingsveld\n"
+"plaas. U kan hier verander indien u wil. Dit is die gebruikerskode waarmee "
+"die gebruiker in die\n"
+"stelsel sal inteken. U moet dan ook 'n wagwoord hier invoeg. 'n Gewone "
+"gebruiker se wagwoord\n"
+"is nie so krities as diй van die supergebruiker (uit 'n sekuriteitsoogpunt) "
+"nie, maar daar is geen\n"
+"rede om agterlosig met u data te wees nie.\n"
"\n"
-" * \"Sound card\": if a sound card is detected on your system, it will be\n"
-"displayed here.\n"
"\n"
-" * \"TV card\": if a TV card is detected on your system, it will be\n"
-"displayed here.\n"
+"Indien u op Aanvaar kliek sal die gebruiker geskep word en kan u nog "
+"gebruikers byvoeg.\n"
+"U kan vir al u vriende gebruikerskodes skep of sommer een vir pa en ma ook. "
+"Wanneer u\n"
+"klaar is kliek op Klaar.\n"
"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
-msgstr ""
+"Kliek op die Gevorderd knoppie indien u die verstek instruksiedop vir die "
+"gebruiker wil verander.\n"
+"Dit is bash by verstek."
-#: ../../help.pm_.c:891
+#: ../../help.pm:1
+#, fuzzy, c-format
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!"
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
+"computer."
msgstr ""
+"Voordat u voortgaan, lees asb die lisensieterme noukeurig deur. Dit dek\n"
+"die hele Mandrake Lnux distirbusie, and indien u nie saamstem met al die\n"
+"terme daarin bevat nie, kliek om die Weier knoppie. Dit sal onmiddelik die\n"
+"installasie stop sit. Om met die installasie voort te gaan kliek op die "
+"Aanvaar\n"
+"knoppie."
-#: ../../help.pm_.c:896
-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"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../install2.pm:1
+#, c-format
+msgid "You must also format %s"
msgstr ""
-#: ../../install2.pm_.c:111
+#: ../../install2.pm:1
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3693,172 +2453,187 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:167
+#: ../../install_any.pm:1
#, c-format
-msgid "You must also format %s"
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"'n Fout het voorgekom - geen geldige toestelle om die nuwe lкerstelsels op "
+"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They don't have any known security\n"
-"issues, but some new could be found. In that case, you must make sure to "
-"upgrade\n"
-"as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
+msgid "Error reading file %s"
+msgstr "Fout met die les van lкer %s"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
+"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
+"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:471
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
+#: ../../install_any.pm:1
+#, c-format
+msgid "This floppy is not FAT formatted"
+msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:879
+#: ../../install_any.pm:1
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:883
-msgid "This floppy is not FAT formatted"
-msgstr "Hierdie floppie is nie in FAT-formaat nie"
+#: ../../install_any.pm:1
+#, c-format
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:895
+#: ../../install_any.pm:1
+#, c-format
msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
-"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#, c-format
-msgid "Error reading file %s"
-msgstr "Fout met die les van lкer %s"
+msgid "No"
+msgstr "Nee"
-#: ../../install_any.pm_.c:1040
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"'n Fout het voorgekom - geen geldige toestelle om die nuwe lкerstelsels op "
-"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Yes"
+msgstr "Ja"
-#: ../../install_interactive.pm_.c:21
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
-" U kan inligting hieroorvind by %s"
-#: ../../install_interactive.pm_.c:56
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"U moet 'n wortelpartisie definieer.\n"
-"Skep 'n partisie of kliek op 'n bestaande een.\n"
-"Kies dan Hegpunt en stel dit dan '/'."
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../install_interactive.pm_.c:61
-msgid "You must have a swap partition"
-msgstr "U moet oor 'n ruilpartisie beskik"
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System installation"
+msgstr "SILO installasie"
-#: ../../install_interactive.pm_.c:62
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"U het nie 'n ruilpartisie nie\n"
-"\n"
-"Wil u steeds voortgaan?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing down the network"
+msgstr "Netwerk op pad af"
-#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
-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:1
+#, c-format
+msgid "Bringing up the network"
+msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Gebruik beskikbare spasie"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partitions"
-msgstr "Gebruik bestaande partisies"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "I can't find any room for installing"
+msgstr "Ek kon geen plek vir installasie vind nie."
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Daar is geen bestaande partisies om te gebruik nie"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"U het nou partisie %s partisioneer.\n"
+"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Gebruik vir die Windows-partisie vir teruglus"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use fdisk"
+msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Watter partisie wil u vir Linux4Win gebruik?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Kies die groottes"
+#: ../../install_interactive.pm:1
+#, 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:115
-msgid "Root partition size in MB: "
-msgstr "Basispartisiegrootte in MB:"
+#: ../../install_interactive.pm:1
+#, c-format
+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:116
-msgid "Swap partition size in MB: "
-msgstr "Ruilpartisiegrootte in MB: "
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Erase entire disk"
+msgstr "Wis hele skyf"
-#: ../../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:1
+#, c-format
+msgid "Remove Windows(TM)"
+msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:129
-msgid "Which partition do you want to resize?"
-msgstr "Watter partisie se grootte wil u verander?"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to resize (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:131
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT-grootteverandering het gefaal: %s"
+
+#: ../../install_interactive.pm:1
+#, c-format
msgid "Resizing Windows partition"
msgstr "Windowslкerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
-"Fout: %s"
+msgid "Resizing"
+msgstr "Grootteverandering"
-#: ../../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:1
+#, c-format
+msgid "partition %s"
+msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:138
-#, fuzzy
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which size do you want to keep for Windows on"
+msgstr "Watter grootte wil u vir Windows behou?"
+
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
@@ -3879,323 +2654,165 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../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:149
+#: ../../install_interactive.pm:1
#, c-format
-msgid "partition %s"
-msgstr "partisie %s"
-
-#: ../../install_interactive.pm_.c:156
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT-grootteverandering het gefaal: %s"
-
-#: ../../install_interactive.pm_.c:171
msgid ""
-"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:177
-msgid "Erase entire disk"
-msgstr "Wis hele skyf"
-
-#: ../../install_interactive.pm_.c:177
-msgid "Remove Windows(TM)"
-msgstr "Verwyder Windows(TM)"
-
-#: ../../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: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:191
-msgid "Custom disk partitioning"
-msgstr "Gespesialiseerde skyfpartisionering"
+"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:195
-msgid "Use fdisk"
-msgstr "Gebruik fdisk"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Computing the size of the Windows partition"
+msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"U het nou partisie %s partisioneer.\n"
-"Wanneer u klaar is, stoor u veranderinge met 'w'."
-
-#: ../../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:243
-msgid "I can't find any room for installing"
-msgstr "Ek kon geen plek vir installasie vind nie."
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
+"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
+"Fout: %s"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Partisionering het misluk: %s"
-
-#: ../../install_interactive.pm_.c:260
-msgid "Bringing up the network"
-msgstr "Netwerk op pad op"
-
-#: ../../install_interactive.pm_.c:265
-msgid "Bringing down the network"
-msgstr "Netwerk op pad af"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
-"nie. Gaan op u eie risiko voort."
+msgid "Which partition do you want to resize?"
+msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_steps.pm_.c:211
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikaat hegpunt %s"
+msgid "Use the free space on the Windows partition"
+msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_steps.pm_.c:380
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
-"Sekere belangrike pakkette het nie korrek geпnstalleer nie.\n"
-"Уf die CDROM-aandrywer уf die CD is foutief.\n"
-"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
+"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
+"spasie nie) te gebruik nie"
-#: ../../install_steps.pm_.c:450
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Welcome to %s"
-msgstr "Welkom by %s"
-
-#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
-msgid "No floppy drive available"
-msgstr "Geen sagteskyaandrywer beskikbaar nie"
+msgid "Swap partition size in MB: "
+msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Gaan stap '%s' binne\n"
-
-#: ../../install_steps_gtk.pm_.c:146
-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 "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme ondervind met "
-"die installering\n"
-"van Mandrake Linux. In so 'n geval probeer eerder die teksinstallasie. "
-"Daarvoor moet u\n"
-"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
-"instruksielyn intik."
-
-#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
-msgid "Install Class"
-msgstr "Installasieklas"
-
-#: ../../install_steps_gtk.pm_.c:160
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Kies asb. een van die volgende installasieklasse:"
+msgid "Root partition size in MB: "
+msgstr "Basispartisiegrootte in MB:"
-#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
-msgid "Package Group Selection"
-msgstr "Kies pakketgroepe"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Choose the sizes"
+msgstr "Kies die groottes"
-#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
-msgid "Individual package selection"
-msgstr "Individuele pakketseleksie"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Totale grootte: %d / %d MB"
+msgid "Use the Windows partition for loopback"
+msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_steps_gtk.pm_.c:334
-msgid "Bad package"
-msgstr "Foutiewe pakket"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Name: %s\n"
-msgstr "Naam: %s\n"
+msgid "Use existing partitions"
+msgstr "Gebruik bestaande partisies"
-#: ../../install_steps_gtk.pm_.c:336
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Version: %s\n"
-msgstr "Weergawe: %s\n"
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_steps_gtk.pm_.c:337
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Groote: %d KB\n"
+msgid "Use free space"
+msgstr "Gebruik beskikbare spasie"
-#: ../../install_steps_gtk.pm_.c:338
+#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
-msgid "Importance: %s\n"
-msgstr "Belangrikheid: %s\n"
+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_steps_gtk.pm_.c:360
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
-"beskikbaar is nie"
-
-#
-#: ../../install_steps_gtk.pm_.c:365
-msgid "The following packages are going to be installed"
-msgstr "Die volgende pakkette gaan installeer word"
-
-#
-#: ../../install_steps_gtk.pm_.c:366
-msgid "The following packages are going to be removed"
-msgstr "Dei volgende pakkette gaan verwyder word"
-
-#: ../../install_steps_gtk.pm_.c:378
-msgid "You can't select/unselect this package"
-msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-
-#: ../../install_steps_gtk.pm_.c:390
-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:392
-msgid "You can't unselect this package. It is already installed"
-msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geпnstalleer"
+"U het nie 'n ruilpartisie nie\n"
+"\n"
+"Wil u steeds voortgaan?"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-"Hierdie pakket moet opgradeer word\n"
-"Is u seker u wil dit deselekteer?"
-
-#: ../../install_steps_gtk.pm_.c:398
-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:403
-msgid "Show automatically selected packages"
-msgstr "Wys outogeselekteerde pakkette."
-
-#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#: ../../standalone/drakbackup_.c:4211
-msgid "Install"
-msgstr "Installasie"
-
-#: ../../install_steps_gtk.pm_.c:407
-msgid "Load/Save on floppy"
-msgstr "Laai/Stoor op floppie"
-
-#: ../../install_steps_gtk.pm_.c:408
-msgid "Updating package selection"
-msgstr "Pakketseleksie word opgedateer"
-
-#: ../../install_steps_gtk.pm_.c:413
-msgid "Minimal install"
-msgstr "Minimale installasie"
-
-#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
-msgid "Choose the packages you want to install"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
-msgid "Installing"
-msgstr "Besig met installasie"
-
-#: ../../install_steps_gtk.pm_.c:450
-msgid "Estimating"
-msgstr "Skatting"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "Time remaining "
-msgstr "Tyd oor "
-
-#: ../../install_steps_gtk.pm_.c:469
-msgid "Please wait, preparing installation..."
-msgstr "Wag asb. installasie word voorberei"
-
-#: ../../install_steps_gtk.pm_.c:551
-#, c-format
-msgid "%d packages"
-msgstr "%d pakkette"
+"U moet 'n wortelpartisie definieer.\n"
+"Skep 'n partisie of kliek op 'n bestaande een.\n"
+"Kies dan Hegpunt en stel dit dan '/'."
-#: ../../install_steps_gtk.pm_.c:556
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Installing package %s"
-msgstr "Installeer pakket %s"
-
-#
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-#: ../../standalone/drakautoinst_.c:197
-msgid "Accept"
-msgstr "Aanvaar "
-
-#
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-msgid "Refuse"
-msgstr "Weier"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
+" U kan inligting hieroorvind by %s"
-#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
+#: ../../install_messages.pm:1
#, c-format
msgid ""
-"Change your Cd-Rom!\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+"\n"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Verander u CDROM!\n"
+"Geluk, installasie is afgehandel.\n"
+"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
"\n"
-"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
-"nie\n"
-"hieroor beskik nie, druk Kanselleer om installasies vanaf diй CDROM te vermy."
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
-#: ../../install_steps_interactive.pm_.c:804
-#: ../../install_steps_interactive.pm_.c:808
-msgid "Go on anyway?"
-msgstr "Gaan steeds voort?"
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
-msgid "There was an error ordering packages:"
-msgstr "Daar was 'n fout met pakkette:"
+"\n"
+"Vir lapinligting oor hierdie vrystelling vanMandrake Linux,\n"
+"bekyk die errata beskikbaar op\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
+"hoofstuk in die Offisiлle Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
-msgid "There was an error installing packages:"
-msgstr "Daar was 'n fout met die installasie van die pakkette:"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:10
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"\n"
"Warning\n"
@@ -4227,20 +2844,8 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "'n Fout het voorgekom"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Wil u die werklik die drukker verwyder?"
-
-#: ../../install_steps_interactive.pm_.c:112
-msgid "License agreement"
-msgstr "Lisensieooreenkoms"
-
-#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"Introduction\n"
"\n"
@@ -4361,3291 +2966,7460 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:197
-msgid "Are you sure you refuse the licence?"
+#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Gaan stap '%s' binne\n"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Go on anyway?"
+msgstr "Gaan steeds voort?"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error installing packages:"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Daar was 'n fout met pakkette:"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
+"Verander u CDROM!\n"
+"\n"
+"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
+"nie\n"
+"hieroor beskik nie, druk Kanselleer om installasies vanaf diй CDROM te vermy."
-#: ../../install_steps_interactive.pm_.c:217
-#: ../../install_steps_interactive.pm_.c:995
-#: ../../standalone/keyboarddrake_.c:25
-msgid "Keyboard"
-msgstr "Sleutelbord"
+#
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Refuse"
+msgstr "Weier"
-#: ../../install_steps_interactive.pm_.c:218
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Wat is u sleutelborduitleg?"
+#
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Accept"
+msgstr "Aanvaar "
-#: ../../install_steps_interactive.pm_.c:219
-msgid "Here is the full list of keyboards available"
-msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Installing package %s"
+msgstr "Installeer pakket %s"
-#: ../../install_steps_interactive.pm_.c:237
-msgid "Which installation class do you want?"
-msgstr "Watter installasieklas verlang u?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "%d packages"
+msgstr "%d pakkette"
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Install/Update"
-msgstr "Installeer/Opgradeer"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Detail"
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Is this an install or an update?"
-msgstr "Is hierdie 'n installasie of opgradering?"
+#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Details"
+msgstr "Detail"
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Recommended"
-msgstr "Aanbevole"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Please wait, preparing installation..."
+msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_interactive.pm_.c:253
-#: ../../install_steps_interactive.pm_.c:256
-msgid "Expert"
-msgstr "Kundige"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Time remaining "
+msgstr "Tyd oor "
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade"
-msgstr "Opgradeer"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Estimating"
+msgstr "Skatting"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Pakketseleksie word opgedateer"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing"
+msgstr "Besig met installasie"
-#: ../../install_steps_interactive.pm_.c:282
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Wat is u muistoestel?"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
-msgid "Mouse Port"
-msgstr "Muispoort"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Minimal install"
+msgstr "Minimale installasie"
-#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Aan watter seriaalpoort is u muis gekoppel?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Updating package selection"
+msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:297
-msgid "Buttons emulation"
-msgstr "Knoppie-emulasie"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Load/Save on floppy"
+msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:299
-msgid "Button 2 Emulation"
-msgstr "Knop-2 Emulasie"
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "<- Previous"
+msgstr "<- Vorige"
-#: ../../install_steps_interactive.pm_.c:300
-msgid "Button 3 Emulation"
-msgstr "Knop-3 emulasie"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Install"
+msgstr "Installasie"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "Configuring PCMCIA cards..."
-msgstr "Stel PCMCIA op..."
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_interactive.pm_.c:321
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+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_interactive.pm_.c:328
-msgid "Configuring IDE"
-msgstr "IDE word opgestel"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"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_interactive.pm_.c:328
-msgid "IDE"
-msgstr "IDE"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It is already installed"
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geпnstalleer"
-#: ../../install_steps_interactive.pm_.c:345
-msgid "No partition available"
-msgstr "geen beskikbare partisies"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+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_interactive.pm_.c:348
-msgid "Scanning partitions to find mount points"
-msgstr "Hegpunte vir partisies word nou gesoek"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't select/unselect this package"
+msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_interactive.pm_.c:356
-msgid "Choose the mount points"
-msgstr "Kies die hegpunte"
+#
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_gtk.pm:1
+#, c-format
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
-"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
-"herlaai."
+"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
+"beskikbaar is nie"
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Geen wortellкerstelsel gevind nie"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Basispartisie"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Groote: %d KB\n"
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Wat is die basispartisie (/) van u stelsel?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Version: %s\n"
+msgstr "Weergawe: %s\n"
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Name: %s\n"
+msgstr "Naam: %s\n"
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Kies die partisies om te formatteer"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Bad package"
+msgstr "Foutiewe pakket"
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Toets vir foutiewe areas?"
+#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Other"
+msgstr "Ander"
-#: ../../install_steps_interactive.pm_.c:463
-msgid "Formatting partitions"
-msgstr "Partisies word formateer"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Lкer %s word geskep en formatteer"
+msgid "Next ->"
+msgstr "Volgende ->"
-#: ../../install_steps_interactive.pm_.c:470
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
+msgid "Individual package selection"
+msgstr "Individuele pakketseleksie"
+
+#: ../../install_steps_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#, c-format
+msgid "Help"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:472
-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_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package Group Selection"
+msgstr "Kies pakketgroepe"
-#: ../../install_steps_interactive.pm_.c:479
-#, fuzzy
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Soek vir beskikbare pakkette"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+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 "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme ondervind met "
+"die installering\n"
+"van Mandrake Linux. In so 'n geval probeer eerder die teksinstallasie. "
+"Daarvoor moet u\n"
+"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
+"instruksielyn intik."
-#: ../../install_steps_interactive.pm_.c:480
-msgid "Looking for available packages..."
-msgstr "Soek vir beskikbare pakkette"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save packages selection"
+msgstr "Stoor pakketseleksie"
-#: ../../install_steps_interactive.pm_.c:483
-#, fuzzy
-msgid "Looking at packages already installed..."
-msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geпnstalleer"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automated"
+msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:487
-msgid "Finding packages to upgrade..."
-msgstr "Soek vir pakkette om op te gradeer."
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Replay"
+msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:505
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
msgstr ""
-"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Skep outoinstallasieskyf"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Reboot"
+msgstr "Basis"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
-"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
+"Bepaalde stappe is nie afgehandel nie.\n"
+"\n"
+"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Load from floppy"
-msgstr "Laai vanaf floppie"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Save on floppy"
-msgstr "Stoor op floppie"
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Sit 'n leл floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:547
-msgid "Loading from floppy"
-msgstr "Oplaai vanaf floppie"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:547
-msgid "Package selection"
-msgstr "Pakketkeuse"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:552
-msgid "Insert a floppy containing package selection"
-msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing bootloader"
+msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:634
-msgid "Selected size is larger than available space"
-msgstr "Geselekteerde grootte is groter as beskikbare spasie."
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
+"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:649
-#, fuzzy
-msgid "Type of install"
-msgstr "Kies pakket om te installeer"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:650
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:653
-#, fuzzy
-msgid "With X"
-msgstr "Wag"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:655
-msgid "With basic documentation (recommended!)"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:656
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Domain Admin User Name"
+msgstr "Domeinnaam"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Windows Domain"
+msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:741
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication Windows Domain"
+msgstr "LDAP-magtiging"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
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."
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
-"Indien u oor al die gelyste CD's beskik, kliek OK.\n"
-"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:746
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CDROM getiteld \"%s\""
+msgid "NIS Server"
+msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Preparing installation"
-msgstr "Berei installasie voor"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Domain"
+msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
+msgid "Authentication NIS"
+msgstr "NIS-magtiging"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS"
+msgstr "NIS"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP Server"
+msgstr "LDAP-bediener"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP Base dn"
+msgstr "LDAP Basis-dn"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Authentication LDAP"
+msgstr "LDAP-magtiging"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP"
+msgstr "KDAP"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Local files"
+msgstr "Plaaslike lкers"
+
+#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#, c-format
+msgid "Authentication"
+msgstr "Magtiging"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-"Installeer nou pakket %s\n"
-"%d%%"
+"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:822
-msgid "Post-install configuration"
-msgstr "Postinstallasiekonfigurasie"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No password"
+msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+msgid "Set root password"
+msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:834
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:861
-msgid ""
-"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"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:876
-#, fuzzy
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "Spieлl word gekontak vir die lys van pakkette"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services"
+msgstr "Dienste"
-#: ../../install_steps_interactive.pm_.c:881
-msgid "Choose a mirror from which to get the packages"
-msgstr "Kies 'n spieлl waar die pakkette verkry kan word"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "System"
+msgstr "Stelselmode"
-#: ../../install_steps_interactive.pm_.c:890
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Spieлl word gekontak vir die lys van pakkette"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Bootloader"
+msgstr "Herlaaistelsel om te gebruik"
-#: ../../install_steps_interactive.pm_.c:918
-msgid "Which is your timezone?"
-msgstr "Wat is u tydsone?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Boot"
+msgstr "Basis"
-#: ../../install_steps_interactive.pm_.c:923
-msgid "Hardware clock set to GMT"
-msgstr "Hardewareklok gestel vir GMT"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "disabled"
+msgstr "deaktiveer"
-#: ../../install_steps_interactive.pm_.c:924
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Outotydsinkronisasie met NTP"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "activated"
+msgstr "Aktiveer nou dadelik"
-#: ../../install_steps_interactive.pm_.c:931
-msgid "NTP Server"
-msgstr "NTP-bediener"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Firewall"
+msgstr "Vuurmuur/Netwerkroteerder"
-#
-#: ../../install_steps_interactive.pm_.c:965
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Remote CUPS server"
-msgstr "Verwyder CUPS-bediener"
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Security"
+msgstr "Sekuriteit"
-#: ../../install_steps_interactive.pm_.c:966
-msgid "No printer"
-msgstr "Geen drukker"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Security Level"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../install_steps_interactive.pm_.c:982
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Beskik u oor nog?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "herkonfigureer"
-#: ../../install_steps_interactive.pm_.c:984
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Network"
+msgstr "Netwerkkoppelvlak"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "Netwerkkoppelvlak"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "X met herlaai"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:986
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "TV card"
+msgstr "TV-kaaer"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Opsomming"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Beskik u oor nog?"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Sound card"
+msgstr "Klankkaart"
+
+#
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Remote CUPS server"
+msgstr "Verwyder CUPS-bediener"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No printer"
+msgstr "Geen drukker"
+
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer"
+msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:994
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#, c-format
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:996
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:997
-#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
-msgid "Printer"
-msgstr "Drukker"
-
-#: ../../install_steps_interactive.pm_.c:999
-msgid "ISDN card"
-msgstr "ISDN-kaart"
+#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Keyboard"
+msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:1009
-msgid "Sound card"
-msgstr "Klankkaart"
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Summary"
+msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1012
-msgid "TV card"
-msgstr "TV-kaaer"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NTP Server"
+msgstr "NTP-bediener"
-#: ../../install_steps_interactive.pm_.c:1055
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1084
-msgid "LDAP"
-msgstr "KDAP"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:1056
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1093
-msgid "NIS"
-msgstr "NIS"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware clock set to GMT"
+msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:1057
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1107
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS-domein"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:1058
-#: ../../install_steps_interactive.pm_.c:1080
-msgid "Local files"
-msgstr "Plaaslike lкers"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Spieлl word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Kies 'root' se wagwoord"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Kies 'n spieлl waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:1069
-msgid "No password"
-msgstr "Geen wagwoord"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Spieлl word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\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 ""
-"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
-#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
-msgid "Authentication"
-msgstr "Magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1088
-msgid "Authentication LDAP"
-msgstr "LDAP-magtiging"
+#: ../../install_steps_interactive.pm:1
+#, 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:1089
-msgid "LDAP Base dn"
-msgstr "LDAP Basis-dn"
+#: ../../install_steps_interactive.pm:1
+#, 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:1090
-msgid "LDAP Server"
-msgstr "LDAP-bediener"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Post-install configuration"
+msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:1096
-msgid "Authentication NIS"
-msgstr "NIS-magtiging"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Installing package %s\n"
+"%d%%"
+msgstr ""
+"Installeer nou pakket %s\n"
+"%d%%"
-#: ../../install_steps_interactive.pm_.c:1097
-msgid "NIS Domain"
-msgstr "NIS-domein"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing installation"
+msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "NIS Server"
-msgstr "NIS-bediener"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
+"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 ""
+"Indien u oor al die gelyste CD's beskik, kliek OK.\n"
+"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:1106
-#, fuzzy
-msgid "Authentication Windows Domain"
-msgstr "LDAP-magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1108
-#, fuzzy
-msgid "Domain Admin User Name"
-msgstr "Domeinnaam"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1109
-msgid "Domain Admin Password"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1144
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "With X"
+msgstr "Wag"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
-"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
-"u nie SILO op u stelsel wil installeer nie, 'n ander bedryfstelsel SILO\n"
-"verwyder of SILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
-"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
-"ernstige stelselfalings te herstel.\n"
-"\n"
-"Indien u 'n herlaaiskyf wil maak,\n"
-"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "First floppy drive"
-msgstr "Eerste sagteskyfaandrywer"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:1161
-msgid "Second floppy drive"
-msgstr "Tweede sagteskyfaandrywer"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:1162
-#: ../../printer/printerdrake.pm_.c:2397
-msgid "Skip"
-msgstr "Mis hierdie stap"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Insert a floppy containing package selection"
+msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Loading from floppy"
+msgstr "Oplaai vanaf floppie"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package selection"
+msgstr "Pakketkeuse"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save on floppy"
+msgstr "Stoor op floppie"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Load from floppy"
+msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:1167
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
-"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
-"u nie LILO (of Grub) op u stelsel wil installeer nie, 'n ander bedryfstelsel "
-"LILO\n"
-"verwyder of LILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
-"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
-"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
-"%s"
+"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
+"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:1173
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
+"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:1181
-msgid "Sorry, no floppy drive available"
-msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-
-#: ../../install_steps_interactive.pm_.c:1185
-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:1
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Sit 'n skyf in aandrywer %s"
+msgid "Looking at packages already installed..."
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geпnstalleer"
-#: ../../install_steps_interactive.pm_.c:1192
-msgid "Creating bootdisk..."
-msgstr "Herlaaiskyf word geskryf"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:1199
-msgid "Preparing bootloader..."
-msgstr "Herlaaistelsel word voorberei"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:1
+#, c-format
msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1216
-msgid "Do you want to use aboot?"
-msgstr "Wil u aboot gebruik?"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Kies die partisies om te formatteer"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:1
+#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
-"word die eerste partisie vernietig?"
+"Geen beskikbare 1MB herlaaipartisie nie! Installasie sal voortgaan, maar u "
+"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
+"herlaai."
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Installing bootloader"
-msgstr "Herlaaistelselinstallasie"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the mount points"
+msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:1232
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Hegpunte vir partisies word nou gesoek"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "geen beskikbare partisies"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE word opgestel"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring PCMCIA cards..."
+msgstr "Stel PCMCIA op..."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 3 Emulation"
+msgstr "Knop-3 emulasie"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 2 Emulation"
+msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:1240
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Buttons emulation"
+msgstr "Knoppie-emulasie"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose which serial port your mouse is connected to."
+msgstr "Aan watter seriaalpoort is u muis gekoppel?"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Mouse Port"
+msgstr "Muispoort"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your type of mouse."
+msgstr "Wat is u muistoestel?"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade"
+msgstr "Opgradeer"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Opgradeer"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Is hierdie 'n installasie of opgradering?"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Installeer/Opgradeer"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Here is the full list of keyboards available"
+msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Wat is u sleutelborduitleg?"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "License agreement"
+msgstr "Lisensieooreenkoms"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "default:LTR"
+msgstr "verstek"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "An error occurred"
+msgstr "'n Fout het voorgekom"
+
+#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
+" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
-#: ../../install_steps_interactive.pm_.c:1274
-#: ../../standalone/drakautoinst_.c:76
+#: ../../install_steps_newt.pm:1
#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Sit 'n leл floppie in aandrywer %s"
+msgid "Mandrake Linux Installation %s"
+msgstr "Mandrake Linux Installasie %s"
-#: ../../install_steps_interactive.pm_.c:1278
-msgid "Creating auto install floppy..."
-msgstr "Outoinstallasieskyf word geskep."
+#: ../../install_steps.pm:1
+#, c-format
+msgid "No floppy drive available"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1289
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Welcome to %s"
+msgstr "Welkom by %s"
+
+#: ../../install_steps.pm:1
+#, c-format
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
+"\"\n"
msgstr ""
-"Bepaalde stappe is nie afgehandel nie.\n"
-"\n"
-"Wil u werklik nou aborteer?"
+"Sekere belangrike pakkette het nie korrek geпnstalleer nie.\n"
+"Уf die CDROM-aandrywer уf die CD is foutief.\n"
+"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
+"rpm\"\n"
-#: ../../install_steps_interactive.pm_.c:1300
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duplikaat hegpunt %s"
+
+#: ../../install_steps.pm:1
#, c-format
msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Geluk, installasie is afgehandel.\n"
-"Verwyder die herlaaimedium en druk 'enter' om te herlaai.\n"
-"\n"
-"\n"
-"Vir lapinligting oor hierdie vrystelling vanMandrake Linux,\n"
-"bekyk die errata beskikbaar op\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
-"hoofstuk in die Offisiлle Liux-Mandrake Gebruikersgids."
+"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
+"nie. Gaan op u eie risiko voort."
+
+#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
+#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
+#, c-format
+msgid "Ok"
+msgstr "OK"
+
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive/newt.pm:1
+#, c-format
+msgid "Finish"
+msgstr "Finnies"
-#: ../../install_steps_interactive.pm_.c:1313
-msgid "http://www.mandrakelinux.com/en/90errata.php3"
+#: ../../interactive.pm:1 ../../standalone/draksec:1
+#, c-format
+msgid "Basic"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1318
-msgid "Generate auto install floppy"
-msgstr "Skep outoinstallasieskyf"
+#: ../../interactive.pm:1
+#, c-format
+msgid "Advanced"
+msgstr "Gevorderd"
-#: ../../install_steps_interactive.pm_.c:1320
+#
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, fuzzy, c-format
+msgid "Remove"
+msgstr "Verwyder drukker"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, c-format
+msgid "Modify"
+msgstr "Verander"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "Add"
+msgstr "Voeg by"
+
+#: ../../interactive.pm:1
+#, c-format
+msgid "Choose a file"
+msgstr "Kies 'n lкer"
+
+#: ../../keyboard.pm:1
+#, c-format
msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Automated"
-msgstr "Outomaties"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Replay"
-msgstr "Herspeel"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1328
-msgid "Save packages selection"
-msgstr "Stoor pakketseleksie"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../install_steps_newt.pm_.c:20
+#: ../../keyboard.pm:1
#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Mandrake Linux Installasie %s"
+msgid "Alt and Shift keys simultaneously"
+msgstr ""
-#. -PO This string must fit in a 80-char wide text screen
-#: ../../install_steps_newt.pm_.c:33
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu is weg"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "CapsLock key"
+msgstr ""
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Kies 'n lкer"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../interactive.pm_.c:318
-msgid "Advanced"
-msgstr "Gevorderd"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right Alt key"
+msgstr ""
-#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
-msgid "Basic"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Yugoslavian (latin)"
+msgstr "Jugoslaavs (latynse uitleg)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Viлtnamees \"nommerry\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard (international)"
+msgstr "VSA internasionale sleutelbord"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard"
+msgstr "VSA sleutelbord"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "UK keyboard"
+msgstr "VK sleutelbord"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ukrainian"
+msgstr "Ukranies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Turks (moderne \"Q\" modem)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Turks (tradisionele \"F\" model)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tajik keyboard"
+msgstr "Tajik sleutelbord"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Thai keyboard"
+msgstr "Thai sleutelbord"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Tamil (Typewriter-layout)"
+msgstr "Armenies (tikmasjien)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tamil (ISCII-layout)"
msgstr ""
-#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
-#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
-msgid "<- Previous"
-msgstr "<- Vorige"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Serbian (cyrillic)"
+msgstr "Serwies (Kirillies)"
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
-#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
-#, fuzzy
-msgid "Next"
-msgstr "Teks"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTY)"
+msgstr "Slovaaks (QWERTY)"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
-msgid "Bad choice, try again\n"
-msgstr "Swak keuse, probeer weer\n"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovaaks (QWERTZ)"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
+#: ../../keyboard.pm:1
#, c-format
-msgid "Your choice? (default %s) "
-msgstr "U keuse? (verstek %s) "
+msgid "Slovenian"
+msgstr "Sloveens"
-#: ../../interactive/stdio.pm_.c:54
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+msgid "Swedish"
+msgstr "Sweeds"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian (Yawerty)"
+msgstr "Russue (Yawerty)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian"
+msgstr "Russies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Romanian (qwerty)"
+msgstr "Romanies (QWERTY)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Romanian (qwertz)"
+msgstr "Romanies (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Canadian (Quebec)"
+msgstr "Kanadees (Quebec)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Portuguese"
+msgstr "Portugees"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwertz layout)"
+msgstr "Pools (QWERTZ uitleg)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwerty layout)"
+msgstr "Pools (QWERTY uitleg)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Norwegian"
+msgstr "Norweegs"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dutch"
+msgstr "Nederlands"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (US)"
msgstr ""
-#: ../../interactive/stdio.pm_.c:70
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "U keuse? (verstek %s) "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (UK)"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:95
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Opsies: %s"
+msgid "Mongolian (cyrillic)"
+msgstr "Serwies (Kirillies)"
-#: ../../interactive/stdio.pm_.c:96
-#, fuzzy
-msgid "Do you want to click on this button?"
-msgstr "Wil u aboot gebruik?"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:105
-msgid " enter `void' for void entry"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Macedonian"
+msgstr "Masedonies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Malayalam"
msgstr ""
-#: ../../interactive/stdio.pm_.c:105
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Latvian"
+msgstr "Latvies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Lituanies \"foneties\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Lituanies \"nommerry\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (new)"
+msgstr "Lituanies AZERTY (nuut)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (old)"
+msgstr "Lituanies AZERTY (oud)"
+
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "U keuse? (verstek %s) "
+msgid "Laotian"
+msgstr "Latvies"
-#: ../../interactive/stdio.pm_.c:123
+#: ../../keyboard.pm:1
#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
+msgid "Latin American"
+msgstr "Latyns-Amerikaans"
-#: ../../interactive/stdio.pm_.c:126
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Korean keyboard"
+msgstr "Koreaanse sleutelbord"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Japanese 106 keys"
+msgstr "Japanees 106 sleutels"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Inuktitut"
msgstr ""
-#: ../../interactive/stdio.pm_.c:139
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+msgid "Italian"
+msgstr "Italiaans"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Icelandic"
+msgstr "Yslandies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Iranian"
+msgstr "Iranies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli (Phonetic)"
+msgstr "Israelies (Foneties)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli"
+msgstr "Israelies"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Croatian"
+msgstr "Kroaties"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Hungarian"
+msgstr "Hongaars"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gurmukhi"
msgstr ""
-#: ../../interactive/stdio.pm_.c:146
-msgid "Re-submit"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
-msgid "Czech (QWERTZ)"
-msgstr "Tseggies (QWERTZ)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Greek"
+msgstr "Grieks"
-#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
-msgid "German"
-msgstr "Duits"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:155
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
-msgid "Spanish"
-msgstr "Spaans"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "French"
+msgstr "Frans"
-#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+#: ../../keyboard.pm:1
+#, c-format
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
-msgid "French"
-msgstr "Frans"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Spanish"
+msgstr "Spaans"
-#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
-msgid "Norwegian"
-msgstr "Norweegs"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Estonian"
+msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:160
-msgid "Polish"
-msgstr "Pools"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
-msgid "Russian"
-msgstr "Russies"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
-msgid "Swedish"
-msgstr "Sweeds"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (US)"
+msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
-msgid "UK keyboard"
-msgstr "VK sleutelbord"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Danish"
+msgstr "Deens"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
-msgid "US keyboard"
-msgstr "VSA sleutelbord"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Devanagari"
+msgstr ""
-#: ../../keyboard.pm_.c:167
-msgid "Albanian"
-msgstr "Albanies"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German (no dead keys)"
+msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:168
-msgid "Armenian (old)"
-msgstr "Armenies (oud)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German"
+msgstr "Duits"
-#: ../../keyboard.pm_.c:169
-msgid "Armenian (typewriter)"
-msgstr "Armenies (tikmasjien)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTY)"
+msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:170
-msgid "Armenian (phonetic)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTZ)"
+msgstr "Tseggies (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (French layout)"
+msgstr "Switsers (Franse uitleg)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (German layout)"
+msgstr "Switsers (Duitse uitleg)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belarusian"
+msgstr "Belarussies"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bosnian"
+msgstr "Estoniaans"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Brazilian (ABNT-2)"
+msgstr "Brasiliaans (ABNT-2)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (BDS)"
+msgstr "Bulgaars"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:175
-msgid "Azerbaidjani (latin)"
-msgstr "Azerbaidjani (latyns)"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bengali"
+msgstr "Aktiveer"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm:1
+#, c-format
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:178
-#, fuzzy
-msgid "Bengali"
-msgstr "Aktiveer"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:179
-#, fuzzy
-msgid "Bulgarian (phonetic)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:180
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulgaars"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (typewriter)"
+msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:181
-msgid "Brazilian (ABNT-2)"
-msgstr "Brasiliaans (ABNT-2)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (old)"
+msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:184
-#, fuzzy
-msgid "Bosnian"
-msgstr "Estoniaans"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Albanian"
+msgstr "Albanies"
-#: ../../keyboard.pm_.c:185
-msgid "Belarusian"
-msgstr "Belarussies"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish"
+msgstr "Pools"
-#: ../../keyboard.pm_.c:186
-msgid "Swiss (German layout)"
-msgstr "Switsers (Duitse uitleg)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:187
-msgid "Swiss (French layout)"
-msgstr "Switsers (Franse uitleg)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Zimbabwe"
+msgstr "moontlik"
-#: ../../keyboard.pm_.c:189
-msgid "Czech (QWERTY)"
-msgstr "Tseggies (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zambia"
+msgstr ""
-#: ../../keyboard.pm_.c:191
-msgid "German (no dead keys)"
-msgstr "Duits (geen dooie sleutels)"
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "South Africa"
+msgstr ""
-#: ../../keyboard.pm_.c:192
-msgid "Devanagari"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Serbia"
+msgstr "seriaal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mayotte"
msgstr ""
-#: ../../keyboard.pm_.c:193
-msgid "Danish"
-msgstr "Deens"
+#: ../../lang.pm:1
+#, c-format
+msgid "Yemen"
+msgstr ""
-#: ../../keyboard.pm_.c:194
-msgid "Dvorak (US)"
-msgstr "Dvorak (VSA)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Samoa"
+msgstr ""
-#: ../../keyboard.pm_.c:195
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norweegs)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Wallis and Futuna"
+msgstr ""
-#: ../../keyboard.pm_.c:196
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (VSA)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Vanuatu"
+msgstr ""
-#: ../../keyboard.pm_.c:197
-msgid "Estonian"
-msgstr "Estoniaans"
+#: ../../lang.pm:1
+#, c-format
+msgid "Vietnam"
+msgstr ""
-#: ../../keyboard.pm_.c:201
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Georgies (Russiese uitleg)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (U.S.)"
+msgstr ""
-#: ../../keyboard.pm_.c:202
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Georgies (Latynse uitleg)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (British)"
+msgstr ""
-#: ../../keyboard.pm_.c:203
-msgid "Greek"
-msgstr "Grieks"
+#: ../../lang.pm:1
+#, c-format
+msgid "Venezuela"
+msgstr ""
-#: ../../keyboard.pm_.c:204
-msgid "Gujarati"
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Vincent and the Grenadines"
msgstr ""
-#: ../../keyboard.pm_.c:205
-msgid "Gurmukhi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Vatican"
+msgstr "Latvies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uzbekistan"
msgstr ""
-#: ../../keyboard.pm_.c:206
-msgid "Hungarian"
-msgstr "Hongaars"
+#: ../../lang.pm:1
+#, c-format
+msgid "Uruguay"
+msgstr ""
-#: ../../keyboard.pm_.c:207
-msgid "Croatian"
-msgstr "Kroaties"
+#: ../../lang.pm:1
+#, c-format
+msgid "United States Minor Outlying Islands"
+msgstr ""
-#: ../../keyboard.pm_.c:208
-msgid "Israeli"
-msgstr "Israelies"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Uganda"
+msgstr "Opgradeer"
-#: ../../keyboard.pm_.c:209
-msgid "Israeli (Phonetic)"
-msgstr "Israelies (Foneties)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Ukraine"
+msgstr "Ukranies"
-#: ../../keyboard.pm_.c:210
-msgid "Iranian"
-msgstr "Iranies"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tanzania"
+msgstr ""
-#: ../../keyboard.pm_.c:211
-msgid "Icelandic"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Taiwan"
+msgstr "Latvies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tuvalu"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkey"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tonga"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tunisia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkmenistan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "East Timor"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tokelau"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tajikistan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Thailand"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Togo"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Southern Territories"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Chad"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Swaziland"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Syria"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "El Salvador"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Suriname"
+msgstr "Drukkernaam:"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Somalia"
+msgstr "NIS-domein"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Senegal"
+msgstr "Aktiveer"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "San Marino"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sierra Leone"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Slovakia"
+msgstr "Sloveens"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Svalbard and Jan Mayen Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Slovenia"
+msgstr "Sloveens"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Helena"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Singapore"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Sudan"
+msgstr "SunOS"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Seychelles"
+msgstr "Dop"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Solomon Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saudi Arabia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Rwanda"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Russia"
+msgstr "Russies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Romania"
+msgstr "NIS-domein"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Reunion"
+msgstr "Resolusie"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Qatar"
+msgstr "Toestand"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Palau"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Paraguay"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Portugal"
+msgstr "Poort"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Palestine"
+msgstr "Stoor pakketseleksie"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Puerto Rico"
+msgstr "Protokol"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Pitcairn"
+msgstr "Druk"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Poland"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:212
-msgid "Italian"
-msgstr "Italiaans"
+#: ../../lang.pm:1
+#, c-format
+msgid "Pakistan"
+msgstr ""
-#: ../../keyboard.pm_.c:213
-msgid "Inuktitut"
+#: ../../lang.pm:1
+#, c-format
+msgid "Philippines"
msgstr ""
-#: ../../keyboard.pm_.c:214
-msgid "Japanese 106 keys"
-msgstr "Japanees 106 sleutels"
+#: ../../lang.pm:1
+#, c-format
+msgid "Papua New Guinea"
+msgstr ""
-#: ../../keyboard.pm_.c:217
-msgid "Korean keyboard"
-msgstr "Koreaanse sleutelbord"
+#: ../../lang.pm:1
+#, c-format
+msgid "French Polynesia"
+msgstr ""
-#: ../../keyboard.pm_.c:218
-msgid "Latin American"
-msgstr "Latyns-Amerikaans"
+#: ../../lang.pm:1
+#, c-format
+msgid "Peru"
+msgstr ""
-#: ../../keyboard.pm_.c:219
-#, fuzzy
-msgid "Laotian"
-msgstr "Latvies"
+#: ../../lang.pm:1
+#, c-format
+msgid "Panama"
+msgstr ""
-#: ../../keyboard.pm_.c:220
-msgid "Lithuanian AZERTY (old)"
-msgstr "Lituanies AZERTY (oud)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Oman"
+msgstr "NIS-domein"
-#: ../../keyboard.pm_.c:222
-msgid "Lithuanian AZERTY (new)"
-msgstr "Lituanies AZERTY (nuut)"
+#: ../../lang.pm:1
+#, c-format
+msgid "New Zealand"
+msgstr ""
-#: ../../keyboard.pm_.c:223
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Lituanies \"nommerry\" QWERTY"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Niue"
+msgstr "Geen video"
-#: ../../keyboard.pm_.c:224
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Lituanies \"foneties\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Nauru"
+msgstr ""
-#: ../../keyboard.pm_.c:225
-msgid "Latvian"
+#: ../../lang.pm:1
+#, c-format
+msgid "Nepal"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nicaragua"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Nigeria"
+msgstr "seriaal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Norfolk Island"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Niger"
+msgstr "Hoog"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "New Caledonia"
+msgstr "Masedonies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Namibia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mozambique"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malaysia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Mexico"
+msgstr "Muis"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malawi"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Maldives"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Mauritius"
+msgstr "Verskeie"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malta"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Montserrat"
+msgstr "Muispoort"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritania"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Martinique"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mongolia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Myanmar"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mali"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Macedonia"
+msgstr "Masedonies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Marshall Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Madagascar"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Moldova"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Monaco"
+msgstr "Monitor"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Morocco"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Libya"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Latvia"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:226
-msgid "Malayalam"
+#: ../../lang.pm:1
+#, c-format
+msgid "Luxembourg"
msgstr ""
-#: ../../keyboard.pm_.c:227
-msgid "Macedonian"
+#: ../../lang.pm:1
+#, c-format
+msgid "Lithuania"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lesotho"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Liberia"
+msgstr "seriaal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sri Lanka"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liechtenstein"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Lucia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lebanon"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Laos"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kazakhstan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cayman Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Kuwait"
+msgstr "Verlaat"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Korea"
+msgstr "Nog"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Korea (North)"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Comoros"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kiribati"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cambodia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kyrgyzstan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Kenya"
+msgstr "Sleutelbord"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Japan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Jordan"
+msgstr "Iranies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jamaica"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Iceland"
+msgstr "Yslandies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Iran"
+msgstr "Iranies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iraq"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "India"
+msgstr "Iranies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Israel"
+msgstr "Israelies"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Ireland"
+msgstr "Yslandies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Indonesia"
+msgstr "niks"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Hungary"
+msgstr "Hongaars"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Croatia"
+msgstr "Kroaties"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Honduras"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Heard and McDonald Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Hong Kong"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea-Bissau"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guam"
+msgstr "Speletjies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guatemala"
+msgstr "Portaal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Equatorial Guinea"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guadeloupe"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guinea"
+msgstr "Algemeen"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gambia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greenland"
+msgstr "Yslandies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gibraltar"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ghana"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "French Guiana"
+msgstr "Frans"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Georgia"
+msgstr "Norweegs"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Grenada"
+msgstr ""
+
+#: ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gabon"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Faroe Islands"
+msgstr "Yslandies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Micronesia"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:228
-msgid "Myanmar (Burmese)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Falkland Islands (Malvinas)"
msgstr ""
-#: ../../keyboard.pm_.c:229
-#, fuzzy
-msgid "Mongolian (cyrillic)"
-msgstr "Serwies (Kirillies)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Fiji"
+msgstr "Finnies"
-#: ../../keyboard.pm_.c:230
-msgid "Maltese (UK)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Finland"
msgstr ""
-#: ../../keyboard.pm_.c:231
-msgid "Maltese (US)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Ethiopia"
+msgstr "Estoniaans"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Spain"
+msgstr "Spaans"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Eritrea"
+msgstr "Kundige area"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
msgstr ""
-#: ../../keyboard.pm_.c:232
-msgid "Dutch"
-msgstr "Nederlands"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Egypt"
+msgstr "Leeg"
-#: ../../keyboard.pm_.c:234
-msgid "Polish (qwerty layout)"
-msgstr "Pools (QWERTY uitleg)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Estonia"
+msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:235
-msgid "Polish (qwertz layout)"
-msgstr "Pools (QWERTZ uitleg)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ecuador"
+msgstr ""
-#: ../../keyboard.pm_.c:236
-msgid "Portuguese"
-msgstr "Portugees"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Algeria"
+msgstr "seriaal"
-#: ../../keyboard.pm_.c:237
-msgid "Canadian (Quebec)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Dominica"
+msgstr "NIS-domein"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Denmark"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Djibouti"
+msgstr "Aborteer"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cyprus"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Christmas Island"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Cape Verde"
+msgstr "Maak boom toe"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cuba"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Colombia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "China"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cameroon"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Chile"
+msgstr "Sluit af"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Switzerland"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Brazzaville)"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Central African Republic"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Kinshasa)"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cocos (Keeling) Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Canada"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:239
-msgid "Romanian (qwertz)"
-msgstr "Romanies (QWERTZ)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Belize"
+msgstr "Verstel Grootte"
-#: ../../keyboard.pm_.c:240
-msgid "Romanian (qwerty)"
-msgstr "Romanies (QWERTY)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Belarus"
+msgstr "Belarussies"
-#: ../../keyboard.pm_.c:242
-msgid "Russian (Yawerty)"
-msgstr "Russue (Yawerty)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Botswana"
+msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:244
-msgid "Slovenian"
-msgstr "Sloveens"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bouvet Island"
+msgstr ""
-#: ../../keyboard.pm_.c:245
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovaaks (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bhutan"
+msgstr ""
-#: ../../keyboard.pm_.c:246
-msgid "Slovakian (QWERTY)"
-msgstr "Slovaaks (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahamas"
+msgstr ""
-#: ../../keyboard.pm_.c:248
-msgid "Serbian (cyrillic)"
-msgstr "Serwies (Kirillies)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Brazil"
+msgstr ""
-#: ../../keyboard.pm_.c:250
-msgid "Tamil (Unicode)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bolivia"
msgstr ""
-#: ../../keyboard.pm_.c:251
-msgid "Tamil (TSCII)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Brunei Darussalam"
msgstr ""
-#: ../../keyboard.pm_.c:252
-msgid "Thai keyboard"
-msgstr "Thai sleutelbord"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Bermuda"
+msgstr "Duits"
-#: ../../keyboard.pm_.c:254
-msgid "Tajik keyboard"
-msgstr "Tajik sleutelbord"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Benin"
+msgstr "Belgies"
-#: ../../keyboard.pm_.c:255
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Turks (tradisionele \"F\" model)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
+msgstr ""
-#: ../../keyboard.pm_.c:256
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Turks (moderne \"Q\" modem)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahrain"
+msgstr ""
-#: ../../keyboard.pm_.c:258
-msgid "Ukrainian"
-msgstr "Ukranies"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Bulgaria"
+msgstr "Hongaars"
-#: ../../keyboard.pm_.c:261
-msgid "US keyboard (international)"
-msgstr "VSA internasionale sleutelbord"
+#: ../../lang.pm:1
+#, c-format
+msgid "Burkina Faso"
+msgstr ""
-#: ../../keyboard.pm_.c:262
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Viлtnamees \"nommerry\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bangladesh"
+msgstr ""
-#: ../../keyboard.pm_.c:263
-msgid "Yugoslavian (latin)"
-msgstr "Jugoslaavs (latynse uitleg)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr ""
-#: ../../keyboard.pm_.c:270
-msgid "Right Alt key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bosnia and Herzegovina"
msgstr ""
-#: ../../keyboard.pm_.c:271
-msgid "Both Shift keys simultaneously"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Azerbaijan"
+msgstr "Albanies"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Aruba"
+msgstr "Grub"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Australia"
+msgstr "seriaal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "American Samoa"
msgstr ""
-#: ../../keyboard.pm_.c:272
-msgid "Control and Shift keys simultaneously"
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Argentina"
msgstr ""
-#: ../../keyboard.pm_.c:273
-msgid "CapsLock key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
msgstr ""
-#: ../../keyboard.pm_.c:274
-msgid "Ctrl and Alt keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Angola"
msgstr ""
-#: ../../keyboard.pm_.c:275
-msgid "Alt and Shift keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
msgstr ""
-#: ../../keyboard.pm_.c:276
-msgid "\"Menu\" key"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Armenia"
+msgstr "Armenies (oud)"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Albania"
+msgstr "Albanies"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Anguilla"
msgstr ""
-#: ../../keyboard.pm_.c:277
-msgid "Left \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Antigua and Barbuda"
msgstr ""
-#: ../../keyboard.pm_.c:278
-msgid "Right \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
msgstr ""
-#: ../../loopback.pm_.c:32
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Andorra"
+msgstr "Herroep"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Afghanistan"
+msgstr "Albanies"
+
+#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Sirkulкre heg %s\n"
-#: ../../lvm.pm_.c:103
+#: ../../lvm.pm:1
+#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modules.pm_.c:290
+#: ../../modules.pm:1
+#, c-format
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../modules/interactive.pm_.c:16
-msgid "You can configure each parameter of the module here."
-msgstr ""
-
-#: ../../modules/parameters.pm_.c:18
-#, fuzzy
-msgid "modinfo is not available"
-msgstr "Geen sagteskyaandrywer beskikbaar nie"
-
-#: ../../modules/parameters.pm_.c:50
-#, fuzzy
-msgid "a number"
-msgstr "Telefoonnommer"
+#: ../../mouse.pm:1
+#, c-format
+msgid "MOVE YOUR WHEEL!"
+msgstr "BEWEEG DIE WIEL!"
-#: ../../modules/parameters.pm_.c:52
+#
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+msgid "To activate the mouse,"
+msgstr "Om die muis te aktiveer"
-#: ../../modules/parameters.pm_.c:52
+#
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+msgid "Please test the mouse"
+msgstr "Toets asb. die muis"
-#: ../../modules/parameters.pm_.c:54
-msgid "comma separated numbers"
-msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "Geen muis"
-#: ../../modules/parameters.pm_.c:54
-#, fuzzy
-msgid "comma separated strings"
-msgstr "Formateer partisies"
+#: ../../mouse.pm:1
+#, c-format
+msgid "none"
+msgstr "niks"
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Muis"
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons"
+msgstr "3 knoppies"
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "2 buttons"
+msgstr "2 knoppies"
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generiese PS2 wielmuis"
+#: ../../mouse.pm:1
+#, c-format
+msgid "1 button"
+msgstr "1 knop"
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
+#: ../../mouse.pm:1
+#, c-format
+msgid "busmouse"
+msgstr "busmuis"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+#: ../../mouse.pm:1
+#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Muis (seriaal, ou C7 tipe)"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
-msgid "Microsoft Explorer"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech CC Series"
+msgstr "Logitech CC Reeks (seriaal)"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
-msgid "1 button"
-msgstr "1 knop"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Generiese 3-knop muis"
-#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+#: ../../mouse.pm:1
+#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
+#: ../../mouse.pm:1
+#, c-format
+msgid "serial"
+msgstr "seriaal"
+
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
#
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm:1
+#, c-format
msgid "Wheel"
msgstr "Wiel"
-#: ../../mouse.pm_.c:51
-msgid "serial"
-msgstr "seriaal"
+#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Generic"
+msgstr "Generies"
-#: ../../mouse.pm_.c:54
-msgid "Generic 3 Button Mouse"
-msgstr "Generiese 3-knop muis"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:55
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../mouse.pm_.c:56
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Generiese PS2 wielmuis"
-#: ../../mouse.pm_.c:57
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../mouse.pm_.c:59
-msgid "Logitech CC Series"
-msgstr "Logitech CC Reeks (seriaal)"
+#: ../../mouse.pm:1 ../../security/level.pm:1
+#, c-format
+msgid "Standard"
+msgstr "Standaard"
-#: ../../mouse.pm_.c:60
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Sun - Mouse"
+msgstr "Sun - Muis"
-#: ../../mouse.pm_.c:62
-msgid "MM Series"
-msgstr "MM Series"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Toggle between flat and group sorted"
+msgstr "Skakel tussen plat- en groepsortering"
-#: ../../mouse.pm_.c:63
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Collapse Tree"
+msgstr "Maak boom toe"
-#: ../../mouse.pm_.c:64
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Muis (seriaal, ou C7 tipe)"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Expand Tree"
+msgstr "Maak boom oop"
-#: ../../mouse.pm_.c:68
-msgid "busmouse"
-msgstr "busmuis"
+#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Info"
+msgstr "Info"
-#: ../../mouse.pm_.c:71
-msgid "2 buttons"
-msgstr "2 knoppies"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Is this correct?"
+msgstr "Is dit korrek?"
-#: ../../mouse.pm_.c:72
-msgid "3 buttons"
-msgstr "3 knoppies"
+#: ../../my_gtk.pm:1
+#, fuzzy, c-format
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../mouse.pm_.c:75
-msgid "none"
-msgstr "niks"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Error writing to file %s"
+msgstr "Fout in die skryf van %s"
-#: ../../mouse.pm_.c:77
-msgid "No mouse"
-msgstr "Geen muis"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Bad backup file"
+msgstr "Korrupte rugsteunlкer"
-#
-#: ../../mouse.pm_.c:490
-msgid "Please test the mouse"
-msgstr "Toets asb. die muis"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Restoring from file %s failed: %s"
+msgstr "Herstel van lйer %s het gefaal: %s"
-#
-#: ../../mouse.pm_.c:491
-msgid "To activate the mouse,"
-msgstr "Om die muis te aktiveer"
+#: ../../partition_table.pm:1
+#, c-format
+msgid ""
+"You have a hole in your partition table but I can't use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
+msgstr ""
+"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
+"Die enigste oplossing is om die primкre partisie te skuif sodat die gat\n"
+"langs die ekstensie partisies is"
-#: ../../mouse.pm_.c:492
-msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEEG DIE WIEL!"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Extended partition not supported on this platform"
+msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../my_gtk.pm_.c:65
-#, fuzzy
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "mount failed: "
+msgstr "heg het gefaal"
-#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
-msgid "Finish"
-msgstr "Finnies"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "maybe"
+msgstr "moontlik"
-#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
-#: ../../ugtk2.pm_.c:435
-msgid "Next ->"
-msgstr "Volgende ->"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "nice"
+msgstr "oulik"
-#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
-msgid "Is this correct?"
-msgstr "Is dit korrek?"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "very nice"
+msgstr "baie oulik"
-#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
-msgid "Info"
-msgstr "Info"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "important"
+msgstr "belangrik"
-#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
-msgid "Expand Tree"
-msgstr "Maak boom oop"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "must have"
+msgstr "benodig"
-#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
+#: ../../raid.pm:1
+#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
-#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed"
+msgstr "mkraid het gefaal"
-#: ../../network/adsl.pm_.c:23
-msgid "use pppoe"
-msgstr "gebruik pppoe"
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../network/adsl.pm_.c:24
-msgid "use pptp"
-msgstr "gebruik pptp"
+#: ../../raid.pm:1
+#, c-format
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../network/adsl.pm_.c:25
-msgid "use dhcp"
-msgstr "gebruik dhcp"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Stop"
+msgstr "Sektor"
-#: ../../network/adsl.pm_.c:26
-#, fuzzy
-msgid "Alcatel speedtouch usb"
-msgstr "speedtouch USB"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Start"
+msgstr "Toestand"
-#: ../../network/adsl.pm_.c:27
-msgid "Sagem (using pppoe) usb"
+#: ../../services.pm:1
+#, c-format
+msgid "On boot"
+msgstr "met herlaai"
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Konnekteer aan die internet"
+#: ../../services.pm:1
+#, c-format
+msgid "Services and deamons"
+msgstr ""
-#: ../../network/adsl.pm_.c:30
-msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few ones use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+#: ../../services.pm:1
+#, c-format
+msgid "stopped"
+msgstr "onaktief"
+
+#: ../../services.pm:1
+#, c-format
+msgid "running"
+msgstr "aktief"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Database Server"
+msgstr "Datbasis"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Remote Administration"
+msgstr "Eksterne lpd drukkeropsies"
+
+#: ../../services.pm:1
+#, c-format
+msgid "File sharing"
msgstr ""
-"Die mees algemene metode vir ADSL is om pppoe te gebruik.\n"
-"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
-"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../network/adsl.pm_.c:166
+#: ../../services.pm:1
+#, c-format
+msgid "Internet"
+msgstr "Internet"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Printing"
+msgstr "Druk"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Laai die X-fontbediener (dis nodig vir XFree)."
+
+#: ../../services.pm:1
+#, c-format
+msgid "Load the drivers for your usb devices."
+msgstr "Laai die drywers vir u USB-toestelle"
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
+"Syslog is die fasiliteit wat baie diensprogramme gebruik om boodskappe\n"
+"te log na 'n verskeidenheid loglкers. Dit is altyd goed om syslog te loop."
-#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "Bediener"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the sound system on your machine"
+msgstr "Laai die klankstelsel op u rekenaar"
-#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Domeinnaam"
+#: ../../services.pm:1
+#, c-format
+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 ""
+"Die 'rwho' protokol laat eksterne gebruikers toe om te sien wie\n"
+"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
+"'finger')."
-#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "Datbasis"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
+"aangeteken is op ander samewerkende rekenaars."
-#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "LDAP-bediener"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
+"werksverrigtinginligting oor enige rekenaar op die netwerk te onttrek."
-#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "geen netwerkkaart gevind nie"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Die 'routed' diensprogram hanteer outomatiese IP-roeteertabelopdatering\n"
+"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
+"meer komplekse protokolle nodig vir komplekse netwerke."
-#: ../../network/drakfirewall.pm_.c:129
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
-#: ../../network/drakfirewall.pm_.c:135
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
+"Stoor en herstel die stelselentropiepoel vir hoл kwaliteit,\n"
+"lukraaknommergenerasie."
-#: ../../network/drakfirewall.pm_.c:152
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
+"POstfix is 'n E-posoordragagent (MTA). Dit is die program wat E-pos\n"
+"van een bediener na 'n ander oordra."
-#: ../../network/drakfirewall.pm_.c:153
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
+"Portmapper bestuur RPC-konneksies wat deur protokolle soos NFS en NIS\n"
+"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
+"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../network/drakfirewall.pm_.c:159
+#: ../../services.pm:1
#, c-format
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
msgstr ""
+"PCMCIA is gewoonlik nodig om ondersteuning te verleen aan\n"
+"toestelle soos ethernet en modems in skootrekenaars. Dit sal nie\n"
+"gelaai word, behalwe as dit konfigureer is nie en dit is derhalwe\n"
+"veilig om op rekenaars te hк wat dit nie nodig het nie."
-#: ../../network/drakfirewall.pm_.c:167
-msgid "Everything (no firewall)"
+#: ../../services.pm:1
+#, c-format
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Ondersteun die OKI-4W en aanpasbare WIN-drukkers"
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-#: ../../network/drakfirewall.pm_.c:169
-#, fuzzy
-msgid "Other ports"
-msgstr "Toets poorte"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
+msgstr ""
+"NFS is 'n populкre protokol vir lкerdeling oor TCP/IP netwerke.\n"
+"Hierdie diens vorosien die NFS-lкersluitfunksionaliteit."
-#: ../../network/ethernet.pm_.c:37
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcp-client"
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
msgstr ""
-"Watter DCHP-kliлnt wil u gebruik?\n"
-"Verstek is dhcp-client"
+"NFS is 'n populкre protokol vir lкerdeling oor TCP/IP netwerke.\n"
+"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
+"die /etc/exports lкer opgestel."
-#: ../../network/ethernet.pm_.c:88
+#: ../../services.pm:1
+#, c-format
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie.\n"
-"Ek kan nie hierdie konneksietipe opstel nie."
+"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
+"herlaaityf te begin."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
-msgid "Choose the network interface"
-msgstr "Kies die netwerkkoppelvlak"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Heg en ontheg all netwerklкerstels (NFS), SMB (Lan Manger/Windows)\n"
+"en NCP (Netware) hegpunte."
-#: ../../network/ethernet.pm_.c:93
+#: ../../services.pm:1
+#, fuzzy, c-format
msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve 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."
-#: ../../network/ethernet.pm_.c:176
-msgid "no network card found"
-msgstr "geen netwerkkaart gevind nie"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
-#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
-msgid "Configuring network"
-msgstr "Stel netwerk op"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
+"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
-#: ../../network/ethernet.pm_.c:201
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please enter your host name if you know it.\n"
-"Some DHCP servers require the hostname to work.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Tik asb die rekenaarnaam in.\n"
-"Sekere DHCP-bedieners benodig die rekenaarnaam.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''."
-#
-#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
-msgid "Host name"
-msgstr "Rekenaarnaam"
+#: ../../services.pm:1
+#, c-format
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Outobespeuring en hardewarekonfigurasie met herlaaityd."
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
-#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
-#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
-#: ../../network/netconnect.pm_.c:253
-msgid "Network Configuration Wizard"
-msgstr "Netwerkkonfigurasie-assistent"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Eksterne ISDN-kaart"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Hierdie pakket laai die sleutelbordkaart soos dit in /etc/sysconfig/"
+"keyboard\n"
+"opgestel is. Dit kan vernader word met die kbdconfig nutsprogram. U moet "
+"dit\n"
+"op meeste rekenaars ongesper laat."
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Interne ISDN-kaart"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Watter tipe is u ISDN-konneksie?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+"Die internetsuperbedienerdiensprogram (gewoonlik inetd genoem) laai 'n\n"
+"verskeidenheid internetdienste soos nodig. Dit is gewoonlik verantwoordelik "
+"vir\n"
+"telnet, ftp, rsh en rlogin. As inetd gesper word, sper dit ook die dienste "
+"waarvoor\n"
+"inetd verantwoordelik is."
-#: ../../network/isdn.pm_.c:45
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerful\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
+"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-lкers uitstuur en CGI's hanteer"
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Nuwe konfigurasie (Ligte ISDN/isdn-light)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Ou konfigurasie (isdn4net)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM verleen muisvermoлns aan teksgebaseerde Linuxapplikasies soos\n"
+"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
+"konsole toe asook opspringkieskaarte."
-#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
-#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
-#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
-msgid "ISDN Configuration"
-msgstr "ISDN Konfigurasie"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"cron is die standaard UNIX program om gebruikergespesifiseerde programme\n"
+"op periodies geskeduleerde tye te loop. vixie cron voeg addisionele "
+"funksionaliteit\n"
+"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
+"konfigurasie."
-#: ../../network/isdn.pm_.c:166
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-"Kies u internetdiensvoorsiener.\n"
-"Indien nie in die lys nie kies Ongelys"
+"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at' gespesifiseer. "
+"Loop ook instruksiebondels wanneer die stelsellas laag genoeg is."
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol"
-msgstr "Europese protokol"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"apmd is used for monitoring battery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
+msgstr ""
+"apmd word gebruik om battery status te monitor en dit dan te log via "
+"syslog.\n"
+"Dit kan ook gebruik word om die rekenaar af te bring wanneer die battery "
+"swak is."
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol (EDSS1)"
-msgstr "Europese protokol (EDSS1)"
+#: ../../services.pm:1
+#, c-format
+msgid "Anacron is a periodic command scheduler."
+msgstr "Anacron is skeduleerder vir periodiese instruksies."
-#
-#: ../../network/isdn.pm_.c:181
-msgid "Protocol for the rest of the world"
-msgstr "Protokol vir die res van die wкreld"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
-#: ../../network/isdn.pm_.c:181
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "Installing packages..."
+msgstr "Installeer pakket %s"
+
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"Protokol vir die res vd wкreld \n"
-" geen D-Kanaal nie (bruikhuurlyne)"
-#: ../../network/isdn.pm_.c:185
-msgid "Which protocol do you want to use?"
-msgstr "Watter protokol verlang u?"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../network/isdn.pm_.c:196
+#: ../../standalone.pm:1
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-#: ../../network/isdn.pm_.c:203
-msgid "What kind of card do you have?"
-msgstr "Oor watter tipe kaart beskik u?"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "I don't know"
-msgstr "Ek weet nie"
+#: ../../standalone.pm:1
+#, c-format
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone.pm:1
+#, c-format
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "[keyboard]"
+msgstr "Sleutelbord"
+
+#: ../../standalone.pm:1
+#, c-format
msgid ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
"\n"
-"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
-"wees.\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
"\n"
-"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+msgstr ""
-#: ../../network/isdn.pm_.c:214
-msgid "Abort"
-msgstr "Aborteer"
+#: ../../steps.pm:1
+#, c-format
+msgid "Exit install"
+msgstr "Verlaay installasie"
-#: ../../network/isdn.pm_.c:214
-msgid "Continue"
-msgstr "Gaan voort"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Install system updates"
+msgstr "Installeer stelsel"
-#: ../../network/isdn.pm_.c:220
-msgid "Which is your ISDN card?"
-msgstr "Wat is u ISDN-kaart?"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure services"
+msgstr "Konfigureer dienste"
-#: ../../network/isdn.pm_.c:239
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
-"PCI-kaart op die volgende skerm."
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure X"
+msgstr "Stel X op"
-#: ../../network/isdn.pm_.c:248
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
+#: ../../steps.pm:1
+#, c-format
+msgid "Install bootloader"
+msgstr "Installeer herlaaistelsel"
-#: ../../network/modem.pm_.c:57
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure networking"
+msgstr "Stel netwerk op"
-#: ../../network/modem.pm_.c:67
-msgid "Dialup options"
-msgstr "Opbelopsies"
+#: ../../steps.pm:1
+#, c-format
+msgid "Add a user"
+msgstr "Voeg 'n gebruiker by"
-#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
-msgid "Connection name"
-msgstr "Konneksienaam"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install system"
+msgstr "Installeer stelsel"
-#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
-msgid "Phone number"
-msgstr "Telefoonnommer"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose packages to install"
+msgstr "Kies pakkette om te installeer"
-#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
-msgid "Login ID"
-msgstr "Aantekenkode"
+#: ../../steps.pm:1
+#, c-format
+msgid "Format partitions"
+msgstr "Formateer partisies"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Partitioning"
+msgstr "Druk"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "PAP"
-msgstr "PAP"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your keyboard"
+msgstr "Kies u sleutelbord"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Script-based"
-msgstr "Skriptipe"
+#: ../../steps.pm:1
+#, c-format
+msgid "Select installation class"
+msgstr "Kies installasieklas"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Terminal-based"
-msgstr "Terminaaltipe"
+#: ../../steps.pm:1
+#, c-format
+msgid "Hard drive detection"
+msgstr "Hardeskyfdeteksie."
-#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
-msgid "Domain name"
-msgstr "Domeinnaam"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure mouse"
+msgstr "Stel muistoestel op"
-#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
-msgid "First DNS Server (optional)"
-msgstr "Eerste DNS-bediener (opsioneel)"
+#: ../../steps.pm:1
+#, c-format
+msgid "License"
+msgstr ""
-#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
-msgid "Second DNS Server (optional)"
-msgstr "Tweede DNS-bediener (opsioneel)"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your language"
+msgstr "Kies u taal"
+
+#: ../../ugtk2.pm:1
+#, c-format
+msgid "utopia 25"
+msgstr ""
+
+#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
+#, c-format
+msgid "logdrake"
+msgstr ""
+
+#: ../../ugtk.pm:1
+#, c-format
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../network/modem.pm_.c:95
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (installasievertoondrywer)"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"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:1
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
+
+#: ../../Xconfig/card.pm:1
+#, 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."
+
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../network/modem.pm_.c:97
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
+"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Do nothing"
-msgstr "CUPS word gelaai"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
+"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Install rpm"
-msgstr "Installasie"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Title"
-msgstr "Tabel"
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../network/netconnect.pm_.c:29
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-ekstensies"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Configure all heads independently"
+msgstr "Konfigureer skyfkoppe afsonderlik"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Select the memory size of your graphics card"
+msgstr "Kies die geheue grootte van u videokaart"
+
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
+"Your system supports multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"\n"
-"U kan diskonnekteer or herkonfigureer."
+"U stelsel onderstuen multikopkonfigurasie.\n"
+"Wat wil u doen?"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Multi-head configuration"
+msgstr "Multikopkonfigurasie"
-#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Choose an X server"
+msgstr "Kies 'n X-bediener"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "X server"
+msgstr "X-bediener"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "64 MB or more"
+msgstr "64MB of meer"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "512 kB"
+msgstr "512 kB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "256 kB"
+msgstr "256 kB"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"You can reconfigure your connection."
+"%s"
msgstr ""
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
"\n"
-"U kan u konneksie herkonfigureer."
+"%s"
-#: ../../network/netconnect.pm_.c:29
-msgid "You are currently connected to internet."
-msgstr "U is tans aan die internet gekonnekteer."
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Options"
+msgstr "Opsies"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolution"
+msgstr "Resolusie"
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm:1
+#, fuzzy, c-format
+msgid "Graphic Card"
+msgstr "Videokaart"
+
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakperm:1
+#: ../../standalone/draksplash:1 ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
+#, c-format
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Vertical refresh rate"
+msgstr "Vertikale verfristempo"
-#: ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Horizontal refresh rate"
+msgstr "Horisontale verfristempo"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"You can connect to Internet or reconfigure your connection."
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"Die kritiese twee parameters is die vertikale verfristempo (die tempo\n"
+"waarteen die hele skerm verfris) en die horisontale sinkronisasietempo (die\n"
+"tempo waarteen die horisontale skandeerlyne vertoon word). Lg. is die\n"
+"belangrikste.\n"
"\n"
-"U kan aan die internet konnekter of u konneksie herkonfigureer."
+"Dit is BAIE BELANGRIK dat u nie 'n sinkronisasie bereik buite diй van u\n"
+"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
+"kies konservatief."
-#: ../../network/netconnect.pm_.c:32
-msgid "You are not currently connected to Internet."
-msgstr "U is nie tans aan die internet gekonnekteer nie."
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgstr ""
-#: ../../network/netconnect.pm_.c:36
-msgid "Connect"
-msgstr "Konnekteer"
+#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Vendor"
+msgstr "Herroep"
-#: ../../network/netconnect.pm_.c:37
-msgid "Disconnect"
-msgstr "Diskonnekteer"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play"
+msgstr ""
-#: ../../network/netconnect.pm_.c:38
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Stel netwerk op"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Choose a monitor"
+msgstr "Kies 'n monitor"
-#: ../../network/netconnect.pm_.c:41
-msgid "Internet connection & configuration"
-msgstr "Internetkonneksie en konfigurasie"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Graphics card: %s"
+msgstr "Videokaart: %s"
-#: ../../network/netconnect.pm_.c:94
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Ons gaan nou die %s konneksie herkonfigureer."
+msgid "Choose the resolution and the color depth"
+msgstr "Kies die resolusie en kleurdiepte"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolutions"
+msgstr "Resolusies"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "16 million colors (24 bits)"
+msgstr "16-miljoen kleure (24 bis)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "65 thousand colors (16 bits)"
+msgstr "65-duisend kleure (16 bis)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "32 thousand colors (15 bits)"
+msgstr "32-duisend kleure (15 bis)"
-#: ../../network/netconnect.pm_.c:103
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "256 colors (8 bits)"
+msgstr "256 kleure (8 bis)"
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Is this the correct setting?"
+msgstr "Is dit korrek?"
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Leaving in %d seconds"
+msgstr "%d sekondes"
+
+#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
+"An error occurred:\n"
+"%s\n"
+"Try to change some parameters"
msgstr ""
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Do you want to test the configuration?"
+msgstr "Wil u die konfigurasie toets?"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
+
+#: ../../Xconfig/various.pm:1
+#, fuzzy, c-format
+msgid "What norm is your TV using?"
+msgstr "Watter tipe is u ISDN-konneksie?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
-"\n"
-"Ons gan nou die %s konneksie konfigureer.\n"
-"\n"
-"\n"
-"Drk OK om voort te gaan."
-
-#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
-#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
-msgid "Network Configuration"
-msgstr "Netwerkkonfigurasie"
+"Do you have this feature?"
+msgstr ""
-#: ../../network/netconnect.pm_.c:133
+#: ../../Xconfig/various.pm:1
+#, c-format
msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
+"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 ""
-"Omdat u netwerk installasie doen, is u netwerk aslreeds opgestel.\n"
-"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
-"& Netwerkkonneksie te herkonfigureer.\n"
+"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
+"Wil u X begin met 'n herlaai?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphical interface at startup"
+msgstr "X met herlaai"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86-drywer: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 bediener: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Resolusie: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Kleurdiepte: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics memory: %s kB\n"
+msgstr "Video geheue: %s kB\n"
-#: ../../network/netconnect.pm_.c:157
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics card: %s\n"
+msgstr "Videokaart: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitor VertVerfris: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitor HoriSink: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse device: %s\n"
+msgstr "Muistoestel: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse type: %s\n"
+msgstr "Muistipe: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Keyboard layout: %s\n"
+msgstr "Sleutelbord uitleg: %s\n"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Options: %s"
+msgstr "Opsies: %s"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount point: "
+msgstr "Hegpunt:"
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Server: "
+msgstr "Bediener"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Please enter the WebDAV server URL"
+msgstr "Toets asb. die muis"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount point"
+msgstr "Hegpunt"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "Server"
+msgstr "Bediener"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount"
+msgstr "Heg"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Unmount"
+msgstr "Ontheg"
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "New"
+msgstr "nuut"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
msgid ""
-"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"
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
msgstr ""
-"Welkom by die Netwerkkonfigurasie-assistent\n"
-"\n"
-"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
-"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:163
-msgid "Choose the profile to configure"
-msgstr "Kies die profiel om te konfigureer"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``%s'' instead"
+msgstr "Gebruik ``%s'' instede."
-#: ../../network/netconnect.pm_.c:164
-msgid "Use auto detection"
-msgstr "Gebruik outobespeuring"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Type"
+msgstr "Tipe"
-#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
-#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
-#: ../../standalone/drakfloppy_.c:118
-msgid "Expert Mode"
-msgstr "Kundige bedryfsvlak"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``Unmount'' first"
+msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
-msgid "Detecting devices..."
-msgstr "Toestel word afgetas..."
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Delete"
+msgstr "Uitwis"
-#: ../../network/netconnect.pm_.c:214
-msgid "Normal modem connection"
-msgstr "Normale modemkonneksie"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create"
+msgstr "Skep"
-#: ../../network/netconnect.pm_.c:214
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected on port %s"
-msgstr "Op poort %s bespeur"
+msgid "Filesystem types:"
+msgstr "LOersteltipes:"
-#: ../../network/netconnect.pm_.c:215
-#, fuzzy
-msgid "Winmodem connection"
-msgstr "Normale modemkonneksie"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Empty"
+msgstr "Leeg"
-#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "detected"
-msgstr "%s bespeur"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Windows"
+msgstr "NIS-domein"
-#: ../../network/netconnect.pm_.c:216
-msgid "ISDN connection"
-msgstr "ISDN konneksie"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "HFS"
+msgstr "HFS"
-#: ../../network/netconnect.pm_.c:216
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected %s"
-msgstr "%s bespeur"
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../network/netconnect.pm_.c:217
-msgid "ADSL connection"
-msgstr "ADSL konneksie"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Swap"
+msgstr "Ruilarea"
-#: ../../network/netconnect.pm_.c:218
-msgid "Cable connection"
-msgstr "Kabelkonneksie"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Journalised FS"
+msgstr "Gejoernaliseer"
-#: ../../network/netconnect.pm_.c:218
-msgid "cable connection detected"
-msgstr "Kabelkonneksie bespeur"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../network/netconnect.pm_.c:219
-msgid "LAN connection"
-msgstr "LAN konneksie"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "No hard drives found"
+msgstr "Plaaslike drukker"
-#: ../../network/netconnect.pm_.c:219
-msgid "ethernet card(s) detected"
-msgstr "ethernet kaart(e) bespeur"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please click on a partition"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../network/netconnect.pm_.c:222
-msgid "Choose the connection you want to configure"
-msgstr "Kies die konneksie wat u wil konfigureer"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid ""
+"You have one big MicroSoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
+msgstr ""
+"U het een massiewe FAT partisie. \n"
+"(gewoonlik deur DOS/Windows gebruik)\n"
+"Ek stel voor u verstel eers die grootte van diй partisie\n"
+"(kliek daarop en kliek dan op \"Verstel Grootte\")"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Choose action"
+msgstr "Kies aksie"
-#: ../../network/netconnect.pm_.c:246
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Wizard"
+msgstr "Assistent"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
msgstr ""
-"U het meer as een internetkonneksiemetode opgste.\n"
-"Kies die een wat u verlang.\n"
-"\n"
+"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
+"van die skyf. (2048 sektors is genoeg)."
-#: ../../network/netconnect.pm_.c:247
-msgid "Internet connection"
-msgstr "Internetkonneksie"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please make a backup of your data first"
+msgstr "Rugsteun u data eers asb."
-#: ../../network/netconnect.pm_.c:253
-msgid "Do you want to start the connection at boot?"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read carefully!"
+msgstr "Lees noukeurig!"
-#: ../../network/netconnect.pm_.c:267
-msgid "Network configuration"
-msgstr "Netwerkkonfigurasie"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key (again)"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "The encryption keys do not match"
+msgstr "Die wagwoorde stem nie ooreen nie."
+
+#: ../../diskdrake/interactive.pm:1
+#, 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."
-#: ../../network/netconnect.pm_.c:268
-msgid "The network needs to be restarted"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../network/netconnect.pm_.c:272
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Filesystem encryption key"
+msgstr "LOerstelseltipe: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Type: "
+msgstr "Tipe:"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "op bus %d id %d\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Partisietabeltipe: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-skywe %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Info: "
+msgstr "Info:"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s\n"
+msgstr "Grootte: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Device: "
+msgstr "Toestel:"
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Daar was 'n probleem met die herlaai van die netwerk.\n"
"\n"
-"%s"
+"Hierdie spesiale herlaaipartisie\n"
+"is om u stelsel te duolaai.\n"
-#: ../../network/netconnect.pm_.c:282
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
msgstr ""
-"Geluk, die netwerk en internetkonfigurasie is voltooi.\n"
"\n"
-"Die kongiurasie gaan op u stelsel toegepas word.\n"
+"Dis hoogs waarskynlik dat hierdie partisie\n"
+"drywerpartisie is en verkieslik alleen gelos\n"
+"moet word.\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "Teruglus lкernaam: %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID-disks %s\n"
+msgstr "RAID-skywe %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Chunk size %s\n"
+msgstr "Blokgrootte %s\n"
-#: ../../network/netconnect.pm_.c:286
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Level %s\n"
+msgstr "Vlak %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
-"om die rekenaarnaamveranderingprobleem te voorkom."
+"Verstekpartisie vir herlaai\n"
+" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../network/netconnect.pm_.c:287
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
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."
+"Loopback file(s):\n"
+" %s\n"
+msgstr "Teruglus lкer(s): %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mounted\n"
+msgstr "Geheg\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Not formatted\n"
+msgstr "Nie geformatter\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Formatted\n"
+msgstr "Geformateer\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "Silinder %d na silinder %d\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ", %s sectors"
+msgstr ", %s sektore"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s"
+msgstr "Grootte: %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start: sector %s\n"
+msgstr "Begin: sektor %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Name: "
+msgstr "Naam: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "partition %s is now known as %s"
msgstr ""
-#: ../../network/network.pm_.c:278
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "LPD word verwyder..."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Copying %s"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Moving files to the new partition"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"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."
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-"WAARSKUWING: Die toestel is alreeds opgestel om aan die internette "
-"konnekteer.\n"
-"U kan die toestel net so aanvaar.\n"
-"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:283
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Hide files"
+msgstr "mkraid het gefaal"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Move files to the new partition"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
+
+#: ../../diskdrake/interactive.pm:1
+#, 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:1
+#, c-format
+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:1
+#, 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:1
+#, fuzzy, c-format
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)."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
msgstr ""
-"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
-"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
-"(1.2.3.4) gegee word."
+"U het 'n sagteware RAID-partisie as wortel (/).\n"
+"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
+"Onthou om 'n /boot by te voeg."
-#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigureer netwerktoestel %s"
+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 ""
+"_ keuse vir die \"root\" partisie (/) is fisies buite die 1024de silindervan "
+"die\n"
+"hardeskyf en u het nie 'n /boot partisie nie. Indien u beplan om LILO te "
+"gebruik,moet u\n"
+"asb. 'n /boot partisie skep,"
-#: ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid " (driver %s)"
-msgstr "(drywer %s)"
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
+msgstr ""
+"Jammer, ek kan nie die versoek om /boot om hierdie skyf (op 'n silinder > "
+"1024) te skep,\n"
+"aanvaar nie. As u LILO gebruik sal dit nie werk nie en as u nie LILO "
+"gebruik\n"
+"nie, dan het u nie /boot nodig nie."
-#
-#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
-#: ../../standalone/drakconnect_.c:464
-msgid "IP address"
-msgstr "IP adres"
+#: ../../diskdrake/interactive.pm:1
+#, 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?"
-#
-#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
-#: ../../standalone/drakgw_.c:291
-msgid "Netmask"
-msgstr "Netmasker"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "What type of partitioning?"
+msgstr "Watter tipe van partisionering?"
-#: ../../network/network.pm_.c:298
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Be careful: this operation is dangerous."
+msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../network/network.pm_.c:298
-msgid "Automatic IP"
-msgstr "Outomatiese IP"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "chunk size"
+msgstr "blokgrootte"
-#: ../../network/network.pm_.c:299
-#, fuzzy
-msgid "Start at boot"
-msgstr "Gelaai tydens herlaaityd"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "level"
+msgstr "vlak"
-#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "device"
+msgstr "toestel"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Various"
+msgstr "Verskeie"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount options"
+msgstr "Hegopsies:"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "File already exists. Use it?"
+msgstr "Lкer bestaan alreeds. Moet dit gebruik word?"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "File is already used by another loopback, choose another one"
+msgstr "Lкer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Give a file name"
+msgstr "Regte naam"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Filesystem type: "
+msgstr "LOerstelseltipe: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size in MB: "
+msgstr "Grootte in MB: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: "
+msgstr "Teruglus lкernaam:"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback"
+msgstr "Teruglus"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition can't be used for loopback"
+msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM name?"
+msgstr "LVM naam?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "new"
+msgstr "nuut"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing LVM to add to"
+msgstr "Kies 'n bestaande LVM om by toe te voeg"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing RAID to add to"
+msgstr "Kies 'n bestaande RAID om by toe te voeg"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving partition..."
+msgstr "Partisie word verskuif..."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving"
+msgstr "Verskuiwing"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which sector do you want to move it to?"
+msgstr "Na watter sektor wil u skuif?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Sector"
+msgstr "Sektor"
-#: ../../network/network.pm_.c:326
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which disk do you want to move it to?"
+msgstr "Na watter skyf wil u skuif?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move"
+msgstr "Skuif"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "New size in MB: "
+msgstr "Nuwe grootte in MB: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose the new size"
+msgstr "Kies die nuwe grootte"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "Verstel Grootte"
+
+#: ../../diskdrake/interactive.pm:1
+#, 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:1
+#, c-format
+msgid "All data on this partition should be backed-up"
+msgstr "Alle data om hierdie partisie moet gerugsteun word."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition is not resizeable"
+msgstr "Hierdie partisie se greootte kan nie verstel word nie"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Computing FAT filesystem bounds"
+msgstr "FAT lкerstelselgrense word bereken"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Waar wil u toestel %s heg?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0'."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
+"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
+"gebruik word. Verwyder eers die teruglus."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount device %s?"
+msgstr "Waar wil u toestel %s heg?"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount the loopback file %s?"
+msgstr "Waar wil u terugluslкer %s heg?"
-#: ../../network/network.pm_.c:330
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Switching from ext2 to ext3"
+msgstr "Oorskakeling van ext2 na ext3"
+
+#
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Which filesystem do you want?"
+msgstr "Watter lкerstelsel verlang u?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Change partition type"
+msgstr "Verander partisietipe"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0'."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
+"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
+"partisietipe"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Remove the loopback file?"
+msgstr "Terugluslкer %s word geformateer"
-#: ../../network/network.pm_.c:350
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one"
+"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 ""
-"Tik asb die rekenaarnaam in.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''.\n"
-"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:355
-msgid "DNS server"
-msgstr "DNS bediener"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Preference: "
+msgstr "Voorkeure: "
-#: ../../network/network.pm_.c:356
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
+msgid "Start sector: "
+msgstr "Kies sektor: "
-#: ../../network/network.pm_.c:358
-msgid "Gateway device"
-msgstr "Netwerkportaaltoestel"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create a new partition"
+msgstr "Kies 'n nuwe grootte"
-#: ../../network/network.pm_.c:363
-#, fuzzy
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Use for loopback"
+msgstr "Gebruik vir teruglus"
-#: ../../network/network.pm_.c:367
-#, fuzzy
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Modify RAID"
+msgstr "Verander RAID"
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Instaanbedienerkonfigurasie"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from LVM"
+msgstr "Verwyder uit LVM"
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP instaanbediener"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from RAID"
+msgstr "Verwyder uit RAID"
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP instaanbediener"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to LVM"
+msgstr "Voeg by LVM"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (useful for laptops)"
-msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to RAID"
+msgstr "Voeg by RAID"
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Instaanbediener moet begin met http://"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Format"
+msgstr "Formatteer"
-#: ../../network/network.pm_.c:388
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Instaanbediener moet begin met http://"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Detailed information"
+msgstr "Gedetaileerde inligting"
-#: ../../network/shorewall.pm_.c:26
-msgid "Firewalling configuration detected!"
-msgstr "Vuurmuurkonfigurasie gevind!"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Trying to rescue partition table"
+msgstr "Partisietabel Reddingspoging"
-#: ../../network/shorewall.pm_.c:27
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
-"dietyd self regstellings moet aanbring."
+"Sit 'n floppie in die aandrywer.\n"
+"Alle data op hierdie floppie sal verloor word."
-#: ../../network/tools.pm_.c:57
-msgid "Internet configuration"
-msgstr "Internetkonfigurasie"
+#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Warning"
+msgstr "Waarskuwing"
-#: ../../network/tools.pm_.c:58
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Wil u nou aan die internet konnekteer?"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Select file"
+msgstr "Selekteer lOer"
-#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
-msgid "Testing your connection..."
-msgstr "Konneksie word getoets..."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
+"Wil u voortgaan?"
-#: ../../network/tools.pm_.c:70
-msgid "The system is now connected to Internet."
-msgstr "Die stelsel is nou aan die internet gekonnekteer."
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Removable media automounting"
+msgstr "Verwyderbare media"
-#: ../../network/tools.pm_.c:71
-msgid "For security reason, it will be disconnected now."
-msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Reload partition table"
+msgstr "Reddingspartisietabel"
-#: ../../network/tools.pm_.c:72
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Rescue partition table"
+msgstr "Reddingspartisietabel"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Restore partition table"
+msgstr "Reddingspartisietabel"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Save partition table"
+msgstr "Skryf partisietabel"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-"Die tselsel blyk nie aan die internet gekonnekteer te wees nie.\n"
-"Probeer om u stelsel te herkonfigureer."
+"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
+"skep"
-#
-#: ../../network/tools.pm_.c:96
-msgid "Connection Configuration"
-msgstr "Konneksiekonfigurasie"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "I can't add any more partition"
+msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../network/tools.pm_.c:97
-msgid "Please fill or check the field below"
-msgstr "Vul asb. die velde hieronder in"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All primary partitions are used"
+msgstr "Alle primкre partisies is gebruik"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
-msgid "Card IRQ"
-msgstr "Kaart IRQ"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Hard drive information"
+msgstr "Hardeskyfinligting"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
-msgid "Card mem (DMA)"
-msgstr "Kaartgeheue (DMA)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Auto allocate"
+msgstr "Outo-allokeer"
-#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
-msgid "Card IO"
-msgstr "Kaart I/O"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Clear all"
+msgstr "Verwydeer almal"
-#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
-msgid "Card IO_0"
-msgstr "Kaart IO_0"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
-msgid "Card IO_1"
-msgstr "Kaart IO_1"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without writing the partition table?"
+msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
-msgid "Your personal phone number"
-msgstr "U persoonlike telefoonnommer"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without saving"
+msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
-msgid "Provider name (ex provider.net)"
-msgstr "Voorsienernaam (bv voorsiener.co.za)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Continue anyway?"
+msgstr "Wil u in elk geval voortgaan?"
-#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
-msgid "Provider phone number"
-msgstr "Voorsiener se telefoonnommer"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to expert mode"
+msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
-msgid "Provider dns 1 (optional)"
-msgstr "Voorsiener DNS 1 (opsioneel)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to normal mode"
+msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
-msgid "Provider dns 2 (optional)"
-msgstr "Voorsiener DNS 2 (opsioneel)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Undo"
+msgstr "Herroep"
-#: ../../network/tools.pm_.c:109
-msgid "Choose your country"
-msgstr "Kies u land"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Exit"
+msgstr "Verlaat"
-#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
-msgid "Dialing mode"
-msgstr "Belmetode"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose a partition"
+msgstr "Kies 'n partisie"
-#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
-msgid "Connection speed"
-msgstr "Konneksiespoed"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose another partition"
+msgstr "Kies 'n ander partisie"
-#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
-msgid "Connection timeout (in sec)"
-msgstr "Konneksie tydlimiet (in sekondes)"
+#: ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Change type"
+msgstr "Verander tipe"
-#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
-msgid "Account Login (user name)"
-msgstr "Gebruikerskode"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Search servers"
+msgstr "DNS bediener"
-#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
-#: ../../standalone/drakconnect_.c:647
-msgid "Account Password"
-msgstr "Wagwoord"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain"
+msgstr "NIS-domein"
-#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
-msgid "United Kingdom"
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../partition_table.pm_.c:603
-msgid "mount failed: "
-msgstr "heg het gefaal"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain Authentication Required"
+msgstr "Magtiging"
-#: ../../partition_table.pm_.c:667
-msgid "Extended partition not supported on this platform"
-msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Another one"
+msgstr "Internet"
-#: ../../partition_table.pm_.c:685
-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."
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Which username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
-"Die enigste oplossing is om die primкre partisie te skuif sodat die gat\n"
-"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:774
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Herstel van lйer %s het gefaal: %s"
+msgid "cpu # "
+msgstr ""
-#: ../../partition_table.pm_.c:776
-msgid "Bad backup file"
-msgstr "Korrupte rugsteunlкer"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SMBus controllers"
+msgstr ""
-#: ../../partition_table.pm_.c:796
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Error writing to file %s"
-msgstr "Fout in die skryf van %s"
+msgid "USB controllers"
+msgstr ""
-#: ../../partition_table/raw.pm_.c:192
-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"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SCSI controllers"
msgstr ""
-"Iets vrots gebeur op u hardeskyf.\n"
-"'n Dataintegriteitstoets het misluk.\n"
-"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
-"eindig."
-#: ../../pkgs.pm_.c:26
-msgid "must have"
-msgstr "benodig"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "(E)IDE/ATA controllers"
+msgstr ""
-#: ../../pkgs.pm_.c:27
-msgid "important"
-msgstr "belangrik"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Joystick"
+msgstr ""
-#: ../../pkgs.pm_.c:28
-msgid "very nice"
-msgstr "baie oulik"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Scanner"
+msgstr "Selekteer 'n videokaart"
-#: ../../pkgs.pm_.c:29
-msgid "nice"
-msgstr "oulik"
+#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Unknown/Others"
+msgstr "Generies"
-#: ../../pkgs.pm_.c:30
-msgid "maybe"
-msgstr "moontlik"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Bridges and system controllers"
+msgstr ""
-#: ../../printer/data.pm_.c:18
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Druk sonder drukkertou"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Modem"
+msgstr "Muis"
-#: ../../printer/data.pm_.c:19
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Ethernetcard"
+msgstr "Ethernetkaart"
-#: ../../printer/data.pm_.c:30
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Lyndrukkerdiensprogram"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Processors"
+msgstr ""
-#: ../../printer/data.pm_.c:31
-msgid "LPD"
-msgstr "LPD"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Webcam"
+msgstr ""
-#: ../../printer/data.pm_.c:51
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - Nuwe generasie LPR"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Soundcard"
+msgstr "Klankkaart"
-#: ../../printer/data.pm_.c:52
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Other MultiMedia devices"
+msgstr "Ander"
-#: ../../printer/data.pm_.c:75
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Tvcard"
+msgstr "TV-kaaer"
-#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Videocard"
+msgstr "Videomodus"
-#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
-#: ../../printer/detect.pm_.c:250
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Onbekende model"
+#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Tape"
+msgstr "Tipe"
-#: ../../printer/main.pm_.c:26
-msgid "Local printer"
-msgstr "Plaaslike drukker"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "DVD-ROM"
+msgstr ""
-#
-#: ../../printer/main.pm_.c:27
-msgid "Remote printer"
-msgstr "Eksterne drukker"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CD/DVD burners"
+msgstr ""
-#
-#: ../../printer/main.pm_.c:28
-msgid "Printer on remote CUPS server"
-msgstr "Eksterne CUPS-drukker"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CDROM"
+msgstr ""
-#
-#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
-msgid "Printer on remote lpd server"
-msgstr "Eksterne LPD-drukker"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Disk"
+msgstr "Deens"
-#
-#: ../../printer/main.pm_.c:30
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "Netwerkdrukker (sok)"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Zip"
+msgstr ""
-#: ../../printer/main.pm_.c:31
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Floppy"
+msgstr "Stoor op floppie"
-#: ../../printer/main.pm_.c:32
-msgid "Printer on NetWare server"
-msgstr "Eksterne Netware-drukker"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Let me pick any driver"
+msgstr ""
-#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
-msgid "Enter a printer device URI"
-msgstr "Tik drukkertoestel URI in"
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Driver:"
+msgstr "Drywer"
-#: ../../printer/main.pm_.c:34
-msgid "Pipe job into a command"
-msgstr "Pyk drukstuk na program"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"If you really think that you know which driver is the right one for your "
+"card\n"
+"you can pick one in the above list.\n"
+"\n"
+"The current driver for your \"%s\" sound card is \"%s\" "
+msgstr ""
-#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
-#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
-msgid "Unknown model"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Choosing an arbitratry driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The classic bug sound tester is to run the following commands:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
+"by default\n"
+"\n"
+"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Sound trouble shooting"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Error: The \"%s\" driver for your sound card is unlisted"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Unkown driver"
msgstr "Onbekende model"
-#: ../../printer/main.pm_.c:317
-#, fuzzy
-msgid "Local Printers"
-msgstr "Plaaslike drukker"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#
-#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Eksterne drukker"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No known driver"
+msgstr ""
-#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid " on parallel port \\/*%s"
+msgid ""
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
msgstr ""
-#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", USB printer \\/*%s"
+msgid "No open source driver"
msgstr ""
-#: ../../printer/main.pm_.c:334
+#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oops the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../printer/main.pm_.c:337
-msgid ", multi-function device on USB"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Trouble shooting"
msgstr ""
-#: ../../printer/main.pm_.c:339
-msgid ", multi-function device on HP JetDirect"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-#: ../../printer/main.pm_.c:341
-msgid ", multi-function device"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../printer/main.pm_.c:344
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Fout in die skryf van %s"
+msgid "Sound configuration"
+msgstr "Konfigurasie"
-#: ../../printer/main.pm_.c:346
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../printer/main.pm_.c:348
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid "No alternative driver"
msgstr ""
-#: ../../printer/main.pm_.c:352
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgid "enable radio support"
msgstr ""
-#: ../../printer/main.pm_.c:356
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+msgid "Radio support:"
msgstr ""
-#: ../../printer/main.pm_.c:358
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "PLL setting:"
+msgstr "Formatering"
+
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ", using command %s"
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
-msgid "Raw printer (No driver)"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../printer/main.pm_.c:647
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Tuner type:"
+msgstr "Verander tipe"
+
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Card model:"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid "(on %s)"
-msgstr "(op %s)"
+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 ""
-#: ../../printer/main.pm_.c:649
-msgid "(on this machine)"
-msgstr "(op hierdie rekenaar)"
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Unknown|Generic"
+msgstr "Generies"
-#: ../../printer/main.pm_.c:674
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS-bediener IP:"
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
-#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
-#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
-#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
-#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
-msgid " (Default)"
-msgstr " (Verstek)"
+#: ../../interactive/newt.pm:1
+#, fuzzy, c-format
+msgid "Do"
+msgstr "Klaar"
-#: ../../printer/printerdrake.pm_.c:27
-msgid "Select Printer Connection"
-msgstr "Kies drukkerkonneksie"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (default %s) "
+msgstr "U keuse? (verstek %s) "
-#: ../../printer/printerdrake.pm_.c:28
-msgid "How is the printer connected?"
-msgstr "Hoe is die drukker gekonekteer?"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Bad choice, try again\n"
+msgstr "Swak keuse, probeer weer\n"
-#: ../../printer/printerdrake.pm_.c:30
-#, fuzzy
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Re-submit"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"\n"
-"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-drukker\"."
-#: ../../printer/printerdrake.pm_.c:38
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid ""
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Konfigurasie"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "=> There are many things to choose from (%s).\n"
+msgstr ""
-#
-#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Verwyder CUPS-bediener"
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "U keuse? (verstek %s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Do you want to click on this button?"
+msgstr "Wil u aboot gebruik?"
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Opsies: %s"
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "U keuse? (verstek %s) "
-#: ../../printer/printerdrake.pm_.c:83
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:84
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Laai van module %s het gefaal.\n"
+"Wil u ander parameters probeer?"
-#: ../../printer/printerdrake.pm_.c:88
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Specify options"
+msgstr "Spesifieer opsies"
-#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
-msgid "The port number should be an integer!"
-msgstr "Die poortnommer moet heeltal wees."
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Autoprobe"
+msgstr "Aftas"
-#: ../../printer/printerdrake.pm_.c:99
-msgid "CUPS server IP"
-msgstr "CUPS-bediener IP:"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
+msgstr ""
+"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
+"meeste gevalle dit nie nodig wees nie. Wil u ekstra opsies voorsien od moet\n"
+"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
+"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
-#: ../../standalone/harddrake2_.c:63
-msgid "Port"
-msgstr "Poort"
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Watter %s drywer meot ek probeer?"
-#: ../../printer/printerdrake.pm_.c:102
-msgid "Automatic CUPS configuration"
-msgstr "Outomatiese CUPS konfigurasie"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Module options:"
+msgstr "Module opsies:"
-#
-#: ../../printer/printerdrake.pm_.c:159
-#, fuzzy
-msgid "Checking your system..."
-msgstr "Watter drukkerstelsel verlang u?"
+#: ../../modules/interactive.pm:1
+#, 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''"
-#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
-#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
-#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
-#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
-#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
-#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
-#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
-#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
-#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
-#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Drukker"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "(module %s)"
+msgstr "(module %s)"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Drywer vir %s kaart %s in installasieproses"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "See hardware info"
+msgstr "Sien hardeware inligting"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Het u enige %s koppelvlakke?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have another one?"
+msgstr "Beskik u oor nog?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Het %s %s koppelvlakke gevind"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "comma separated strings"
+msgstr "Formateer partisies"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "comma separated numbers"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:167
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "a number"
+msgstr "Telefoonnommer"
+
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#
-#: ../../printer/printerdrake.pm_.c:179
-#, fuzzy
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"The following printers\n"
-"\n"
-msgstr "Dei volgende pakkette gaan verwyder word"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Die mees algemene metode vir ADSL is om pppoe te gebruik.\n"
+"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
+"Indien u nie weet nie, kies 'gebruik pppoe'."
-#
-#: ../../printer/printerdrake.pm_.c:180
-#, fuzzy
+#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
+#, c-format
+msgid "Connect to the Internet"
+msgstr "Konnekteer aan die internet"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using pppoe) usb"
+msgstr ""
+
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "Alcatel speedtouch usb"
+msgstr "speedtouch USB"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use dhcp"
+msgstr "gebruik dhcp"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pptp"
+msgstr "gebruik pptp"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pppoe"
+msgstr "gebruik pppoe"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Other ports"
+msgstr "Toets poorte"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
-"The following printer\n"
-"\n"
-msgstr "Dei volgende pakkette gaan verwyder word"
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:182
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
-"\n"
-"and one unknown printer are "
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:184
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"and %d unknown printers are "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"are "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "No network card"
+msgstr "geen netwerkkaart gevind nie"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "POP and IMAP Server"
+msgstr "LDAP-bediener"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Mail Server"
+msgstr "Datbasis"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Domain Name Server"
+msgstr "Domeinnaam"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "Bediener"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "Rekenaarnaam"
+
+#
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Host name"
+msgstr "Rekenaarnaam"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
msgid ""
"\n"
-"is "
+"\n"
+"Enter a Zeroconf host name without any dot if you don't\n"
+"want to use the default host name."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:189
-#, fuzzy
-msgid "directly connected to your system"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Tik asb die rekenaarnaam in.\n"
+"Sekere DHCP-bedieners benodig die rekenaarnaam.\n"
+"Dit moet 'n volle gekwalifiseerde naam wees,\n"
+"bv. ``myne.mywerk.co.za''."
-#: ../../printer/printerdrake.pm_.c:192
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Configuring network"
+msgstr "Stel netwerk op"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid "no network card found"
+msgstr "geen netwerkkaart gevind nie"
+
+#: ../../network/ethernet.pm:1
+#, c-format
msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose which network adapter you want to use to connect to Internet."
+msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
+
+#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "Choose the network interface"
+msgstr "Kies die netwerkkoppelvlak"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"Geen ethernetkaart is op die stelsel gevind nie.\n"
+"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../printer/printerdrake.pm_.c:194
+#: ../../network/ethernet.pm:1
#, c-format
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client."
msgstr ""
+"Watter DCHP-kliлnt wil u gebruik?\n"
+"Verstek is dhcp-client"
-#: ../../printer/printerdrake.pm_.c:200
-#, fuzzy
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
-#: ../../printer/printerdrake.pm_.c:214
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"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."
-#: ../../printer/printerdrake.pm_.c:215
-#, fuzzy
-msgid "Do you want to enable printing on printers in the local network?\n"
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "Wat is u ISDN-kaart?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISDN Configuration"
+msgstr "ISDN Konfigurasie"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Abort"
+msgstr "Aborteer"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Continue"
+msgstr "Gaan voort"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
-"Wil u hierdie drukker (\"%s\")\n"
-"die verstek drukker maak?"
+"\n"
+"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
+"wees.\n"
+"\n"
+"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../printer/printerdrake.pm_.c:217
-#, fuzzy
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "I don't know"
+msgstr "Ek weet nie"
-#: ../../printer/printerdrake.pm_.c:218
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Oor watter tipe kaart beskik u?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:219
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Watter protokol verlang u?"
+
+#
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr "Protokol vir die res van die wкreld"
+
+#: ../../network/isdn.pm:1
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"Protokol vir die res vd wкreld \n"
+" geen D-Kanaal nie (bruikhuurlyne)"
-#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
-#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
-#: ../../printer/printerdrake.pm_.c:3060
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Voeg drukker by"
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "European protocol"
+msgstr "Europese protokol"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "Europese protokol (EDSS1)"
-#: ../../printer/printerdrake.pm_.c:259
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
+"Kies u internetdiensvoorsiener.\n"
+"Indien nie in die lys nie kies Ongelys"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "External ISDN modem"
+msgstr "Eksterne ISDN-kaart"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Interne ISDN-kaart"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind is your ISDN connection?"
+msgstr "Watter tipe is u ISDN-konneksie?"
+
+#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#, c-format
+msgid "Network Configuration Wizard"
+msgstr "Netwerkkonfigurasie-assistent"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Old configuration (isdn4net)"
+msgstr "Ou konfigurasie (isdn4net)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "New configuration (isdn-light)"
+msgstr "Nuwe konfigurasie (Ligte ISDN/isdn-light)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"Which ISDN configuration do you prefer?\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:272
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Do nothing"
+msgstr "CUPS word gelaai"
+
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Install rpm"
+msgstr "Installasie"
+
+#: ../../network/modem.pm:1
+#, c-format
msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
+
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Title"
+msgstr "Tabel"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "Tweede DNS-bediener (opsioneel)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "Eerste DNS-bediener (opsioneel)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Domain name"
+msgstr "Domeinnaam"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "CHAP"
+msgstr "CHAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Script-based"
+msgstr "Skriptipe"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Terminal-based"
+msgstr "Terminaaltipe"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Login ID"
+msgstr "Aantekenkode"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Phone number"
+msgstr "Telefoonnommer"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection name"
+msgstr "Konneksienaam"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Dialup options"
+msgstr "Opbelopsies"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
+
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "Network Configuration"
+msgstr "Netwerkkonfigurasie"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+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."
+msgstr ""
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
+"om die rekenaarnaamveranderingprobleem te voorkom."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
+msgstr ""
+"Geluk, die netwerk en internetkonfigurasie is voltooi.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) and you Windows machines must be connected and "
-"turned on.\n"
+"Die kongiurasie gaan op u stelsel toegepas word.\n"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you don't need "
-"it.\n"
+"%s"
+msgstr ""
+"Daar was 'n probleem met die herlaai van die netwerk.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"%s"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
-#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Network configuration"
+msgstr "Netwerkkonfigurasie"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Do you want to start the connection at boot?"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection"
+msgstr "Internetkonneksie"
+
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+msgstr ""
+"U het meer as een internetkonneksiemetode opgste.\n"
+"Kies die een wat u verlang.\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Kies die konneksie wat u wil konfigureer"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ethernet card(s) detected"
+msgstr "ethernet kaart(e) bespeur"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "LAN connection"
+msgstr "LAN konneksie"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "cable connection detected"
+msgstr "Kabelkonneksie bespeur"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Cable connection"
+msgstr "Kabelkonneksie"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "detected"
+msgstr "%s bespeur"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ADSL connection"
+msgstr "ADSL konneksie"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected %s"
+msgstr "%s bespeur"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ISDN connection"
+msgstr "ISDN konneksie"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Winmodem connection"
+msgstr "Normale modemkonneksie"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected on port %s"
+msgstr "Op poort %s bespeur"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Normal modem connection"
+msgstr "Normale modemkonneksie"
+
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Detecting devices..."
+msgstr "Toestel word afgetas..."
+
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Mode"
+msgstr "Kundige bedryfsvlak"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Use auto detection"
+msgstr "Gebruik outobespeuring"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the profile to configure"
+msgstr "Kies die profiel om te konfigureer"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Welcome to The Network Configuration Wizard.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\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 ""
+"Welkom by die Netwerkkonfigurasie-assistent\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
+"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"Omdat u netwerk installasie doen, is u netwerk aslreeds opgestel.\n"
+"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
+"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../printer/printerdrake.pm_.c:289
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you don't need it.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Press OK to continue."
msgstr ""
+"\n"
+"\n"
+"\n"
+"Ons gan nou die %s konneksie konfigureer.\n"
+"\n"
+"\n"
+"Drk OK om voort te gaan."
-#
-#: ../../printer/printerdrake.pm_.c:307
-#, fuzzy
-msgid "Auto-detect printers connected to this machine"
-msgstr "Eksterne drukker"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "We are now going to configure the %s connection."
+msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../printer/printerdrake.pm_.c:310
-msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection & configuration"
+msgstr "Internetkonneksie en konfigurasie"
-#: ../../printer/printerdrake.pm_.c:313
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Configure the connection"
+msgstr "Stel netwerk op"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Disconnect"
+msgstr "Diskonnekteer"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Connect"
+msgstr "Konnekteer"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
+"\n"
+"U kan u konneksie herkonfigureer."
-#: ../../printer/printerdrake.pm_.c:329
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"You can connect to the Internet or reconfigure your connection."
+msgstr ""
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"U kan aan die internet konnekter of u konneksie herkonfigureer."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are not currently connected to the Internet."
+msgstr "U is nie tans aan die internet gekonnekteer nie."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"U kan diskonnekteer or herkonfigureer."
-#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Printer auto-detection"
-msgstr "Gebruik outobespeuring"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are currently connected to the Internet."
+msgstr "U is tans aan die internet gekonnekteer."
-#: ../../printer/printerdrake.pm_.c:385
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
+
+#: ../../network/network.pm:1
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid "Proxy should be http://..."
+msgstr "Instaanbediener moet begin met http://"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP instaanbediener"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP instaanbediener"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Proxies configuration"
+msgstr "Instaanbedienerkonfigurasie"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway device"
+msgstr "Netwerkportaaltoestel"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway (e.g. %s)"
+msgstr ""
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server"
+msgstr "DNS bediener"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
+msgstr ""
+"Tik asb die rekenaarnaam in.\n"
+"Dit moet 'n volle gekwalifiseerde naam wees,\n"
+"bv. ``myne.mywerk.co.za''.\n"
+"U mag ook die netwerkhek byvoeg indien daar een is"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:387
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
+msgstr ""
+
+#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+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:1
#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+msgid "Start at boot"
+msgstr "Gelaai tydens herlaaityd"
-#: ../../printer/printerdrake.pm_.c:391
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "%s bespeur"
+msgid "Network Hotplugging"
+msgstr "Netwerkkonfigurasie"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Track network card id (useful for laptops)"
+msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "(bootp/dhcp/zeroconf)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Automatic IP"
+msgstr "Outomatiese IP"
+
+#
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Netmask"
+msgstr "Netmasker"
+
+#
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "IP address"
+msgstr "IP adres"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid " (driver %s)"
+msgstr "(drywer %s)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfigureer netwerktoestel %s"
-#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
-#: ../../printer/printerdrake.pm_.c:440
+#: ../../network/network.pm:1
#, c-format
-msgid "Printer on parallel port \\/*%s"
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
+msgstr ""
+"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
+"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
+"(1.2.3.4) gegee word."
+
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"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 ""
+"WAARSKUWING: Die toestel is alreeds opgestel om aan die internette "
+"konnekteer.\n"
+"U kan die toestel net so aanvaar.\n"
+"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
-#: ../../printer/printerdrake.pm_.c:443
+#: ../../network/shorewall.pm:1
#, c-format
-msgid "USB printer \\/*%s"
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fixes after installation."
msgstr ""
+"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
+"dietyd self regstellings moet aanbring."
+
+#: ../../network/shorewall.pm:1
+#, c-format
+msgid "Firewalling configuration detected!"
+msgstr "Vuurmuurkonfigurasie gevind!"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Password"
+msgstr "Wagwoord"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Login (user name)"
+msgstr "Gebruikerskode"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection timeout (in sec)"
+msgstr "Konneksie tydlimiet (in sekondes)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection speed"
+msgstr "Konneksiespoed"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Dialing mode"
+msgstr "Belmetode"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Choose your country"
+msgstr "Kies u land"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 2 (optional)"
+msgstr "Voorsiener DNS 2 (opsioneel)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "Voorsiener DNS 1 (opsioneel)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider phone number"
+msgstr "Voorsiener se telefoonnommer"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Voorsienernaam (bv voorsiener.co.za)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Your personal phone number"
+msgstr "U persoonlike telefoonnommer"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_1"
+msgstr "Kaart IO_1"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_0"
+msgstr "Kaart IO_0"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO"
+msgstr "Kaart I/O"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IRQ"
+msgstr "Kaart IRQ"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Vul asb. die velde hieronder in"
#
-#: ../../printer/printerdrake.pm_.c:399
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Connection Configuration"
+msgstr "Konneksiekonfigurasie"
+
+#: ../../network/tools.pm:1
#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Netwerkdrukker (sok)"
+msgid ""
+"The system doesn't seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"Die tselsel blyk nie aan die internet gekonnekteer te wees nie.\n"
+"Probeer om u stelsel te herkonfigureer."
-#: ../../printer/printerdrake.pm_.c:401
+#: ../../network/tools.pm:1
#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+msgid "For security reasons, it will be disconnected now."
+msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
-#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
-#, fuzzy
-msgid "Local Printer"
-msgstr "Plaaslike drukker"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Die stelsel is nou aan die internet gekonnekteer."
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Testing your connection..."
+msgstr "Konneksie word getoets..."
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Wil u nou aan die internet konnekteer?"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Internet configuration"
+msgstr "Internetkonfigurasie"
-#: ../../printer/printerdrake.pm_.c:526
+#: ../../partition_table/raw.pm:1
+#, fuzzy, c-format
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, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
+"Iets vrots gebeur op u hardeskyf.\n"
+"'n Dataintegriteitstoets het misluk.\n"
+"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
+"eindig."
-#: ../../printer/printerdrake.pm_.c:530
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Tik drukkertoestel URI in"
+#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " (Default)"
+msgstr " (Verstek)"
-#: ../../printer/printerdrake.pm_.c:539
-#, fuzzy
-msgid "No printer found!"
+#: ../../printer/cups.pm:1
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "CUPS-bediener IP:"
+
+#
+#: ../../printer/cups.pm:1 ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Remote Printers"
+msgstr "Eksterne drukker"
+
+#: ../../printer/cups.pm:1 ../../printer/data.pm:1
+#, c-format
+msgid "CUPS"
+msgstr "CUPS"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on this machine)"
+msgstr "(op hierdie rekenaar)"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on %s)"
+msgstr "(op %s)"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng"
+msgstr "LPRng"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - Nuwe generasie LPR"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD"
+msgstr "LPD"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Lyndrukkerdiensprogram"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ"
+msgstr "PDQ"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Druk sonder drukkertou"
+
+#: ../../printer/detect.pm:1
+#, fuzzy, c-format
+msgid "Unknown Model"
+msgstr "Onbekende model"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Unknown model"
+msgstr "Onbekende model"
+
+#
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Host %s"
+msgstr "Rekenaarnaam"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network %s"
+msgstr "Netwerkkoppelvlak"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Interface \"%s\""
+msgstr "Koppelvlak %s"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local network(s)"
+msgstr "geen netwerkkaart gevind nie"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer (No driver)"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", using command %s"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", printing to %s"
+msgstr "Fout in die skryf van %s"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on USB"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on parallel port \\#%s"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", USB printer"
+msgstr "Geen drukker"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", USB printer \\#%s"
+msgstr ""
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " on parallel port \\#%s"
+msgstr ""
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printers"
msgstr "Plaaslike drukker"
-#: ../../printer/printerdrake.pm_.c:548
-#, fuzzy
-msgid "Available printers"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Pipe job into a command"
+msgstr "Pyk drukstuk na program"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter a printer device URI"
+msgstr "Tik drukkertoestel URI in"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on NetWare server"
+msgstr "Eksterne Netware-drukker"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+
+#
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network printer (TCP/Socket)"
+msgstr "Netwerkdrukker (sok)"
+
+#
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer on remote lpd server"
+msgstr "Eksterne LPD-drukker"
+
+#
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on remote CUPS server"
+msgstr "Eksterne CUPS-drukker"
+
+#
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Remote printer"
+msgstr "Eksterne drukker"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Local printer"
msgstr "Plaaslike drukker"
-#: ../../printer/printerdrake.pm_.c:552
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring applications..."
+msgstr "Konfigureer drukker"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printerdrake"
+msgstr "Drukker"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to configure another printer?"
+msgstr "Wil u die konfigurasie toets?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Wil u die werklik die drukker verwyder?"
+
+#
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove printer"
+msgstr "Verwyder drukker"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Know how to use this printer"
+msgstr "Wil u die konfigurasie toets?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print test pages"
+msgstr "Druk toetsbladsy(e)"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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"
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:553
+#: ../../printer/printerdrake.pm:1
+#, c-format
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"
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:555
-msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:556
-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 "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:558
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:559
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:561
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:565
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Tik drukkertoestel URI in"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printer/printerdrake.pm_.c:584
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Kleurkonfigurasie"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Default printer"
+msgstr "Verstek drukker"
-#: ../../printer/printerdrake.pm_.c:633
-msgid "Remote lpd Printer Options"
-msgstr "Eksterne lpd drukkeropsies"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Set this printer as the default"
+msgstr "Maak hierdie die verstekdrukker"
-#: ../../printer/printerdrake.pm_.c:634
-#, fuzzy
-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 ""
-"Om 'n eksterne lpd drukkertou te gebruik,moett die naam\n"
-"van die drukkkerbediener en die naam van die drukkertou\n"
-"voorsien word."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer options"
+msgstr "Drukkeropsies"
-#: ../../printer/printerdrake.pm_.c:635
-msgid "Remote host name"
-msgstr "Eksterne bedienernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model"
+msgstr "Drukkervervaardiger, model"
-#
-#: ../../printer/printerdrake.pm_.c:636
-msgid "Remote printer name"
-msgstr "Eksterne drukkernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model, driver"
+msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printer/printerdrake.pm_.c:639
-msgid "Remote host name missing!"
-msgstr "Eksterne bedienernaam ontbreek!"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Drukkerdata word gelees..."
-#: ../../printer/printerdrake.pm_.c:643
-msgid "Remote printer name missing!"
-msgstr "Eksterne drukkernam ontbreek!"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer name, description, location"
+msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer connection type"
+msgstr "Drukkerkonneksietipe"
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "%s bespeur"
+msgid "Learn how to use this printer"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Scanning network..."
-msgstr "Konneksie word begin..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Raw printer"
+msgstr "Geen drukker"
-#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+msgid "Do it!"
+msgstr "Gaan voort!"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Close"
+msgstr "Sluit af"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
+"Drukker %s: %s %s\n"
+"Wil u hierdie drukker verander?"
-#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Modify printer configuration"
+msgstr "Verander drukkerkonfigurasie"
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Netwerk op pad af"
+msgid "Add a new printer"
+msgstr "Voeg drukker by"
-#: ../../printer/printerdrake.pm_.c:795
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) drukkeropsies"
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Normal Mode"
+msgstr "Normale modus"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Change the printing system"
+msgstr "Stel netwerk op"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing"
+msgstr "Druk"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS configuration"
+msgstr "Konfigurasie"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:796
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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 "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
+"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 ""
-"Om na 'n SMB drukker te druk moet u die volgende voorsien:\n"
-"SMB rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP rekenaarnaam\n"
-"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
-"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
+"Hier is die bestaande drukkertoue.\n"
+"U kan byvoeg or verwyder soos nodig."
-#: ../../printer/printerdrake.pm_.c:797
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Hier is die bestaande drukkertoue.\n"
+"U kan byvoeg or verwyder soos nodig."
-#: ../../printer/printerdrake.pm_.c:799
-msgid "SMB server host"
-msgstr "SMB-bedienernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing system: "
+msgstr "Drukkerstelsel:"
-#: ../../printer/printerdrake.pm_.c:800
-msgid "SMB server IP"
-msgstr "SMB-bediener IP:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Would you like to configure printing?"
+msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printer/printerdrake.pm_.c:801
-msgid "Share name"
-msgstr "Drukkernaam:"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing Printerdrake..."
+msgstr "Drukkerdata word gelees..."
-#: ../../printer/printerdrake.pm_.c:804
-msgid "Workgroup"
-msgstr "Werkgroep:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking installed software..."
+msgstr "Installeerde sagteware word deursoek..."
-#: ../../printer/printerdrake.pm_.c:806
-#, fuzzy
-msgid "Auto-detected"
-msgstr "Gebruik outobespeuring"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing Foomatic..."
+msgstr "Installeer pakket %s"
-#: ../../printer/printerdrake.pm_.c:816
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Уf die bedienernaam уf die bediener-IP moet verskaf word!"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Failed to configure printer \"%s\"!"
+msgstr "Konfigureer drukker"
-#: ../../printer/printerdrake.pm_.c:820
-msgid "Samba share name missing!"
-msgstr "SAMBA-deelnaam ontbreek!"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Konfigureer drukker"
-#: ../../printer/printerdrake.pm_.c:826
-msgid "SECURITY WARNING!"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Reading printer data..."
+msgstr "Drukkerdata word gelees..."
+
+#
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Spooler"
+msgstr "Kies drukkerspoelprogram"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Installeer pakket %s"
-#: ../../printer/printerdrake.pm_.c:827
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "LPD word verwyder..."
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
+msgstr ""
+
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Starting the printing system at boot time"
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
+"This printing system runs a daemon (background process) which waits for "
+"print jobs and handles them. This daemon is also accessable by remote "
+"machines through the network and so it is a possible point for attacks. "
+"Therefore only a few selected daemons are started by default in this "
+"security level.\n"
"\n"
+"Do you really want to configure printing on this machine?"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:837
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "paranoid"
+msgstr "Paranoпes"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "high"
+msgstr "Hoog"
+
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Restarting printing system..."
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuration of a remote printer"
+msgstr "Konfigureer drukker"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+"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 ""
-#: ../../printer/printerdrake.pm_.c:840
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network is accessable after booting your "
+"system and correct the configuration using the Mandrake Control Center, "
+"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
+"printer, also using the Mandrake Control Center, section \"Hardware\"/"
+"\"Printer\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:911
-msgid "NetWare Printer Options"
-msgstr "NetWare drukkeropsies"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configure the network now"
+msgstr "Stel netwerk op"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Go on without configuring the network"
+msgstr "Stel netwerk op"
-#: ../../printer/printerdrake.pm_.c:912
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
+"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 "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
msgstr ""
-"Om na 'n Netware drukker te druk moet u die volgende voorsien:\n"
-"Netware rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP\n"
-"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
-"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printer/printerdrake.pm_.c:913
-msgid "Printer Server"
-msgstr "Drukkerbediener"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Network functionality not configured"
+msgstr "Monitor is nie opgestel nie"
-#: ../../printer/printerdrake.pm_.c:914
-msgid "Print Queue Name"
-msgstr "Drukkertounaam"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Starting network..."
+msgstr "Konneksie word begin..."
-#: ../../printer/printerdrake.pm_.c:919
-msgid "NCP server name missing!"
-msgstr "NCP-bedienernaam ontbreek!"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Refreshing printer data..."
+msgstr "Drukkerdata word gelees..."
-#: ../../printer/printerdrake.pm_.c:923
-msgid "NCP queue name missing!"
-msgstr "NCP-tounaam ontbreek!"
+#: ../../printer/printerdrake.pm:1
+#, 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 ""
-#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ", host \"%s\", port %s"
+msgid "Transfer printer configuration"
+msgstr "Dra drukkerkonfigurasie oor"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transferring %s..."
+msgstr "%s word oorgedra..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "New printer name"
+msgstr "Nuwe drukkernaam"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Host \"%s\", port %s"
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1030
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Sokdrukkeropsies"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer"
+msgstr "Oordrag"
-#: ../../printer/printerdrake.pm_.c:1032
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) into the input fields."
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1033
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do not transfer printers"
+msgstr "Moet nie drukkers oordra nie"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
-"drukker voorsien en dalk ook 'n poortnommer voorsien.\n"
-"Met HP JetDirect-bedieners is die poortnommer gewoonlik 9100,\n"
-"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
-"wat saam met die hardeware gekom het."
-#: ../../printer/printerdrake.pm_.c:1037
-#, fuzzy
-msgid "Printer host name or IP missing!"
-msgstr "Drukkerbedienernaam ontbreek!"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1059
-#, fuzzy
-msgid "Printer host name or IP"
-msgstr "Drukkerbedienernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
-msgid "Printer Device URI"
-msgstr "Drukkertoestel URI"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printer/printerdrake.pm_.c:1108
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"U kan die URI om die drukker te bereik direk spesifiseer. Die URI moet in "
-"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
-"spoelprogramme ondersteun nie."
-#: ../../printer/printerdrake.pm_.c:1123
-msgid "A valid URI must be entered!"
-msgstr "'n Geldige URI moet verskaf word!"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1463
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"Elke drukker benodig naam (bv. lp).\n"
-"Die Beskrywing- en Liggingvelde is opsioneel.\n"
-"Hulle dien as inligting vir gebruikers."
-#: ../../printer/printerdrake.pm_.c:1464
-msgid "Name of printer"
-msgstr "Drukkernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Your 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 ""
-#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
-msgid "Description"
-msgstr "Beskrywing"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Your 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\" on the command line to get more "
+"information.\n"
+"\n"
+"Do not use \"scannerdrake\" for this device!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1466
-msgid "Location"
-msgstr "Ligging"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing test page(s)..."
+msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Drukkerdata word gelees..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print option list"
+msgstr "Drukkeropsies"
-#: ../../printer/printerdrake.pm_.c:1482
-#, fuzzy
-msgid "Preparing printer database..."
-msgstr "Drukkerdata word gelees..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "Netwerk op pad af"
-#
-#: ../../printer/printerdrake.pm_.c:1578
-#, fuzzy
-msgid "Your printer model"
-msgstr "Eksterne drukkernaam"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../printer/printerdrake.pm_.c:1579
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
+"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%s\n"
"\n"
-"For your printer Printerdrake has found:\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
"\n"
-"%s"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
-#, fuzzy
-msgid "The model is correct"
-msgstr "Is dit korrek?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
+msgstr ""
-#
-#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
-#: ../../printer/printerdrake.pm_.c:1589
-#, fuzzy
-msgid "Select model manually"
-msgstr "Eksterne drukkernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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 ""
-#: ../../printer/printerdrake.pm_.c:1606
-msgid "Printer model selection"
-msgstr "Drukkermodelkeuse"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1607
-msgid "Which printer model do you have?"
-msgstr "Oor watter tipe drukker beskik u?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1608
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1611
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"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 ""
-#: ../../printer/printerdrake.pm_.c:1697
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Verander drukkerkonfigurasie"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Did it work properly?"
+msgstr "Het dit reg gewerk?"
-#: ../../printer/printerdrake.pm_.c:1698
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
msgstr ""
+"Toetsbladsy(e) is na die drukker gestuur.\n"
+"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
-#, fuzzy
-msgid "Lexmark inkjet configuration"
-msgstr "Internetkonfigurasie"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+msgstr ""
+"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
+"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
+"Drukstatus:\n"
+"%s\n"
+"\n"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do not print any test page"
+msgstr "Druk toetsbladsy(e)"
-#: ../../printer/printerdrake.pm_.c:1719
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Photo test page"
+msgstr "Fototoetsbladsy"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (A4)"
+msgstr "Alternatiewe toetsbladsy (A4)"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (Letter)"
+msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Standard test page"
+msgstr "Standaard toetsbladsy"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print"
+msgstr "Druk"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "No test pages"
+msgstr "Geen toetsbladsye"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
+"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 "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1746
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Test pages"
+msgstr "Toetsbladsye"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"Wil u hierdie drukker (\"%s\")\n"
+"die verstek drukker maak?"
-#: ../../printer/printerdrake.pm_.c:1749
-msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s out of range!"
+msgstr "Opsie %s is buite bereik!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be a number!"
+msgstr "Opsie %s moet 'n nommer wees"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be an integer number!"
+msgstr "Opsie %s moet 'n heeltal wees!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1750
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Your printer belongs to the group of GDI laser printers (winprinters) sold "
"by different manufacturers which uses the Zenographics ZJ-stream raster "
@@ -7668,1349 +10442,1779 @@ msgid ""
"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1972
-msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1981
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Opsie %s moet 'n heeltal wees!"
+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."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1985
-#, c-format
-msgid "Option %s must be a number!"
-msgstr "Opsie %s moet 'n nommer wees"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Lexmark inkjet configuration"
+msgstr "Internetkonfigurasie"
-#: ../../printer/printerdrake.pm_.c:1989
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s out of range!"
-msgstr "Opsie %s is buite bereik!"
+msgid ""
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2028
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-"Wil u hierdie drukker (\"%s\")\n"
-"die verstek drukker maak?"
-#: ../../printer/printerdrake.pm_.c:2051
-msgid "Test pages"
-msgstr "Toetsbladsye"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "OKI winprinter configuration"
+msgstr "Verander drukkerkonfigurasie"
-#: ../../printer/printerdrake.pm_.c:2052
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2056
-msgid "No test pages"
-msgstr "Geen toetsbladsye"
-
-#: ../../printer/printerdrake.pm_.c:2057
-msgid "Print"
-msgstr "Druk"
-
-#: ../../printer/printerdrake.pm_.c:2114
-msgid "Standard test page"
-msgstr "Standaard toetsbladsy"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Find the correct model in the list when a wrong model or "
+"\"Raw printer\" is highlighted."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2117
-msgid "Alternative test page (Letter)"
-msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Which printer model do you have?"
+msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printer/printerdrake.pm_.c:2120
-msgid "Alternative test page (A4)"
-msgstr "Alternatiewe toetsbladsy (A4)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer model selection"
+msgstr "Drukkermodelkeuse"
-#: ../../printer/printerdrake.pm_.c:2122
-msgid "Photo test page"
-msgstr "Fototoetsbladsy"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Reading printer database..."
+msgstr "Drukkerdata word gelees..."
-#: ../../printer/printerdrake.pm_.c:2126
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Druk toetsbladsy(e)"
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Select model manually"
+msgstr "Eksterne drukkernaam"
-#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
-msgid "Printing test page(s)..."
-msgstr "Toetsbladsy(e) word gedruk..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The model is correct"
+msgstr "Is dit korrek?"
-#: ../../printer/printerdrake.pm_.c:2159
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-msgstr ""
-"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-"Drukstatus:\n"
-"%s\n"
+"For your printer Printerdrake has found:\n"
"\n"
-
-#: ../../printer/printerdrake.pm_.c:2163
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"%s"
msgstr ""
-"Toetsbladsy(e) is na die drukker gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printer/printerdrake.pm_.c:2170
-msgid "Did it work properly?"
-msgstr "Het dit reg gewerk?"
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Your printer model"
+msgstr "Eksterne drukkernaam"
-#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
-#, fuzzy
-msgid "Raw printer"
-msgstr "Geen drukker"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing printer database..."
+msgstr "Drukkerdata word gelees..."
-#: ../../printer/printerdrake.pm_.c:2216
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
-msgstr ""
+msgid "Location"
+msgstr "Ligging"
-#: ../../printer/printerdrake.pm_.c:2218
-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 ""
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Description"
+msgstr "Beskrywing"
-#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
-#: ../../printer/printerdrake.pm_.c:2248
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Name of printer"
+msgstr "Drukkernaam"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
+"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 ""
+"Elke drukker benodig naam (bv. lp).\n"
+"Die Beskrywing- en Liggingvelde is opsioneel.\n"
+"Hulle dien as inligting vir gebruikers."
-#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#: ../../printer/printerdrake.pm:1
#, 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%s\n"
-"\n"
+msgid "Enter Printer Name and Comments"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2228
-msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
-#: ../../printer/printerdrake.pm_.c:2255
-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"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
-msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing mtools packages..."
+msgstr "Installeer pakket %s"
-#: ../../printer/printerdrake.pm_.c:2253
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing SANE packages..."
+msgstr "Installeer pakket %s"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2257
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing HPOJ package..."
+msgstr "Installeer pakket %s"
-#: ../../printer/printerdrake.pm_.c:2261
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
+"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2271
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Netwerk op pad af"
+msgid "A command line must be entered!"
+msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printer/printerdrake.pm_.c:2272
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Netwerk op pad af"
+msgid "Command line"
+msgstr "Domeinnaam"
-#: ../../printer/printerdrake.pm_.c:2274
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can specify any arbitrary command line into which the job should be "
+"piped instead of being sent directly to a printer."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Netwerk op pad af"
+msgid "Pipe into command"
+msgstr "Pyk drukstuk na program"
-#: ../../printer/printerdrake.pm_.c:2275
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Netwerk op pad af"
+msgid "Detected model: %s %s"
+msgstr "%s bespeur"
-#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
-#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
-#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
-#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
-#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
-#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
-msgid "Close"
-msgstr "Sluit af"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A valid URI must be entered!"
+msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printer/printerdrake.pm_.c:2281
-#, fuzzy
-msgid "Print option list"
-msgstr "Drukkeropsies"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Device URI"
+msgstr "Drukkertoestel URI"
-#: ../../printer/printerdrake.pm_.c:2301
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Your 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\" on the command line to get more "
-"information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"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 ""
+"U kan die URI om die drukker te bereik direk spesifiseer. Die URI moet in "
+"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
+"spoelprogramme ondersteun nie."
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Port"
+msgstr "Poort"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP"
+msgstr "Drukkerbedienernaam"
-#: ../../printer/printerdrake.pm_.c:2322
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The port number should be an integer!"
+msgstr "Die poortnommer moet heeltal wees."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP missing!"
+msgstr "Drukkerbedienernaam ontbreek!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Your 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."
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
+"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
+"drukker voorsien en dalk ook 'n poortnommer voorsien.\n"
+"Met HP JetDirect-bedieners is die poortnommer gewoonlik 9100,\n"
+"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
+"wat saam met die hardeware gekom het."
-#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
-#: ../../printer/printerdrake.pm_.c:2990
-msgid "Reading printer data..."
-msgstr "Drukkerdata word gelees..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) in the input fields."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
-#: ../../printer/printerdrake.pm_.c:2426
-msgid "Transfer printer configuration"
-msgstr "Dra drukkerkonfigurasie oor"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "TCP/Socket Printer Options"
+msgstr "Sokdrukkeropsies"
-#: ../../printer/printerdrake.pm_.c:2365
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
+msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2368
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2370
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Scanning network..."
+msgstr "Konneksie word begin..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer auto-detection"
+msgstr "Gebruik outobespeuring"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP queue name missing!"
+msgstr "NCP-tounaam ontbreek!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP server name missing!"
+msgstr "NCP-bedienernaam ontbreek!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print Queue Name"
+msgstr "Drukkertounaam"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Server"
+msgstr "Drukkerbediener"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"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 "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"Om na 'n Netware drukker te druk moet u die volgende voorsien:\n"
+"Netware rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP\n"
+"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
+"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printer/printerdrake.pm_.c:2372
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NetWare Printer Options"
+msgstr "NetWare drukkeropsies"
-#: ../../printer/printerdrake.pm_.c:2374
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
+"\n"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2375
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2376
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
+"\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2379
-msgid "Do not transfer printers"
-msgstr "Moet nie drukkers oordra nie"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
-msgid "Transfer"
-msgstr "Oordrag"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Samba share name missing!"
+msgstr "SAMBA-deelnaam ontbreek!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Уf die bedienernaam уf die bediener-IP moet verskaf word!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detected"
+msgstr "Gebruik outobespeuring"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Workgroup"
+msgstr "Werkgroep:"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Share name"
+msgstr "Drukkernaam:"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "SMB-bediener IP:"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server host"
+msgstr "SMB-bedienernaam"
-#: ../../printer/printerdrake.pm_.c:2392
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2400
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+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 "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
msgstr ""
+"Om na 'n SMB drukker te druk moet u die volgende voorsien:\n"
+"SMB rekenaarnaam (dis nie noodwendig dieselfde as die TCP/IP rekenaarnaam\n"
+"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
+"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printer/printerdrake.pm_.c:2405
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) drukkeropsies"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2413
-msgid "New printer name"
-msgstr "Nuwe drukkernaam"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote printer name missing!"
+msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printer/printerdrake.pm_.c:2416
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Transferring %s..."
-msgstr "%s word oorgedra..."
+msgid "Remote host name missing!"
+msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printer/printerdrake.pm_.c:2427
+#
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Remote printer name"
+msgstr "Eksterne drukkernaam"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote host name"
+msgstr "Eksterne bedienernaam"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"Om 'n eksterne lpd drukkertou te gebruik,moett die naam\n"
+"van die drukkkerbediener en die naam van die drukkertou\n"
+"voorsien word."
-#: ../../printer/printerdrake.pm_.c:2437
-#, fuzzy
-msgid "Refreshing printer data..."
-msgstr "Drukkerdata word gelees..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote lpd Printer Options"
+msgstr "Eksterne lpd drukkeropsies"
-#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
-#: ../../printer/printerdrake.pm_.c:2528
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Konfigureer drukker"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Manual configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../printer/printerdrake.pm_.c:2446
-#, fuzzy
-msgid "Starting network..."
-msgstr "Konneksie word begin..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must choose/enter a printer/device!"
+msgstr "Tik drukkertoestel URI in"
-#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
-#: ../../printer/printerdrake.pm_.c:2485
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Stel netwerk op"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2480
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor is nie opgestel nie"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the port that your printer is connected to."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printer/printerdrake.pm_.c:2481
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
+"Please choose the port that your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2484
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Stel netwerk op"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the printer to which the print jobs should go."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printer/printerdrake.pm_.c:2518
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
+"Please choose the printer you want to set up. The configuration of the "
+"printer will work fully automatically. If your printer was not correctly "
+"detected or if you prefer a customized printer configuration, turn on "
+"\"Manual configuration\"."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2519
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Here is a list of all auto-detected printers. "
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Currently, no alternative possibility is available"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"The configuration of the printer will work fully automatically. If your "
+"printer was not correctly detected or if you prefer a customized printer "
+"configuration, turn on \"Manual configuration\"."
msgstr ""
#
-#: ../../printer/printerdrake.pm_.c:2529
-#, fuzzy
-msgid "Restarting printing system..."
-msgstr "Watter drukkerstelsel verlang u?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The following printer was auto-detected. "
+msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../printer/printerdrake.pm_.c:2568
-#, fuzzy
-msgid "high"
-msgstr "Hoog"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer to which the print jobs should go or enter a "
+"device name/file name in the input line"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2568
-#, fuzzy
-msgid "paranoid"
-msgstr "Paranoпes"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up or enter a device name/file "
+"name in the input line"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2569
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Installing a printing system in the %s security level"
+msgid ""
+"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2570
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
+"If it is not the one you want to configure, enter a device name/file name in "
+"the input line"
msgstr ""
-#
-#: ../../printer/printerdrake.pm_.c:2604
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Watter drukkerstelsel verlang u?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Available printers"
+msgstr "Plaaslike drukker"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "No printer found!"
+msgstr "Plaaslike drukker"
-#: ../../printer/printerdrake.pm_.c:2605
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must enter a device or file name!"
+msgstr "Tik drukkertoestel URI in"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"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, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
-msgid "Checking installed software..."
-msgstr "Installeerde sagteware word deursoek..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printer"
+msgstr "Plaaslike drukker"
-#: ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "LPD word verwyder..."
+msgid "USB printer \\#%s"
+msgstr "Geen drukker"
-#: ../../printer/printerdrake.pm_.c:2636
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "Installeer pakket %s"
+msgid "Printer on parallel port \\#%s"
+msgstr "Drukkerbedienernaam"
-#: ../../printer/printerdrake.pm_.c:2685
-msgid "Select Printer Spooler"
-msgstr "Kies drukkerspoelprogram"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
#
-#: ../../printer/printerdrake.pm_.c:2686
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Netwerkdrukker (sok)"
-#: ../../printer/printerdrake.pm_.c:2720
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Konfigureer drukker"
+msgid "Detected %s"
+msgstr "%s bespeur"
-#: ../../printer/printerdrake.pm_.c:2731
-#, fuzzy
-msgid "Installing Foomatic..."
-msgstr "Installeer pakket %s"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
-#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
-msgid "Printer options"
-msgstr "Drukkeropsies"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Preparing Printerdrake..."
-msgstr "Drukkerdata word gelees..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change "
+"the default option settings (paper input tray, printout quality, ...), "
+"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
+"Center."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Konfigureer drukker"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2845
-msgid "Would you like to configure printing?"
-msgstr "Wil u 'n drukwerk nou konfigureer?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2857
-msgid "Printing system: "
-msgstr "Drukkerstelsel:"
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect printers connected to this machine"
+msgstr "Eksterne drukker"
-#: ../../printer/printerdrake.pm_.c:2915
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-"Hier is die bestaande drukkertoue.\n"
-"U kan byvoeg or verwyder soos nodig."
-#: ../../printer/printerdrake.pm_.c:2916
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-"Hier is die bestaande drukkertoue.\n"
-"U kan byvoeg or verwyder soos nodig."
-#: ../../printer/printerdrake.pm_.c:2942
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) and your Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2960
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Stel netwerk op"
-
-#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
-msgid "Normal Mode"
-msgstr "Normale modus"
-
-#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
-#: ../../printer/printerdrake.pm_.c:3363
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Wil u die konfigurasie toets?"
-
-#: ../../printer/printerdrake.pm_.c:3211
-msgid "Modify printer configuration"
-msgstr "Verander drukkerkonfigurasie"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3213
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "Searching for new printers..."
+msgstr "Plaaslike drukker"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-"Drukker %s: %s %s\n"
-"Wil u hierdie drukker verander?"
-#: ../../printer/printerdrake.pm_.c:3217
-msgid "Do it!"
-msgstr "Gaan voort!"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
-msgid "Printer connection type"
-msgstr "Drukkerkonneksietipe"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
-msgid "Printer name, description, location"
-msgstr "Drukkernaam,. beskrywing, ligging"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Wil u hierdie drukker (\"%s\")\n"
+"die verstek drukker maak?"
-#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
-msgid "Printer manufacturer, model, driver"
-msgstr "Drukkervervaardiger, model, drywer"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
-msgid "Printer manufacturer, model"
-msgstr "Drukkervervaardiger, model"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
-msgid "Set this printer as the default"
-msgstr "Maak hierdie die verstekdrukker"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
-msgid "Print test pages"
-msgstr "Druk toetsbladsy(e)"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"is directly connected to your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Wil u die konfigurasie toets?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#
-#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
-msgid "Remove printer"
-msgstr "Verwyder drukker"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../printer/printerdrake.pm_.c:3282
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Drukkerdata word gelees..."
+msgid "and %d unknown printers"
+msgstr "Voeg drukker by"
-#: ../../printer/printerdrake.pm_.c:3307
-msgid "Default printer"
-msgstr "Verstek drukker"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "and one unknown printer"
+msgstr "Voeg drukker by"
+
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Checking your system..."
+msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printer/printerdrake.pm_.c:3308
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Drukker \"%s\" is nou die verstekdrukker"
+msgid "IP address of host/network:"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3310
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "This host/network is already in the list, it cannot be added again.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3312
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgid "192.168.100.0/255.255.255.0\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3313
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgid "192.168.100.0/24\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3315
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.1.*\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3317
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+msgid "10.0.0.*\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.194\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3318
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Examples for correct IPs:\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The entered host/network IP is not correct.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"Choose the network or host on which the local printers should be made "
+"available:"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3325
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Wil u die werklik die drukker verwyder?"
+msgid "Sharing of local printers"
+msgstr "Plaaslike drukker"
-#: ../../printer/printerdrake.pm_.c:3329
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Drukkerdata word gelees..."
+msgid "Remove selected host/network"
+msgstr "Verwyder tou"
-#: ../../raid.pm_.c:35
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-
-#: ../../raid.pm_.c:137
-msgid "mkraid failed"
-msgstr "mkraid het gefaal"
+msgid "Edit selected host/network"
+msgstr ""
-#: ../../raid.pm_.c:137
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add host/network"
+msgstr ""
-#: ../../raid.pm_.c:153
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+msgid ""
+"These are the machines and networks on which the locally connected printer"
+"(s) should be available:"
+msgstr ""
-#: ../../security/main.pm_.c:36
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Standard: This is the standard security recommended for a computer that will "
-"be used to connect\n"
-" to the Internet as a client.\n"
+"When this option is turned on, on every startup of CUPS it is automatically "
+"made sure that\n"
"\n"
-"High: There are already some restrictions, and more automatic checks "
-"are run every night.\n"
+"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
-"Higher: The security is now high enough to use the system as a server "
-"which can accept\n"
-" connections from many clients. If your machine is only a "
-"client on the Internet, you\n"
-"\t should choose a lower level.\n"
+"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
-"Paranoid: This is similar to the previous level, but the system is entirely "
-"closed and security\n"
-" features are at their maximum\n"
+"- when printer information is broadcasted, it does not contain \"localhost\" "
+"as the server name.\n"
"\n"
-"Security Administrator:\n"
-" If the 'Security Alerts' option is set, security alerts will "
-"be sent to this user (username or\n"
-"\t email)"
+"If some of these measures lead to problems for you, turn this option off, "
+"but then you have to take care of these points."
msgstr ""
-#: ../../security/main.pm_.c:66
-#, fuzzy
-msgid "Security Level:"
-msgstr "Sekuriteitsvlak word gestel."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Automatic correction of CUPS configuration"
+msgstr "Outomatiese CUPS konfigurasie"
-#: ../../security/main.pm_.c:77
+#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid " (default value: %s)"
-msgstr " (Verstek)"
+msgid "No remote machines"
+msgstr "(op hierdie rekenaar)"
-#: ../../security/main.pm_.c:113
-#, fuzzy
-msgid "Security Alerts:"
-msgstr "Sekuriteitsvlak word gestel."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Custom configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../security/main.pm_.c:115
-#, fuzzy
-msgid "Security Administrator:"
-msgstr "Eksterne lpd drukkeropsies"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing on hosts/networks: "
+msgstr "Druk"
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "Network Options"
-msgstr "Module opsies:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Automatically find available printers on remote machines"
+msgstr ""
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "System Options"
-msgstr "Module opsies:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printers on this machine are available to other computers"
+msgstr ""
-#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need explanations, click on Help.\n"
+"You can also decide here whether printers on remote machines should be "
+"automatically made available on this machine."
msgstr ""
-#: ../../security/main.pm_.c:177
-msgid "Periodic Checks"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can choose whether the printers connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../security/main.pm_.c:191
-#, fuzzy
-msgid "Please wait, setting security level..."
-msgstr "Sekuriteitsvlak word gestel."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS printer sharing configuration"
+msgstr "Verander drukkerkonfigurasie"
-#: ../../security/main.pm_.c:197
-#, fuzzy
-msgid "Please wait, setting security options..."
-msgstr "Wag asb. installasie word voorberei"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../services.pm_.c:19
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"Printers on remote CUPS servers do not need to be configured here; these "
+"printers will be automatically detected."
+msgstr ""
+"\n"
+"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-drukker\"."
-#: ../../services.pm_.c:20
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron is skeduleerder vir periodiese instruksies."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "How is the printer connected?"
+msgstr "Hoe is die drukker gekonekteer?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Connection"
+msgstr "Kies drukkerkonneksie"
-#: ../../services.pm_.c:21
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"apmd is used for monitoring batery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Arguments: (umask)\n"
+"\n"
+"Set the user umask."
msgstr ""
-"apmd word gebruik om battery status te monitor en dit dan te log via "
-"syslog.\n"
-"Dit kan ook gebruik word om die rekenaar af te bring wanneer die battery "
-"swak is."
-#: ../../services.pm_.c:23
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
msgstr ""
-"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at' gespesifiseer. "
-"Loop ook instruksiebondels wanneer die stelsellas laag genoeg is."
-#: ../../services.pm_.c:25
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
-"cron is die standaard UNIX program om gebruikergespesifiseerde programme\n"
-"op periodies geskeduleerde tye te loop. vixie cron voeg addisionele "
-"funksionaliteit\n"
-"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
-"konfigurasie."
-#: ../../services.pm_.c:28
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of sgid files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check open ports."
msgstr ""
-"GPM verleen muisvermoлns aan teksgebaseerde Linuxapplikasies soos\n"
-"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
-"konsole toe asook opspringkieskaarte."
-#: ../../services.pm_.c:31
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"if set, send the mail report to this email address else send it to root."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result by mail."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check files/directories writable by everybody."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, reports check result to tty."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run some checks against the rpm database."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run chkrootkit checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
-#: ../../services.pm_.c:33
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of suid root files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result to syslog."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"if set to yes, check for empty password, or a password while it should be "
+"in /etc/shadow or other users with id 0."
msgstr ""
-"Apache is 'n WWW-bediener.\n"
-"Dit kan HTML-lкers uitstuur en CGI's hanteer"
-#: ../../services.pm_.c:34
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run the daily security checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, verify checksum of the suid/sgid files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check empty password in /etc/shadow."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report unowned files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
msgstr ""
-"Die internetsuperbedienerdiensprogram (gewoonlik inetd genoem) laai 'n\n"
-"verskeidenheid internetdienste soos nodig. Dit is gewoonlik verantwoordelik "
-"vir\n"
-"telnet, ftp, rsh en rlogin. As inetd gesper word, sper dit ook die dienste "
-"waarvoor\n"
-"inetd verantwoordelik is."
-#: ../../services.pm_.c:38
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
msgstr ""
-"Hierdie pakket laai die sleutelbordkaart soos dit in /etc/sysconfig/"
-"keyboard\n"
-"opgestel is. Dit kan vernader word met die kbdconfig nutsprogram. U moet "
-"dit\n"
-"op meeste rekenaars ongesper laat."
-#: ../../services.pm_.c:43
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"Arguments: (max, inactive=-1)\n"
+"\n"
+"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
+"\\fP."
msgstr ""
-#: ../../services.pm_.c:45
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Outobespeuring en hardewarekonfigurasie met herlaaityd."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
+msgstr ""
-#: ../../services.pm_.c:46
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
msgstr ""
-#: ../../services.pm_.c:48
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+"Arguments: (arg)\n"
+"\n"
+" Activate/Disable daily security check."
msgstr ""
-"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
-"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
-#: ../../services.pm_.c:50
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"Arguments: (arg)\n"
+"\n"
+"Activate/Disable ethernet cards promiscuity check."
msgstr ""
-#: ../../services.pm_.c:52
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
msgstr ""
-"named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-"rekenaarname na IP-adresse toe om te skakel."
-#: ../../services.pm_.c:53
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
-"Heg en ontheg all netwerklкerstels (NFS), SMB (Lan Manger/Windows)\n"
-"en NCP (Netware) hegpunte."
-#: ../../services.pm_.c:55
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable msec hourly security check."
msgstr ""
-"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
-"herlaaityf te begin."
-#: ../../services.pm_.c:57
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
-"NFS is 'n populкre protokol vir lкerdeling oor TCP/IP netwerke.\n"
-"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
-"die /etc/exports lкer opgestel."
-#: ../../services.pm_.c:60
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
-"NFS is 'n populкre protokol vir lкerdeling oor TCP/IP netwerke.\n"
-"Hierdie diens vorosien die NFS-lкersluitfunksionaliteit."
-#: ../../services.pm_.c:62
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable IP spoofing protection."
msgstr ""
-#: ../../services.pm_.c:64
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Ondersteun die OKI-4W en aanpasbare WIN-drukkers"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
+msgstr ""
-#: ../../services.pm_.c:65
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to "
-"have\n"
-"it installed on machines that don't need it."
+"Arguments: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
+"expression describing what to log (see syslog.conf(5) for more details) and\n"
+"dev the device to report the log."
msgstr ""
-"PCMCIA is gewoonlik nodig om ondersteuning te verleen aan\n"
-"toestelle soos ethernet en modems in skootrekenaars. Dit sal nie\n"
-"gelaai word, behalwe as dit konfigureer is nie en dit is derhalwe\n"
-"veilig om op rekenaars te hк wat dit nie nodig het nie."
-#: ../../services.pm_.c:68
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
+"allow and /etc/at.allow\n"
+"(see man at(1) and crontab(1))."
msgstr ""
-"Portmapper bestuur RPC-konneksies wat deur protokolle soos NFS en NIS\n"
-"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:71
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"Arguments: ()\n"
+"\n"
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
msgstr ""
-"POstfix is 'n E-posoordragagent (MTA). Dit is die program wat E-pos\n"
-"van een bediener na 'n ander oordra."
-#: ../../services.pm_.c:72
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
msgstr ""
-"Stoor en herstel die stelselentropiepoel vir hoл kwaliteit,\n"
-"lukraaknommergenerasie."
-#: ../../services.pm_.c:74
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
+"Arguments: (arg)\n"
+"\n"
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
msgstr ""
-#: ../../services.pm_.c:76
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
msgstr ""
-"Die 'routed' diensprogram hanteer outomatiese IP-roeteertabelopdatering\n"
-"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
-"meer komplekse protokolle nodig vir komplekse netwerke."
-#: ../../services.pm_.c:79
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
msgstr ""
-"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
-"werksverrigtinginligting oor enige rekenaar op die netwerk te onttrek."
-#: ../../services.pm_.c:81
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid direct root login."
msgstr ""
-"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
-"aangeteken is op ander samewerkende rekenaars."
-#: ../../services.pm_.c:83
+#: ../../security/help.pm:1
+#, c-format
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)."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
msgstr ""
-"Die 'rwho' protokol laat eksterne gebruikers toe om te sien wie\n"
-"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
-"'finger')."
-#: ../../services.pm_.c:85
-msgid "Launch the sound system on your machine"
-msgstr "Laai die klankstelsel op u rekenaar"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
+msgstr ""
-#: ../../services.pm_.c:86
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
msgstr ""
-"Syslog is die fasiliteit wat baie diensprogramme gebruik om boodskappe\n"
-"te log na 'n verskeidenheid loglкers. Dit is altyd goed om syslog te loop."
-#: ../../services.pm_.c:88
-msgid "Load the drivers for your usb devices."
-msgstr "Laai die drywers vir u USB-toestelle"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
+msgstr ""
-#: ../../services.pm_.c:89
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Laai die X-fontbediener (dis nodig vir XFree)."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse icmp echo."
+msgstr ""
-#: ../../services.pm_.c:115 ../../services.pm_.c:157
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
+msgstr ""
-#: ../../services.pm_.c:127
-#, fuzzy
-msgid "Printing"
-msgstr "Druk"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
+msgstr ""
-#: ../../services.pm_.c:128
-msgid "Internet"
-msgstr "Internet"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../services.pm_.c:131
-msgid "File sharing"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
-#, fuzzy
-msgid "System"
-msgstr "Stelselmode"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Use libsafe for servers"
+msgstr "Selekteer opsies vir bediener"
-#: ../../services.pm_.c:138
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Eksterne lpd drukkeropsies"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Security level"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../services.pm_.c:146
-#, fuzzy
-msgid "Database Server"
-msgstr "Datbasis"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Please choose the desired security level"
+msgstr "Gebruik sekuriteitsvlak"
-#: ../../services.pm_.c:175
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "DrakSec Basic Options"
+msgstr "Opsies"
+
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"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."
-#: ../../services.pm_.c:191
-msgid "Services"
-msgstr "Dienste"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
+msgstr ""
+"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
+"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliлnte\n"
+"af kan aanvaar."
-#: ../../services.pm_.c:203
-msgid "running"
-msgstr "aktief"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
-#: ../../services.pm_.c:203
-msgid "stopped"
-msgstr "onaktief"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"Hierdie is die standaard sekuriteitsvlak wat aanbeveel word vir rekenaars\n"
+"wat aan die internet as 'n kliлnt konnekteer. Daar is heelwat "
+"sekuriteitstoetse."
-#: ../../services.pm_.c:217
-msgid "Services and deamons"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"Passwords are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
+"aanbeveel nie."
-#: ../../services.pm_.c:222
+#: ../../security/level.pm:1
+#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"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."
-#: ../../services.pm_.c:229
-msgid "On boot"
-msgstr "met herlaai"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Paranoid"
+msgstr "Paranoпes"
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Start"
-msgstr "Toestand"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Higher"
+msgstr "Hoog"
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
+#: ../../security/level.pm:1
+#, c-format
+msgid "High"
+msgstr "Hoog"
-#: ../../share/advertising/01-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Poor"
+msgstr "Swak"
-#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Welcome To Crackers"
+msgstr "Krakers welkom"
-#: ../../share/advertising/01-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#
-#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
-msgid "Get involved in the Free Software world"
-msgstr "Protokol vir die res van die wкreld"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../share/advertising/02-community.pl_.c:10
-msgid "Want to know more about the Open Source community?"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.1"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:11
+#: ../../share/advertising/02-community.pl:1
+#, c-format
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
-msgid "Get the most from the Internet"
-msgstr "Konnekteer aan die internet"
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Want to know more about the Open Source community?"
+msgstr ""
-#: ../../share/advertising/03-internet.pl_.c:10
+#
+#: ../../share/advertising/02-community.pl:1
+#, fuzzy, c-format
+msgid "Get involved in the Free Software world"
+msgstr "Protokol vir die res van die wкreld"
+
+#: ../../share/advertising/03-internet.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+#: ../../share/advertising/03-internet.pl:1
+#, fuzzy, c-format
+msgid "Get the most from the Internet"
+msgstr "Konnekteer aan die internet"
+
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:11
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-#: ../../share/advertising/05-games.pl_.c:9
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid "Games"
msgstr "Speletjies"
-#: ../../share/advertising/05-games.pl_.c:10
+#: ../../share/advertising/06-mcc.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
-#, fuzzy
+#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#, fuzzy, c-format
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
-#: ../../share/advertising/06-mcc.pl_.c:10
+#: ../../share/advertising/07-desktop.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../share/advertising/07-desktop.pl_.c:9
-#, fuzzy
+#: ../../share/advertising/07-desktop.pl:1
+#, fuzzy, c-format
msgid "User interfaces"
msgstr "Netwerkkoppelvlak"
-#: ../../share/advertising/07-desktop.pl_.c:10
-msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
-msgid "Development simplified"
-msgstr "Ontwikkeling"
-
-#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:11
+#: ../../share/advertising/08-development.pl:1
+#, c-format
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server"
+#: ../../share/advertising/08-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.1 is the ultimate development platform"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:10
+#: ../../share/advertising/08-development.pl:1
+#, fuzzy, c-format
+msgid "Development simplified"
+msgstr "Ontwikkeling"
+
+#: ../../share/advertising/09-server.pl:1
+#, c-format
msgid ""
"Transform your machine into a powerful Linux server with a few clicks of "
"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:9
-msgid "Optimize your security"
+#: ../../share/advertising/09-server.pl:1
+#, c-format
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:10
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:11
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
msgid ""
"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:12
-msgid "This product is available on MandrakeStore website"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:9
-msgid "The official MandrakeSoft store"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:9
-msgid "Strategic partners"
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:9
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:11
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:12
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
-msgid "Become a MandrakeExpert"
-msgstr "Kundige"
-
-#: ../../share/advertising/14-mdkexpert.pl_.c:10
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert Corporate"
-msgstr "Kundige"
-
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs"
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, fuzzy, c-format
+msgid "Become a MandrakeExpert"
+msgstr "Kundige"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:9
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:10
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, fuzzy, c-format
+msgid "MandrakeExpert Corporate"
+msgstr "Kundige"
+
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
msgid ""
"MandrakeClub and Mandrake Corporate Club were created for business and "
"private users of Mandrake Linux who would like to directly support their "
@@ -9020,221 +12224,247 @@ msgid ""
"MandrakeClub!"
msgstr ""
-#: ../../standalone.pm_.c:21
-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"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../standalone.pm_.c:40
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version name.\n"
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
+
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone.pm_.c:51
-msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone.pm_.c:57
-msgid ""
-"Font Importation and monitoring "
-"application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone.pm_.c:68
-msgid ""
-"[OPTIONS]...\n"
-"\t --debug print debugging information"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone.pm_.c:70
-msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires "
-"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, "
-"nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, "
-"IP, nbi image name)"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No floppy drive available!"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone.pm_.c:82
-#, fuzzy
-msgid "[keyboard]"
-msgstr "Sleutelbord"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Please insert floppy disk:"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Write Config"
+msgstr "herkonfigureer"
-#: ../../standalone.pm_.c:83
-msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone.pm_.c:84
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone.pm_.c:93
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Server Configuration"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone.pm_.c:94
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in "
-"MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the "
-"description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone.pm_.c:99
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
-"[--dynamic=dev]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Name Servers:"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Domain Name:"
+msgstr "Domeinnaam"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone.pm_.c:100
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet Mask:"
msgstr ""
-#: ../../standalone.pm_.c:114
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+msgid "Routers:"
msgstr ""
-#: ../../standalone.pm_.c:168
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Installeer pakket %s"
+#
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Netmask:"
+msgstr "Netmasker"
-#: ../../standalone/XFdrake_.c:138
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet:"
+msgstr ""
-#: ../../standalone/XFdrake_.c:142
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Dra drukkerkonfigurasie oor"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Config..."
+msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:253
-#, fuzzy
-msgid "Enable Server"
-msgstr "Datbasis"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete Client"
+msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:260
-#, fuzzy
-msgid "Disable Server"
-msgstr "Datbasis"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "<-- Edit Client"
+msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:268
-#, fuzzy
-msgid "Start Server"
-msgstr "NIS-bediener"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add Client -->"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:275
-#, fuzzy
-msgid "Stop Server"
-msgstr "NIS-bediener"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Allow Thin Clients"
+msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:283
-msgid "Etherboot Floppy/ISO"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Thin Client"
+msgstr "DHCP-Kliлnt"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No net boot images created!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:288
-msgid "Net Boot Images"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Tipe:"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:294
-#, fuzzy
-msgid "Add/Del Users"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Add User -->"
msgstr "Voeg gebruiker by"
-#: ../../standalone/drakTermServ_.c:299
-#, fuzzy
-msgid "Add/Del Clients"
-msgstr "DHCP-Kliлnt"
-
-#: ../../standalone/drakTermServ_.c:328
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
-"\n"
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../standalone/drakTermServ_.c:332
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete All NBIs"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "<-- Delete"
+msgstr "Uitwis"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No NIC selected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:365
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
"drakTermServ Overview\n"
"\t\t\t \n"
@@ -9263,7 +12493,7 @@ msgid ""
"\t\t\t\thost curly {\n"
"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\t#type fat;\n"
"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
"nbi\";\n"
"\t\t\t\t}\n"
@@ -9274,8 +12504,8 @@ msgid ""
"functionality\n"
"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
-"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
-"either be \"thin\"*/\n"
+"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"\n"
"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
"while fat clients run most\n"
"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
@@ -9364,225 +12594,145 @@ msgid ""
" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
-"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
" \n"
"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:488
-msgid "Boot Floppy"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:490
-msgid "Boot ISO"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:559
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
-msgid "This will take a few minutes."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:573
-msgid "No kernel selected!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:576
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:587
-#, fuzzy
-msgid "No nic selected!"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
-
-#: ../../standalone/drakTermServ_.c:590
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:604
-#, fuzzy
-msgid "<-- Delete"
-msgstr "Uitwis"
-
-#: ../../standalone/drakTermServ_.c:611
-#, fuzzy
-msgid "Delete All NBIs"
-msgstr "Selekteer lOer"
-
-#: ../../standalone/drakTermServ_.c:668
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:673
-#, fuzzy
-msgid "Add User -->"
-msgstr "Voeg gebruiker by"
-
-#: ../../standalone/drakTermServ_.c:681
-msgid "<-- Del User"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:720
+#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Tipe:"
-
-#: ../../standalone/drakTermServ_.c:753
-msgid "No net boot images created!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:773
-#, fuzzy
-msgid "Thin Client"
-msgstr "DHCP-Kliлnt"
-
-#: ../../standalone/drakTermServ_.c:775
-#, fuzzy
-msgid "Allow Thin Clients"
-msgstr "DHCP-Kliлnt"
-
-#: ../../standalone/drakTermServ_.c:778
-msgid "Add Client -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:821
-#, fuzzy
-msgid "<-- Edit Client"
-msgstr "DHCP-Kliлnt"
-
-#: ../../standalone/drakTermServ_.c:837
-#, fuzzy
-msgid "Delete Client"
+msgid "Add/Del Clients"
msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakTermServ_.c:843
-#, fuzzy
-msgid "dhcpd Config..."
-msgstr "Konfigurasie in aabou..."
-
-#: ../../standalone/drakTermServ_.c:876
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:894
-msgid "Subnet:"
-msgstr ""
-
-#
-#: ../../standalone/drakTermServ_.c:901
-#, fuzzy
-msgid "Netmask:"
-msgstr "Netmasker"
-
-#: ../../standalone/drakTermServ_.c:908
-msgid "Routers:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Add/Del Users"
+msgstr "Voeg gebruiker by"
-#: ../../standalone/drakTermServ_.c:915
-msgid "Subnet Mask:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:922
-msgid "Broadcast Address:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:929
-#, fuzzy
-msgid "Domain Name:"
-msgstr "Domeinnaam"
-
-#: ../../standalone/drakTermServ_.c:937
-#, fuzzy
-msgid "Name Servers:"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Stop Server"
msgstr "NIS-bediener"
-#: ../../standalone/drakTermServ_.c:948
-msgid "IP Range Start:"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:949
-msgid "IP Range End:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Start Server"
+msgstr "NIS-bediener"
-#: ../../standalone/drakTermServ_.c:1001
-#, fuzzy
-msgid "dhcpd Server Configuration"
-msgstr "Sluit konfigurasie af"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Disable Server"
+msgstr "Datbasis"
-#: ../../standalone/drakTermServ_.c:1002
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Enable Server"
+msgstr "Datbasis"
-#: ../../standalone/drakTermServ_.c:1005
-msgid "Dynamic IP Address Pool:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Dra drukkerkonfigurasie oor"
-#: ../../standalone/drakTermServ_.c:1018
-#, fuzzy
-msgid "Write Config"
-msgstr "herkonfigureer"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Remove the last item"
+msgstr "Terugluslкer %s word geformateer"
-#: ../../standalone/drakTermServ_.c:1120
-#, fuzzy
-msgid "Please insert floppy disk:"
-msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Add an item"
+msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakTermServ_.c:1124
-msgid "Couldn't access the floppy!"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Auto Install"
+msgstr "Installasie"
-#: ../../standalone/drakTermServ_.c:1126
-msgid "Floppy can be removed now"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
+"Die floppie is sukselvol geskep.\n"
+"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakTermServ_.c:1129
-#, fuzzy
-msgid "No floppy drive available!"
-msgstr "Geen sagteskyaandrywer beskikbaar nie"
+#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Congratulations!"
+msgstr "Geluk!"
-#: ../../standalone/drakTermServ_.c:1138
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Etherboot ISO image is %s"
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1140
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Creating auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
-#: ../../standalone/drakTermServ_.c:1159
-msgid "Need to create /etc/dhcpd.conf first!"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "manual"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1451
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:40
-msgid "Error!"
-msgstr "Fout!"
-
-#: ../../standalone/drakautoinst_.c:41
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
+msgid "Automatic Steps Configuration"
+msgstr "Outomatiese Stappe Konfigurasie"
-#: ../../standalone/drakautoinst_.c:43
-msgid "Auto Install Configurator"
-msgstr "Outoinstallasiekonfigurasieprogram"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "replay"
+msgstr "Herspeel"
-#: ../../standalone/drakautoinst_.c:44
+#: ../../standalone/drakautoinst:1
+#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9597,1440 +12747,1427 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
-msgid "manual"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Auto Install Configurator"
+msgstr "Outoinstallasiekonfigurasieprogram"
-#: ../../standalone/drakautoinst_.c:62
-#, fuzzy
-msgid "replay"
-msgstr "Herspeel"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "I can't find needed image file `%s'."
+msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
-#: ../../standalone/drakautoinst_.c:66
-msgid "Automatic Steps Configuration"
-msgstr "Outomatiese Stappe Konfigurasie"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Error!"
+msgstr "Fout!"
-#: ../../standalone/drakautoinst_.c:67
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
-#, fuzzy
-msgid "Creating auto install floppy"
-msgstr "Outoinstallasieskyf word geskep."
-
-#: ../../standalone/drakautoinst_.c:139
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"options description:\n"
"\n"
-"Welcome.\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
-#: ../../standalone/scannerdrake_.c:117
-msgid "Congratulations!"
-msgstr "Geluk!"
-
-#: ../../standalone/drakautoinst_.c:235
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-"Die floppie is sukselvol geskep.\n"
-"U kan nou weer 'n installasie uitspeel."
-
-#: ../../standalone/drakautoinst_.c:273
-#, fuzzy
-msgid "Auto Install"
-msgstr "Installasie"
-
-#: ../../standalone/drakautoinst_.c:343
-#, fuzzy
-msgid "Add an item"
-msgstr "Voeg 'n gebruiker by"
-
-#: ../../standalone/drakautoinst_.c:350
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Terugluslкer %s word geformateer"
-
-#: ../../standalone/drakbackup_.c:580
-msgid "Cron not available yet as non-root"
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backups will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:690
-msgid "WARNING"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:691
-#, fuzzy
-msgid "FATAL"
-msgstr "FAT"
-
-#: ../../standalone/drakbackup_.c:692
-msgid "INFO"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:704
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-" DrakBackup Report \n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:705
-msgid ""
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-" DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:709
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"options description:\n"
"\n"
-" DrakBackup Report Details\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include the web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed data afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
-#: ../../standalone/drakbackup_.c:859
-#, fuzzy
-msgid "Total progess"
-msgstr "Toetsbladsye"
-
-#: ../../standalone/drakbackup_.c:785
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"%s exists, delete?\n"
"\n"
-"Warning: If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "This may take a moment to generate the keys."
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "ERROR: Cannot spawn %s."
+msgid ""
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %%).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000%% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" #> cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:818
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No password prompt on %s at port %s"
+msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:819
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Geen wagwoord"
-
-#: ../../standalone/drakbackup_.c:820
-#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgid "Restore"
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:821
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "Kan nie %s oopmaak nie: %s\n"
-
-#: ../../standalone/drakbackup_.c:824
-#, c-format
-msgid "%s not responding"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:828
-#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s\\@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
+msgid "Backup Now"
+msgstr "Stel lкerstelsels op"
-#: ../../standalone/drakbackup_.c:873
-msgid "WebDAV remote site already in sync!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Advanced Configuration"
+msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:877
-msgid "WebDAV transfer failed!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Wizard Configuration"
+msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:898
-msgid "No CDR/DVDR in drive!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "View Backup Configuration."
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:902
-msgid "Does not appear to be recordable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Now from configuration file"
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:906
-msgid "Not erasable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Drakbackup Configuration"
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:945
-msgid "This may take a moment to erase the media."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:1033
-msgid "Permission problem accessing CD."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Sending files..."
+msgstr "Stoor in lкer"
-#: ../../standalone/drakbackup_.c:1060
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No tape in %s!"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
-msgid "Backup system files..."
+msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Korrupte rugsteunlкer"
-
-#: ../../standalone/drakbackup_.c:1236
-#, fuzzy
-msgid "Backup User files..."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup other files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1237
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1290
-#, fuzzy
-msgid "Backup Other files..."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup user files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1296
-#, fuzzy
-msgid "No changes to backup!"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup system files"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:1322
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select data to backup..."
+msgstr "Kies asb. 'n taal om te gebruik."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select media for backup..."
+msgstr "Kies asb. 'n taal om te gebruik."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select data to restore..."
+msgstr "Kies asb. 'n taal om te gebruik."
+
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "The following packages need to be installed:\n"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:1340
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:1354
-#, fuzzy
-msgid " Error during mail sending. \n"
-msgstr "Fout met die les van lкer %s"
-
-#: ../../standalone/drakbackup_.c:1380
-msgid "Can't create catalog!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Next"
+msgstr "Teks"
-#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
-#: ../../standalone/drakfont_.c:946
-#, fuzzy
-msgid "File Selection"
-msgstr "Pakketkeuse"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Previous"
+msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:1529
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+#: ../../standalone/drakbackup:1 ../../standalone/drakperm:1
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Save"
+msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:1573
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Build Backup"
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:1574
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Progress"
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:1575
-#, fuzzy
-msgid "Backup your System files. (/etc directory)"
-msgstr "Korrupte rugsteunlкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From Catalog"
+msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:1576
-msgid "Use incremental backup (do not replace old backups)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:1577
-msgid "Do not include critical files (passwd, group, fstab)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:1578
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Custom Restore"
+msgstr "Aangepaste"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Kies die pakkette wat u wil installeer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Failed..."
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:1622
-msgid "Do not include the browser cache"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
-msgid "Use Incremental Backups (do not replace old backups)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Verwyder tou"
-
-#: ../../standalone/drakbackup_.c:1679
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Verwyder Windows(TM)"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hostname required"
+msgstr "Bedienernaam:"
-#: ../../standalone/drakbackup_.c:1714
-#, fuzzy
-msgid "Users"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username required"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1740
-#, fuzzy
-msgid "Use network connection to backup"
-msgstr "Korrupte rugsteunlкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Password required"
+msgstr "Wagwoord"
-#: ../../standalone/drakbackup_.c:1742
-msgid "Net Method:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:1746
-msgid "Use Expect for SSH"
-msgstr ""
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Host Name"
+msgstr "Rekenaarnaam"
-#: ../../standalone/drakbackup_.c:1747
-msgid ""
-"Create/Transfer\n"
-"backup keys for SSH"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
-#, fuzzy
-msgid ""
-" Transfer \n"
-"Now"
-msgstr "Oordrag"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Via Network"
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:1749
-msgid ""
-"Other (not drakbackup)\n"
-"keys in place already"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#
-#: ../../standalone/drakbackup_.c:1753
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Toets asb. die muis"
-
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please enter the directory (or module) to\n"
-" put the backup on this host."
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1763
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Probeer asb. weer"
-
-#: ../../standalone/drakbackup_.c:1768
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Probeer asb. weer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From Tape"
+msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:1774
-#, fuzzy
-msgid "Remember this password"
-msgstr "Geen wagwoord"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
-#: ../../standalone/drakbackup_.c:1785
-msgid "Need hostname, username and password!"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:1879
-msgid "Use CD/DVDROM to backup"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From CD"
+msgstr "Herstel vanaf floppie"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid ""
-"Please choose your CD/DVD device\n"
-"(Press Enter to propogate settings to other fields.\n"
-"This field isn't necessary, only a tool to fill in the form.)"
-msgstr ""
+"Change\n"
+"Restore Path"
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:1887
-#, fuzzy
-msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "Wat is u sleutelborduitleg?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1893
-#, fuzzy
-msgid "Please check for multisession CD"
-msgstr "Kliek asb. op 'n partisie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1899
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Kliek asb. op 'n partisie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Remove user directories before restore."
+msgstr ""
-#: ../../standalone/drakbackup_.c:1905
-#, fuzzy
-msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Kliek asb. op 'n partisie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1906
-#, fuzzy
-msgid " Erase Now "
-msgstr "Oordrag"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "select path to restore (instead of /)"
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:1912
-#, fuzzy
-msgid "Please check if you are using a DVDR device"
-msgstr "Kliek asb. op 'n partisie"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Other"
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:1918
-#, fuzzy
-msgid "Please check if you are using a DVDRAM device"
-msgstr "Kliek asb. op 'n partisie"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Users"
+msgstr "Herstel vanaf lкer"
-#: ../../standalone/drakbackup_.c:1931
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore system"
+msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:1964
-#, fuzzy
-msgid "No CD device defined!"
-msgstr "Selekteer lOer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Other Media"
+msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2012
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Korrupte rugsteunlкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Select another media to restore from"
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2015
-msgid "Please enter the device name to use for backup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2021
-#, fuzzy
-msgid "Please check if you want to use the non-rewinding device."
-msgstr "Kies die pakkette wat u wil installeer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore from Hard Disk."
+msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2027
-#, fuzzy
-msgid "Please check if you want to erase your tape before the backup."
-msgstr "Kies die pakkette wat u wil installeer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Secure Connection"
+msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:2033
-#, fuzzy
-msgid "Please check if you want to eject your tape after the backup."
-msgstr "Kies die pakkette wat u wil installeer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "FTP Connection"
+msgstr "LAN konneksie"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use quota for backup files."
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
-#: ../../standalone/drakbackup_.c:3068
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2103
-#, fuzzy
-msgid "Please enter the directory to save to:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
-#, fuzzy
-msgid "Use quota for backup files."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2180
-#, fuzzy
-msgid "Network"
-msgstr "Netwerkkoppelvlak"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "please choose the date to restore"
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2185
-msgid "CDROM / DVDROM"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup the system files before:"
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:2190
-msgid "HardDrive / NFS"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2195
-#, fuzzy
-msgid "Tape"
-msgstr "Tipe"
-
-#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
-#: ../../standalone/drakbackup_.c:2216
-msgid "hourly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
-#: ../../standalone/drakbackup_.c:2216
-msgid "daily"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Restore Configuration "
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
-#: ../../standalone/drakbackup_.c:2216
-msgid "weekly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
-#: ../../standalone/drakbackup_.c:2216
-msgid "monthly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
-#, fuzzy
-msgid "Use daemon"
-msgstr "Gebruikerskode"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Kies die pakkette wat u wil installeer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please uncheck or remove it on next time."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2240
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Kies asb. 'n taal om te gebruik."
+"List of data corrupted:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2247
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
+"List of data to restore:\n"
"\n"
-"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2283
-msgid "Send mail report after each backup to:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2289
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
-#, fuzzy
-msgid "What"
-msgstr "Wag"
-
-#
-#: ../../standalone/drakbackup_.c:2329
-#, fuzzy
-msgid "Where"
-msgstr "Wiel"
-
-#
-#: ../../standalone/drakbackup_.c:2334
-#, fuzzy
-msgid "When"
-msgstr "Wiel"
-
-#: ../../standalone/drakbackup_.c:2339
-#, fuzzy
-msgid "More Options"
-msgstr "Module opsies:"
-
-#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/drakbackup_.c:2376
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:2378
-msgid "on Hard Drive"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2388
-msgid "across Network"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2398
-msgid "on CDROM"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2406
-msgid "on Tape Device"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2449
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:2450
-#, fuzzy
-msgid "Backup system"
-msgstr "Stel lкerstelsels op"
-
-#: ../../standalone/drakbackup_.c:2451
-msgid "Backup Users"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2454
-msgid "Select user manually"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2537
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Backup Sources: \n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
-msgid ""
-"\n"
-"- System Files:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
-msgid ""
-"\n"
-"- User Files:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and bzip2\n"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2542
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid ""
"\n"
-"- Other Files:\n"
-msgstr ""
+"- Options:\n"
+msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Delete hard drive tar files after backup.\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2553
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Burn to CD"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2554
-msgid "RW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2555
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2556
-msgid " (multi-session)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2557
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save to Tape on device: %s"
+"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "\t\tErase=%s"
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2561
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save via %s on host: %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2562
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Options:\n"
-msgstr "Opsies"
-
-#: ../../standalone/drakbackup_.c:2564
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2567
-msgid "\tBackups use tar and bzip2\n"
+"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2569
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2572
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include:\n"
+"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2574
-msgid "\t-CDROM.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2575
-msgid "\t-Tape \n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup system"
+msgstr "Stel lкerstelsels op"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose what you want to backup"
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2576
-msgid "\t-Network by FTP.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2577
-msgid "\t-Network by SSH.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2578
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2579
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose where you want to backup"
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "More Options"
+msgstr "Module opsies:"
+
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "When"
+msgstr "Wiel"
+
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Where"
+msgstr "Wiel"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "What"
+msgstr "Wag"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2581
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"List of data to restore:\n"
+"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:2754
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
+"Please choose the\n"
+"media for backup."
+msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2756
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2766
-msgid "Backup files are corrupted"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use daemon"
+msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2787
-msgid " All of your selected data have been "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2788
+#: ../../standalone/drakbackup:1
#, c-format
-msgid " Successfuly Restored on %s "
+msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2906
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/drakbackup_.c:2924
-msgid "OK to restore the other files."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2941
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:3019
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Korrupte rugsteunlкer"
-
-#: ../../standalone/drakbackup_.c:3021
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Wat is u muistoestel?"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "HardDrive / NFS"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3057
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Korrupte rugsteunlкer"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CDROM / DVDROM"
+msgstr ""
#
-#: ../../standalone/drakbackup_.c:3060
-#, fuzzy
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3103
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN konneksie"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:3110
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Kies drukkerkonneksie"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:3134
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Herstel vanaf floppie"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:3136
-msgid "Please enter the directory where backups are stored"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3204
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Wat is u muistoestel?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use tape to backup"
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3206
-#, fuzzy
-msgid "Other Media"
-msgstr "Ander"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No CD device defined!"
+msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:3211
-#, fuzzy
-msgid "Restore system"
-msgstr "Installeer stelsel"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3212
-#, fuzzy
-msgid "Restore Users"
-msgstr "Herstel vanaf lкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:3213
-#, fuzzy
-msgid "Restore Other"
-msgstr "Herstel vanaf lкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDR device"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:3215
-#, fuzzy
-msgid "select path to restore (instead of /)"
-msgstr "Wat is u muistoestel?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Erase Now "
+msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:3219
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:3221
-msgid "Remove user directories before restore."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using CDRW media"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:3334
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check for multisession CD"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:3344
-#, fuzzy
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Verwyder tou"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:3361
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Change\n"
-"Restore Path"
-msgstr "Herstel vanaf lкer"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3427
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Backup files not found at %s."
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:3440
-#, fuzzy
-msgid "Restore From CD"
-msgstr "Herstel vanaf floppie"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Remember this password"
+msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:3442
-#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter your password"
+msgstr "Probeer asb. weer"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter your login"
+msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:3452
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:3452
-#, fuzzy
-msgid "Restore From Tape"
-msgstr "Reddingspartisietabel"
+#
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the host name or IP."
+msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3454
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:3474
-#, fuzzy
-msgid "Restore Via Network"
-msgstr "Herstel vanaf lкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:3474
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Restore Via Network Protocol: %s"
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy
-msgid "Host Name"
-msgstr "Rekenaarnaam"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Expect for SSH"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3476
-msgid "Host Path or Module"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3483
-#, fuzzy
-msgid "Password required"
-msgstr "Wagwoord"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use network connection to backup"
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3489
-#, fuzzy
-msgid "Username required"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:3492
-#, fuzzy
-msgid "Hostname required"
-msgstr "Bedienernaam:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Windows (FAT32)"
+msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:3497
-msgid "Path or Module required"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3510
-msgid "Files Restored..."
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove Selected"
+msgstr "Verwyder tou"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:3513
-#, fuzzy
-msgid "Restore Failed..."
-msgstr "Herstel vanaf lкer"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check all users that you want to include in your backup."
+msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:3751
-msgid "Restore all backups"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#
-#: ../../standalone/drakbackup_.c:3760
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Aangepaste"
-
-#: ../../standalone/drakbackup_.c:3804
-msgid "CD in place - continue."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3810
-msgid "Browse to new restore repository."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3813
-#, fuzzy
-msgid "Restore From Catalog"
-msgstr "Reddingspartisietabel"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup your System files. (/etc directory)"
+msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:3841
-#, fuzzy
-msgid "Restore Progress"
-msgstr "Herstel vanaf lкer"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
-#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
-#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
-#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
-#: ../../standalone/drakbackup_.c:4139
-#, fuzzy
-msgid "Previous"
-msgstr "<- Vorige"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"Please check all options that you need.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
-#: ../../standalone/logdrake_.c:203
-#, fuzzy
-msgid "Save"
-msgstr "Toestand"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3946
-#, fuzzy
-msgid "Build Backup"
-msgstr "Korrupte rugsteunlкer"
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "File Selection"
+msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
-#, fuzzy
-msgid "Restore"
-msgstr "Herstel vanaf lкer"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Error while sending mail. \n"
+msgstr "Fout met die les van lкer %s"
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4195
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#
-#: ../../standalone/drakbackup_.c:4209
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"The following packages need to be installed:\n"
-" @list_of_rpm_to_install"
-msgstr "Die volgende pakkette gaan installeer word"
-
-#: ../../standalone/drakbackup_.c:4232
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../standalone/drakbackup_.c:4267
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Kies asb. 'n taal om te gebruik."
-
-#: ../../standalone/drakbackup_.c:4275
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Kies asb. 'n taal om te gebruik."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4308
-msgid "Under Devel ... please wait."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakbackup_.c:4382
-#, fuzzy
-msgid "Backup system files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No changes to backup!"
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4384
-#, fuzzy
-msgid "Backup user files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4386
-#, fuzzy
-msgid "Backup other files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Other files..."
msgstr "Korrupte rugsteunlкer"
-#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
-msgid "Total Progress"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4412
-msgid "files sending by FTP"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup User files..."
+msgstr "Korrupte rugsteunlкer"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4416
-#, fuzzy
-msgid "Sending files..."
-msgstr "Stoor in lкer"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4500
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Netwerkkonfigurasie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../standalone/drakbackup_.c:4505
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Netwerkkonfigurasie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../standalone/drakbackup_.c:4526
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Konfigurasie"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not erasable media!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4531
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Sluit konfigurasie af"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4536
-#, fuzzy
-msgid "Backup Now"
-msgstr "Stel lкerstelsels op"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4576
-msgid "Drakbackup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:4624
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time (about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:4654
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Total progess"
+msgstr "Toetsbladsye"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"ssh -i %s %s\\@%s\n"
"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:4662
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:4701
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used, because with incremental \n"
-"backups it is necessary to restore one by one each older backup.\n"
-"\n"
-"So if you don't want to restore a user please unselect all their\n"
-"check boxes.\n"
-"\n"
-"Otherwise, you are able to select only one of these.\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption to use. This option allows you to \n"
-"\tbackup all of your data the first time, and \n"
-"\tonly the changed data after.\n"
-"\tSo you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Kan nie %s oopmaak nie: %s\n"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:4727
-msgid ""
-" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
-"fr>"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Geen wagwoord"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:4729
-msgid ""
-" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:4732
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
+"%s exists, delete?\n"
"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
+" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4769
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"options description:\n"
"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
+" DrakBackup Daemon Report\n"
+"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4778
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Restore Backup Problems:\n"
+" DrakBackup Report \n"
"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakboot_.c:50
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-
-#: ../../standalone/drakbug_.c:45
-msgid "Mandrake Bug Report Tool"
+msgid "INFO"
msgstr ""
-#: ../../standalone/drakbug_.c:50
-msgid "First Time Wizard"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakbug_.c:51
-msgid "Synchronization tool"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
-#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
-#: ../../standalone/drakbug_.c:139
-#, fuzzy
-msgid "Standalone Tools"
-msgstr "Konsole hulpprogramme"
-
-#: ../../standalone/drakbug_.c:53
-msgid "HardDrake"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Cron not available yet as non-root"
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/drakboot:1
+#, c-format
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakbug_.c:59
-msgid "Urpmi"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "No browser available! Please install one"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../standalone/drakbug_.c:60
-msgid "Windows Migration tool"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:61
-#, fuzzy
-msgid "Userdrake"
-msgstr "Drukker"
-
-#: ../../standalone/drakbug_.c:62
-#, fuzzy
-msgid "Configuration Wizards"
-msgstr "Netwerkkonfigurasie-assistent"
-
-#: ../../standalone/drakbug_.c:75
-#, fuzzy
-msgid "Application:"
-msgstr "Magtiging"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package not installed"
+msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:76
-#, fuzzy
-msgid "Package: "
-msgstr "Pakketkeuse"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Not installed"
+msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:77
-msgid "Kernel:"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Standalone Tools"
+msgstr "Konsole hulpprogramme"
-#: ../../standalone/drakbug_.c:78
-#, fuzzy
-msgid "Release: "
-msgstr "Wag asb."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Report"
+msgstr "Poort"
-#: ../../standalone/drakbug_.c:93
+#: ../../standalone/drakbug:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -11042,324 +14179,344 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:112
-#, fuzzy
-msgid "Report"
-msgstr "Poort"
-
-#: ../../standalone/drakbug_.c:148
-#, fuzzy
-msgid "Not installed"
-msgstr "Verlaay installasie"
-
-#: ../../standalone/drakbug_.c:160
-#, fuzzy
-msgid "Package not installed"
-msgstr "Verlaay installasie"
-
-#: ../../standalone/drakbug_.c:173
-msgid "connecting to Bugzilla wizard ..."
-msgstr ""
-
-#: ../../standalone/drakbug_.c:180
-#, fuzzy
-msgid "No browser available! Please install one"
-msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Release: "
+msgstr "Wag asb."
-#: ../../standalone/drakconnect_.c:75
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
+msgid "Kernel:"
+msgstr ""
-#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
-msgid "Profile: "
-msgstr "Profiel:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package: "
+msgstr "Pakketkeuse"
-#: ../../standalone/drakconnect_.c:91
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Application:"
+msgstr "Magtiging"
-#: ../../standalone/drakconnect_.c:97
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee..."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Configuration Wizards"
+msgstr "Netwerkkonfigurasie-assistent"
-#: ../../standalone/drakconnect_.c:125
-msgid "New profile..."
-msgstr "Nuwe profiel..."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Userdrake"
+msgstr "Drukker"
-#: ../../standalone/drakconnect_.c:131
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakconnect_.c:157
-msgid "Hostname: "
-msgstr "Bedienernaam:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Urpmi"
+msgstr ""
-#: ../../standalone/drakconnect_.c:164
-msgid "Internet access"
-msgstr "Internettoegang"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Software Manager"
+msgstr "Drukkernaam:"
-#: ../../standalone/drakconnect_.c:177
-msgid "Type:"
-msgstr "Tipe:"
+#
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Remote Control"
+msgstr "Eksterne drukker"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Gateway:"
-msgstr "Portaal:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Msec"
+msgstr "Muis"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Interface:"
-msgstr "Koppelvlak:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Menudrake"
+msgstr "verpligtend"
-#: ../../standalone/drakconnect_.c:191
-msgid "Status:"
-msgstr "Status:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Online"
+msgstr "Beheersentrum"
-#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
-msgid "Wait please"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakconnect_.c:216
-msgid "Configure Internet Access..."
-msgstr "Konfigureer internettoegang..."
-
-#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../standalone/drakconnect_.c:228
-msgid "Driver"
-msgstr "Drywer"
-
-#: ../../standalone/drakconnect_.c:228
-msgid "Interface"
-msgstr "Koppelvlak"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Synchronization tool"
+msgstr ""
-#: ../../standalone/drakconnect_.c:228
-msgid "Protocol"
-msgstr "Protokol"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "First Time Wizard"
+msgstr ""
-#: ../../standalone/drakconnect_.c:228
-msgid "State"
-msgstr "Toestand"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#: ../../standalone/drakconnect_.c:240
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP Client"
+msgstr "DHCP-Kliлnt"
-#: ../../standalone/drakconnect_.c:252
-msgid "Click here to launch the wizard ->"
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Ethernet Card"
+msgstr "Ethernetkaart"
-#: ../../standalone/drakconnect_.c:253
-msgid "Wizard..."
-msgstr "Assistent..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway"
+msgstr "Portaal"
-#: ../../standalone/drakconnect_.c:279
-msgid "Apply"
-msgstr "Pas toe"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Parameters"
+msgstr "Parameters"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-msgid "Connected"
-msgstr "Gekonnekteer"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connection type: "
+msgstr "Konneksietipe:"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-msgid "Not connected"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile: "
+msgstr "Profiel:"
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Connect..."
-msgstr "Konnekteer..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Internet connection configuration"
+msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakconnect_.c:400
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+"You don't have an Internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:427
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:449
-msgid "LAN Configuration"
-msgstr "LAN konfigurasie"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "activate now"
+msgstr "Aktiveer nou dadelik"
-#: ../../standalone/drakconnect_.c:460
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
+msgid "deactivate now"
+msgstr "deaktiveer nou dadelik"
-#: ../../standalone/drakconnect_.c:466
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP client"
+msgstr "DHCP-kliлnt"
-#: ../../standalone/drakconnect_.c:467
+#: ../../standalone/drakconnect:1
+#, c-format
msgid "Started on boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../standalone/drakconnect_.c:468
-msgid "DHCP client"
-msgstr "DHCP-kliлnt"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Boot Protocol"
+msgstr "Herlaaiprotokol"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "LAN Configuration"
+msgstr "LAN konfigurasie"
-#: ../../standalone/drakconnect_.c:499
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "LAN configuration"
+msgstr "LAN-konfigurasie"
-#: ../../standalone/drakconnect_.c:556
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:580
-msgid "Internet connection configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/drakconnect_.c:584
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Connect..."
+msgstr "Konnekteer..."
-#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
-msgid "Connection type: "
-msgstr "Konneksietipe:"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Disconnect..."
+msgstr "Diskonnekteer..."
-#: ../../standalone/drakconnect_.c:599
-msgid "Parameters"
-msgstr "Parameters"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Not connected"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/drakconnect_.c:618
-msgid "Gateway"
-msgstr "Portaal"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connected"
+msgstr "Gekonnekteer"
-#: ../../standalone/drakconnect_.c:627
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../standalone/drakconnect_.c:628
-msgid "DHCP Client"
-msgstr "DHCP-Kliлnt"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface:"
+msgstr "Koppelvlak:"
-#: ../../standalone/drakfloppy_.c:39
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway:"
+msgstr "Portaal:"
-#: ../../standalone/drakfloppy_.c:40
-msgid "Module name"
-msgstr "Modulenaam"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Apply"
+msgstr "Pas toe"
-#: ../../standalone/drakfloppy_.c:40
-msgid "Size"
-msgstr "Grootte"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Click here to launch the wizard ->"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:45
-msgid "drakfloppy"
-msgstr "drakfloppy"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Wizard..."
+msgstr "Assistent..."
-#: ../../standalone/drakfloppy_.c:63
-msgid "boot disk creation"
-msgstr "herlaaiskyfskepping"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Status:"
+msgstr "Status:"
-#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
-msgid "default"
-msgstr "verstek"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Type:"
+msgstr "Tipe:"
-#: ../../standalone/drakfloppy_.c:87
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "DrakFloppy Error: %s"
-msgstr "DrakFloppy Fout: %s"
+msgid "Internet access"
+msgstr "Internettoegang"
-#: ../../standalone/drakfloppy_.c:98
-msgid "kernel version"
-msgstr "bedryfstelselkernweergawe"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Hostname: "
+msgstr "Bedienernaam:"
-#: ../../standalone/drakfloppy_.c:104
-msgid "General"
-msgstr "Algemeen"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op..."
-#: ../../standalone/drakfloppy_.c:109
-msgid "Expert Area"
-msgstr "Kundige area"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "State"
+msgstr "Toestand"
-#: ../../standalone/drakfloppy_.c:112
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd opsionele parameters"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Driver"
+msgstr "Drywer"
-#: ../../standalone/drakfloppy_.c:113
-msgid "Add a module"
-msgstr "Voeg module by"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../standalone/drakfloppy_.c:133
-msgid "force"
-msgstr "forseer"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface"
+msgstr "Koppelvlak"
-#: ../../standalone/drakfloppy_.c:134
-msgid "if needed"
-msgstr "indien nodig"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure Internet Access..."
+msgstr "Konfigureer internettoegang..."
-#: ../../standalone/drakfloppy_.c:135
-msgid "omit scsi modules"
-msgstr "laat SCSI-modules weg"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Wait please"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:136
-msgid "omit raid modules"
-msgstr "laat RAID-modules weg"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:172
-msgid "Remove a module"
-msgstr "Verwyder module"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "New profile..."
+msgstr "Nuwe profiel..."
-#: ../../standalone/drakfloppy_.c:194
-msgid "Output"
-msgstr "Uitset"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile to delete:"
+msgstr "Profiel om uit te vee..."
-#: ../../standalone/drakfloppy_.c:206
-msgid "Build the disk"
-msgstr "Bou die skyf"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Del profile..."
+msgstr "Vee profiel uit..."
-#: ../../standalone/drakfloppy_.c:336
+#: ../../standalone/drakconnect:1
#, 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"
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie (%d toestelle)"
-#: ../../standalone/drakfloppy_.c:341
-#, fuzzy, c-format
+#: ../../standalone/drakedm:1
+#, c-format
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"X11 Display Manager allows you to graphically log\n"
+"into your system with the X Window System running and supports running\n"
+"several different X sessions on your local machine at the same time."
msgstr ""
-"Daar is geen medium for toestel %s nie.\n"
-"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:344
+#: ../../standalone/drakedm:1
#, c-format
-msgid "Unable to fork: %s"
-msgstr "Kon nie vurk nie: %s"
+msgid "Choosing a display manager"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:349
+#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
-"Unable to close properly mkbootdisk: \n"
+"Unable to properly close mkbootdisk: \n"
" %s \n"
" %s"
msgstr ""
@@ -11367,142 +14524,228 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:213
-msgid "Search installed fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfont_.c:215
-msgid "Unselect fonts installed"
+#: ../../standalone/drakfloppy:1
+#, 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/drakfont_.c:239
-msgid "parse all fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, 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/drakfont_.c:242
-#, fuzzy
-msgid "no fonts found"
-msgstr "%s is nie gevind nie"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Build the disk"
+msgstr "Bou die skyf"
-#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
-#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
-#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
-#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
-#, fuzzy
-msgid "done"
-msgstr "Klaar"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Output"
+msgstr "Uitset"
-#: ../../standalone/drakfont_.c:257
-msgid "could not find any font in your mounted partitions"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Remove a module"
+msgstr "Verwyder module"
-#: ../../standalone/drakfont_.c:303
-msgid "Reselect correct fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit raid modules"
+msgstr "laat RAID-modules weg"
-#: ../../standalone/drakfont_.c:307
-msgid "could not find any font.\n"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit scsi modules"
+msgstr "laat SCSI-modules weg"
-#: ../../standalone/drakfont_.c:331
-msgid "Search fonts in installed list"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "if needed"
+msgstr "indien nodig"
-#: ../../standalone/drakfont_.c:359
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Formatteer floppie"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "force"
+msgstr "forseer"
-#: ../../standalone/drakfont_.c:363
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Berei installasie voor"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Add a module"
+msgstr "Voeg module by"
-#: ../../standalone/drakfont_.c:371
-msgid "please wait during ttmkfdir..."
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opsionele parameters"
-#: ../../standalone/drakfont_.c:377
-msgid "True Type install done"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Area"
+msgstr "Kundige area"
-#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
-msgid "Fonts conversion"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "General"
+msgstr "Algemeen"
-#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
-#: ../../standalone/drakfont_.c:450
-msgid "type1inst building"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "kernel version"
+msgstr "bedryfstelselkernweergawe"
-#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
-msgid "Ghostscript referencing"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fout: %s"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "default"
+msgstr "verstek"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "boot disk creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Size"
+msgstr "Grootte"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Module name"
+msgstr "Modulenaam"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Post Uninstall"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove fonts on your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Initial tests"
+msgstr "Beginboodskap"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Post Install"
+msgstr "Installasie"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:437
-msgid "ttf fonts conversion"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Copy fonts on your system"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+
+#
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove List"
+msgstr "Verwyder drukker"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Selected All"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:444
-msgid "pfm fonts conversion"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:456
-msgid "Suppress temporary Files"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:459
-#, fuzzy
-msgid "Restart XFS"
-msgstr "Laai dit"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Install List"
+msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
-msgid "Suppress Fonts Files"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:528
-#, fuzzy
-msgid "xfs restart"
-msgstr "beperk"
-
-#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
+#: ../../standalone/drakfont:1
+#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
+"-You can install the fonts the normal way. In rare cases, bogus fonts may "
+"hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:621
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Formateer partisies"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Generic Printers"
+msgstr "Drukker"
-#: ../../standalone/drakfont_.c:650
-msgid "Get Windows Fonts"
-msgstr ""
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Abiword"
+msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:658
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Deпnstallasie van RPMs"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "StarOffice"
+msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:669
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Ghostscript"
+msgstr ""
-#: ../../standalone/drakfont_.c:677
-#, fuzzy
-msgid "Font List"
-msgstr "Hegpunt"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Choose the applications that will support the fonts:"
+msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:737
+#: ../../standalone/drakfont:1
+#, c-format
msgid ""
"\n"
" Copyright (C) 2001-2002 by MandrakeSoft \n"
-"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
+"\tDUPONT Sebastien (original version)\n"
+" CHAUMETTE Damien <dchaumette\\@mandrakesoft.com>\n"
"\n"
" 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"
@@ -11528,269 +14771,339 @@ msgid ""
" - ttf2pt1: \n"
"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
" Convert ttf font files to afm and pfb fonts\n"
-"\n"
-"\n"
msgstr ""
-#: ../../standalone/drakfont_.c:793
-msgid ""
-"drakfont Future Overview\n"
-" - Fonts import:\n"
-" pfb ( Adobe Type 1 binary )\n"
-" pfa ( Adobe Type 1 ASCII )\n"
-" ttf ( True-Type )\n"
-" pcf.gz\n"
-" Speedo\n"
-" and Bitmap (PCF, BDF, and SNF)\n"
-" - Features\n"
-" - Install fonts from any directory\n"
-" - Get windows fonts on any vfat partitions\n"
-" - Get fonts on any partitions.\n"
-" - UN-installation of any fonts (even if not installed "
-"through drakfont)\n"
-" - Support\n"
-" - Xfs\n"
-" - ghostscript & printer\n"
-" - Staroffice & printer\n"
-" - abiword\n"
-"\t - netscape\n"
-" - Koffice, Gnumeric, ... studying\n"
-" - all fonts supported by printer\n"
-" - anti-aliases by RENDER in Xfree86 .... \n"
-"\t\t\t\tsupported by KDE.\n"
-"\t\t\t\twill be supported by gnome 1.2.\n"
-"Visual Interface:\n"
-" Window interface:\n"
-" - Fontselectiondialog widget\n"
-" - Command buttons under Fontselectiondialog (like the actual "
-"frontend).\n"
-" Commands buttons:\n"
-" - import from windows partition.\n"
-" import from all fat32 partitions and look for winnt/windows/"
-"font\n"
-" and import all (delete doublon) but don't import if already "
-"exist.\n"
-" - import from directory\n"
-" look for if it exist before for each font and not delete the "
-"original.\n"
-" (replace all, no, none)\n"
-" expert options:\n"
-" ask the directory, and look for if it exist before\n"
-" if it exist ask: (replace all, no, none)\n"
-" - uninstall with list per font type\n"
-" Expert additional switch\n"
-" - option support: ghostscript, Staroffice, etc...\n"
-" check-button. (by default all check)\n"
-" - Printer Application Fonts Support...\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:862
-#, fuzzy
-msgid "Choose the applications that will support the fonts:"
-msgstr "Kies die partisies om te formatteer"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "About"
+msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:870
-msgid "Ghostscript"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Font List"
+msgstr "Hegpunt"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Uninstall Fonts"
+msgstr "Deпnstallasie van RPMs"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:877
-#, fuzzy
-msgid "StarOffice"
-msgstr "Kantoor"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Import Fonts"
+msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:884
-#, fuzzy
-msgid "Abiword"
-msgstr "Aborteer"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "done"
+msgstr "Klaar"
-#: ../../standalone/drakfont_.c:891
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Drukker"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "xfs restart"
+msgstr "beperk"
-#: ../../standalone/drakfont_.c:958
-msgid "Select the font file or directory and click on 'Add'"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:1005
-#, fuzzy
-msgid "Install List"
-msgstr "Installeer stelsel"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Restart XFS"
+msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:1048
-msgid "click here if you are sure."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Suppress Temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:1055
-msgid "here if no."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:1112
-msgid "Unselected All"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:1116
-#, fuzzy
-msgid "Selected All"
-msgstr "Selekteer lOer"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "ttf fonts conversion"
+msgstr ""
-#
-#: ../../standalone/drakfont_.c:1120
-#, fuzzy
-msgid "Remove List"
-msgstr "Verwyder drukker"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
-#, fuzzy
-msgid "Initials tests"
-msgstr "Beginboodskap"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Fonts conversion"
+msgstr ""
-#: ../../standalone/drakfont_.c:1145
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "True Type install done"
+msgstr ""
-#: ../../standalone/drakfont_.c:1149
-msgid "Install & convert Fonts"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:1153
-#, fuzzy
-msgid "Post Install"
-msgstr "Installasie"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "True Type fonts installation"
+msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:1178
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Fonts copy"
+msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:1182
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Verlaay installasie"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Search for fonts in installed list"
+msgstr ""
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
-msgid "Internet Connection Sharing"
-msgstr "Internetkonneksiedeling"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "could not find any font.\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:114
-msgid "Sorry, we support only 2.4 kernels."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakgw_.c:125
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Internetkonneksiedeling is ontsper"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "could not find any font in your mounted partitions"
+msgstr ""
-#: ../../standalone/drakgw_.c:126
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "no fonts found"
+msgstr "%s is nie gevind nie"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "parse all fonts"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselect fonts installed"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Search installed fonts"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently enabled.\n"
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
-"What would you like to do?"
-msgstr ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans aktief.\n"
+"%s\n"
"\n"
-"Wat wil u doen?"
+"Click on Configure to launch the setup wizard."
+msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:130
-msgid "disable"
-msgstr "deaktiveer"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing configuration"
+msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
-msgid "dismiss"
-msgstr "ignoreer/sien oor"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
-msgid "reconfigure"
-msgstr "herkonfigureer"
+#: ../../standalone/drakgw:1
+#, c-format
+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:133
-msgid "Disabling servers..."
-msgstr "Bedieners word gedeaktiveer..."
+#: ../../standalone/drakgw:1
+#, c-format
+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:142
-msgid "Internet connection sharing is now disabled."
-msgstr "Internetkonneksiedeling is gedeaktiveer"
+#: ../../standalone/drakgw:1
+#, c-format
+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:149
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Internetkonneksiedeling is gesper"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid "Problems installing package %s"
+msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:150
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-"Dis tans gedeaktiveer.\n"
-"\n"
-"Wat wil u doen?"
+"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:154
-msgid "enable"
-msgstr "Aktiveer"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Configuring..."
+msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:161
-msgid "Enabling servers..."
-msgstr "Bedieneers word aktiveer..."
+#: ../../standalone/drakgw:1
+#, 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:166
-msgid "Internet connection sharing is now enabled."
-msgstr "Internetkonneksiedeling is geaktiveer"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The Local Network did not finish with `.0', bailing out."
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Re-configure interface and DHCP server"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The maximum lease (in seconds)"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The default lease (in seconds)"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP end range"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP start range"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The internal domain name"
+msgstr "Nuwe drukkernaam"
-#: ../../standalone/drakgw_.c:183
-#, fuzzy
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The DNS Server IP"
+msgstr "CUPS-bediener IP:"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "(This) DHCP Server IP"
+msgstr "CUPS-bediener IP:"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
+"DHCP Server Configuration.\n"
"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
+"Here you can select different options for the DHCP server configuration.\n"
+"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
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"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Local Network adress"
+msgstr "geen netwerkkaart gevind nie"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
-"Wil u internetdeling opstel?\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
+"for you.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Koppelvlak %s (met module %s)"
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
-#: ../../standalone/drakgw_.c:212
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Current interface configuration"
+msgstr "Verander drukkerkonfigurasie"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Show current interface configuration"
+msgstr "Verander drukkerkonfigurasie"
+
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Interface %s"
-msgstr "Koppelvlak %s"
+msgid "No (experts only)"
+msgstr ""
-#: ../../standalone/drakgw_.c:220
-msgid "No network adapter on your system!"
-msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Automatic reconfiguration"
+msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:221
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
-"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:227
-msgid "Network interface"
-msgstr "Netwerkkoppelvlak"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Network interface already configured"
+msgstr "Monitor is nie opgestel nie"
+
+#: ../../standalone/drakgw:1
+#, c-format
+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:228
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11805,341 +15118,490 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:235
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Network interface"
+msgstr "Netwerkkoppelvlak"
+
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
msgid ""
-"Please choose what network adapter will be connected to your Local Area "
-"Network."
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
-"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
+"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
+"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:261
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor is nie opgestel nie"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid "No network adapter on your system!"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Interface %s"
+msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:262
+#: ../../standalone/drakgw:1
#, c-format
+msgid "Interface %s (using module %s)"
+msgstr "Koppelvlak %s (met module %s)"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
+"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 "
+"this computer's Internet connection.\n"
"\n"
-"Do you want an automatic re-configuration?\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"You can do it manually but you need to know what you're doing."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Nou dat u internetkonfigurasie opgestel is,\n"
+"moet u die rekenaar opstel om dit te deel.\n"
+"LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
+"stel.\n"
+"\n"
+"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:267
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Outomatiese CUPS konfigurasie"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing"
+msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:267
-msgid "No (experts only)"
-msgstr ""
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing is now enabled."
+msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:268
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Verander drukkerkonfigurasie"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Enabling servers..."
+msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:269
-#, fuzzy
-msgid "Current interface configuration"
-msgstr "Verander drukkerkonfigurasie"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "dismiss"
+msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:270
+#: ../../standalone/drakgw:1
#, c-format
+msgid "reconfigure"
+msgstr "herkonfigureer"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "enable"
+msgstr "Aktiveer"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"Current configuration of `%s':\n"
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"What would you like to do?"
msgstr ""
+"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+"Dis tans gedeaktiveer.\n"
+"\n"
+"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:283
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internetkonneksiedeling is gesper"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing is now disabled."
+msgstr "Internetkonneksiedeling is gedeaktiveer"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Disabling servers..."
+msgstr "Bedieners word gedeaktiveer..."
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "disable"
+msgstr "deaktiveer"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the Network that you use "
-"for your local network; I will not reconfigure it and I will not touch your "
-"DHCP server configuration.\n"
-"\n"
-"The default DNS entry is the Caching Nameserver configured on the firewall. "
-"You can replace that with your ISP DNS IP, for example.\n"
-"\t\t \n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
+"The setup of Internet Connection Sharing has already been done.\n"
+"It's currently enabled.\n"
"\n"
+"What would you like to do?"
msgstr ""
+"Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+"Dis tans aktief.\n"
+"\n"
+"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:290
-#, fuzzy
-msgid "Local Network adress"
-msgstr "geen netwerkkaart gevind nie"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internetkonneksiedeling is ontsper"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakhelp:1
+#, c-format
msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you don't know the meaning of an option, simply leave it as it is.\n"
-"\n"
+"No browser is installed on your system, Please install one if you want to "
+"browse the help system"
msgstr ""
-#: ../../standalone/drakgw_.c:300
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS-bediener IP:"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "group :"
+msgstr "Werkgroep:"
-#: ../../standalone/drakgw_.c:301
-#, fuzzy
-msgid "The DNS Server IP"
-msgstr "CUPS-bediener IP:"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "user :"
+msgstr "Gebruikerskode"
-#: ../../standalone/drakgw_.c:302
-#, fuzzy
-msgid "The internal domain name"
-msgstr "Nuwe drukkernaam"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Path selection"
+msgstr "Stoor pakketseleksie"
-#: ../../standalone/drakgw_.c:303
-msgid "The DHCP start range"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakgw_.c:304
-msgid "The DHCP end range"
-msgstr ""
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Use group id for execution"
+msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakgw_.c:305
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Use owner id for execution"
+msgstr "Gebruik outobespeuring"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakgw_.c:306
-msgid "The maximum lease (in seconds)"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakgw_.c:307
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakgw_.c:314
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakgw_.c:325
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Property"
+msgstr "Poort"
+
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
+msgid "Path"
+msgstr ""
-#: ../../standalone/drakgw_.c:335
-msgid "Configuring..."
-msgstr "Konfigurasie in aabou..."
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Permissions"
+msgstr "Weergawe: %s\n"
-#: ../../standalone/drakgw_.c:336
-msgid "Configuring scripts, installing software, starting servers..."
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Current user"
+msgstr "Aanvaar gebruiker"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "browse"
msgstr ""
-"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:372
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Problems installing package %s"
-msgstr "Probleme met Installasue van pakket %s"
+msgid "select perm file to see/edit"
+msgstr ""
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakperm:1
+#, c-format
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)."
+"Drakperm is used to see files to use in order to fix permissions, owners, "
+"and groups via msec.\n"
+"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakgw_.c:523
-msgid "The setup has already been done, but it's currently disabled."
-msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Edit current rule"
+msgstr ""
-#: ../../standalone/drakgw_.c:524
-msgid "The setup has already been done, and it's currently enabled."
-msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "edit"
+msgstr ""
-#: ../../standalone/drakgw_.c:525
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Delete selected rule"
+msgstr "Verwyder tou"
-#: ../../standalone/drakgw_.c:531
-msgid "Internet connection sharing configuration"
-msgstr "Internetkonneksiedelingkonfigurasie"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "delete"
+msgstr "Uitwis"
-#: ../../standalone/drakgw_.c:539
+#: ../../standalone/drakperm:1
#, fuzzy, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Internetkonneksiedeling"
+msgid "Add a new rule at the end"
+msgstr "Voeg drukker by"
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "group"
-msgstr "Werkgroep:"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "add a rule"
+msgstr "Voeg module by"
-#: ../../standalone/drakperm_.c:36
-msgid "path"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Move selected rule down one level"
msgstr ""
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "permissions"
-msgstr "partisie %s"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Down"
+msgstr "Klaar"
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "user"
-msgstr "Gebruikerskode"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Move selected rule up one level"
+msgstr ""
-#: ../../standalone/drakperm_.c:43
+#: ../../standalone/drakperm:1
+#, c-format
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:44
-#, fuzzy
-msgid "delete"
-msgstr "Uitwis"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "permissions"
+msgstr "partisie %s"
-#: ../../standalone/drakperm_.c:45
-msgid "edit"
-msgstr ""
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "group"
+msgstr "Werkgroep:"
-#: ../../standalone/drakperm_.c:46
-#, fuzzy
-msgid "Down"
-msgstr "Klaar"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "user"
+msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:47
-#, fuzzy
-msgid "add a rule"
-msgstr "Voeg module by"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "path"
+msgstr ""
-#: ../../standalone/drakperm_.c:48
-msgid "select perm file to see/edit"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Location of auto_install.cfg file"
+msgstr "Outoinstallasieskyf word geskep."
+
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"Please indicate where the auto_install.cfg file is located.\n"
+"\n"
+"Leave it blank if you do not want to set up automatic installation mode.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakpxe:1
+#, c-format
msgid ""
-"Drakperm is used to see files to use in order to fix permissions, owners, "
-"and groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
+"No CD or DVD image found, please copy the installation program and rpm files."
msgstr ""
-#: ../../standalone/drakperm_.c:56
-#, fuzzy
-msgid "Add a new rule at the end"
-msgstr "Voeg drukker by"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "No image found"
+msgstr "Plaaslike drukker"
-#: ../../standalone/drakperm_.c:57
-msgid "Edit curent rule"
-msgstr ""
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation image directory"
+msgstr "Xpmac (installasievertoondrywer)"
-#: ../../standalone/drakperm_.c:58
-msgid "Up selected rule one level"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"Please indicate where the installation image will be available.\n"
+"\n"
+"If you do not have an existing directory, please copy the CD or DVD "
+"contents.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:59
-msgid "Down selected rule one level"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "The DHCP end ip"
msgstr ""
-#: ../../standalone/drakperm_.c:60
-#, fuzzy
-msgid "Delete selected rule"
-msgstr "Verwyder tou"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "The DHCP start ip"
+msgstr ""
-#: ../../standalone/drakperm_.c:224
-msgid "browse"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"The DHCP server will allow other computer to boot using PXE in the given "
+"range of address.\n"
+"\n"
+"The network address is %s using a netmask of %s.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:231
-#, fuzzy
-msgid "Current user"
-msgstr "Aanvaar gebruiker"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Interface %s (on network %s)"
+msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakperm_.c:236
-#, fuzzy
-msgid "Permissions"
-msgstr "Weergawe: %s\n"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Please choose which network interface will be used for the dhcp server."
+msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
-#: ../../standalone/drakperm_.c:237
-msgid "Path"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid ""
+"You are about to configure your computer to install a PXE server as a DHCP "
+"server\n"
+"and a TFTP server to build an installation server.\n"
+"With that feature, other computers on your local network will be installable "
+"using from this computer.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Nou dat u internetkonfigurasie opgestel is,\n"
+"moet u die rekenaar opstel om dit te deel.\n"
+"LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
+"stel.\n"
+"\n"
+"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakperm_.c:238
-#, fuzzy
-msgid "Property"
-msgstr "Poort"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation Server Configuration"
+msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakperm_.c:240
-msgid "sticky-bit"
-msgstr ""
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "PXE Server Configuration"
+msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakperm_.c:241
-msgid "Set-UID"
-msgstr ""
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security options..."
+msgstr "Wag asb. installasie word voorberei"
-#: ../../standalone/drakperm_.c:242
-msgid "Set-GID"
-msgstr ""
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security level..."
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/drakperm_.c:296
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+#: ../../standalone/draksec:1
+#, c-format
+msgid "Periodic Checks"
msgstr ""
-#: ../../standalone/drakperm_.c:297
-#, fuzzy
-msgid "Use owner id for execution"
-msgstr "Gebruik outobespeuring"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "System Options"
+msgstr "Module opsies:"
-#: ../../standalone/drakperm_.c:298
-#, fuzzy
-msgid "Use group id for execution"
-msgstr "Gebruik outobespeuring"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Network Options"
+msgstr "Module opsies:"
-#: ../../standalone/drakperm_.c:299
-msgid "when checked, owner and group won't be changed"
+#: ../../standalone/draksec:1
+#, c-format
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""
-#: ../../standalone/drakperm_.c:304
-#, fuzzy
-msgid "Path selection"
-msgstr "Stoor pakketseleksie"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Administrator:"
+msgstr "Eksterne lpd drukkeropsies"
-#: ../../standalone/drakperm_.c:350
-#, fuzzy
-msgid "user :"
-msgstr "Gebruikerskode"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Alerts:"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/drakperm_.c:352
-#, fuzzy
-msgid "group :"
-msgstr "Werkgroep:"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "(default value: %s)"
+msgstr " (Verstek)"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
-msgid "No Sound Card detected!"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Level:"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksec:1
+#, c-format
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can visit our hardware database at:\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../standalone/draksound_.c:54
+#: ../../standalone/draksound:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -12148,717 +15610,814 @@ msgid ""
"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:21
+#: ../../standalone/draksound:1
+#, c-format
msgid ""
-"package 'ImageMagick' is required for correct working.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:67
-#, fuzzy
-msgid "first step creation"
-msgstr "herlaaiskyfskepping"
+#: ../../standalone/draksound:1
+#, fuzzy, c-format
+msgid "No Sound Card detected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/draksplash_.c:70
-#, fuzzy
-msgid "final resolution"
-msgstr "Resolusie"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
-#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
-#, fuzzy
-msgid "choose image file"
-msgstr "Kies 'n lкer"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Generating preview ..."
+msgstr "Toestel word afgetas..."
-#: ../../standalone/draksplash_.c:72
-#, fuzzy
-msgid "Theme name"
-msgstr "Drukkernaam:"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "You must choose an image file first!"
+msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/draksplash_.c:77
-msgid "Browse"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "ProgressBar color selection"
+msgstr "Drukkermodelkeuse"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "This theme does not yet have a bootsplash in %s !"
+msgstr ""
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
-#, fuzzy
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image file"
+msgstr "Kies 'n lкer"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Konfigureer dienste"
-#: ../../standalone/draksplash_.c:90
-msgid ""
-"x coordinate of text box\n"
-"in number of character"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:91
-msgid ""
-"y coordinate of text box\n"
-"in number of character"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:92
-msgid "text width"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Choose color"
+msgstr "Kies 'n monitor"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Save theme"
+msgstr "Installeer stelsel"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Preview"
+msgstr "toestel"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:93
-msgid "text box height"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the height of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:94
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the width of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:95
+#: ../../standalone/draksplash:1
+#, c-format
msgid ""
"the progress bar y coordinate\n"
"of its upper left corner"
msgstr ""
-#: ../../standalone/draksplash_.c:96
-msgid "the width of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:97
-msgid "the heigth of the progress bar"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/draksplash_.c:98
-msgid "the color of the progress bar"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "text box height"
msgstr ""
-#: ../../standalone/draksplash_.c:113
-#, fuzzy
-msgid "Preview"
-msgstr "toestel"
-
-#: ../../standalone/draksplash_.c:115
-#, fuzzy
-msgid "Save theme"
-msgstr "Installeer stelsel"
-
-#: ../../standalone/draksplash_.c:116
-#, fuzzy
-msgid "Choose color"
-msgstr "Kies 'n monitor"
-
-#: ../../standalone/draksplash_.c:119
-msgid "Display logo on Console"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "text width"
msgstr ""
-#: ../../standalone/draksplash_.c:120
-msgid "Make kernel message quiet by default"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid ""
+"y coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
+#: ../../standalone/draksplash:1
#, c-format
-msgid "This theme haven't yet any bootsplash in %s !"
+msgid ""
+"x coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../standalone/draksplash_.c:205
-msgid "saving Bootsplash theme..."
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:428
-#, fuzzy
-msgid "ProgressBar color selection"
-msgstr "Drukkermodelkeuse"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Theme name"
+msgstr "Drukkernaam:"
-#: ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "You must choose an image file first!"
-msgstr "Tik drukkertoestel URI in"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "final resolution"
+msgstr "Resolusie"
-#: ../../standalone/draksplash_.c:458
-#, fuzzy
-msgid "Generating preview ..."
-msgstr "Toestel word afgetas..."
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "first step creation"
+msgstr "herlaaiskyfskepping"
-#. -PO First %s is theme name, second %s (in parenthesis) is resolution
-#: ../../standalone/draksplash_.c:506
+#: ../../standalone/draksplash:1
#, c-format
-msgid "%s BootSplash (%s) preview"
+msgid ""
+"package 'ImageMagick' is required to be able to complete configuration.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/drakxtv_.c:46
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
-"XawTV isn't installed!\n"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\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"
+"You can visit our hardware database at:\n"
"\n"
"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:63
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Kanadees (Quebec)"
-
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (cable)"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (cable-hrc)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "China (broadcast)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "Japan (broadcast)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "Japan (cable)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "East Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "France [SECAM]"
-msgstr "Frankryk"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Ireland"
-msgstr "Yslandies"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "West Europe"
-msgstr "Europa"
-
-#: ../../standalone/drakxtv_.c:66
-#, fuzzy
-msgid "Australia"
-msgstr "seriaal"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "There was an error while scanning for TV channels"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
-#: ../../standalone/drakxtv_.c:66
-msgid "Newzealand"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:67
-msgid "South Africa"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:68
-msgid "Argentina"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Area:"
msgstr ""
-#: ../../standalone/drakxtv_.c:69
-msgid "Australian Optus cable TV"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "TV norm:"
msgstr ""
-#: ../../standalone/drakxtv_.c:102
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:104
-msgid "TV norm:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../standalone/drakxtv_.c:105
-msgid "Area:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:109
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "France [SECAM]"
+msgstr "Frankryk"
-#: ../../standalone/drakxtv_.c:116
-msgid "Scanning for TV channels"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "East Europe"
+msgstr "Europa"
+
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "West Europe"
+msgstr "Europa"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
-#, fuzzy
-msgid "There was an error while scanning for TV channels"
-msgstr "Daar was 'n fout met die installasie van die pakkette:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Japan (cable)"
+msgstr ""
-#: ../../standalone/drakxtv_.c:121
-msgid "XawTV isn't installed!"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:124
-msgid "Have a nice day!"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Canada (cable)"
+msgstr "Kanadees (Quebec)"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:125
-msgid "Now, you can run xawtv (under X Window!) !\n"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:147
-msgid "No TV Card detected!"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"XawTV isn't installed!\n"
"\n"
"\n"
-"You can visit our hardware database at:\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\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"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/harddrake2_.c:17
-#, fuzzy
-msgid "Alternative drivers"
-msgstr "Alternatiewe toetsbladsy (A4)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "/Options"
+msgstr "/Opsies"
-#: ../../standalone/harddrake2_.c:18
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect jazz drives"
+msgstr "Gebruik outobespeuring"
-#: ../../standalone/harddrake2_.c:20
-msgid "Bus"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect modems"
+msgstr "Gebruik outobespeuring"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect printers"
+msgstr "Gebruik outobespeuring"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "primary"
msgstr ""
-#: ../../standalone/harddrake2_.c:21
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "secondary"
+msgstr "%d sekondes"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+"Click on a device in the left tree in order to display its information here."
msgstr ""
-#: ../../standalone/harddrake2_.c:22
-#, fuzzy
-msgid "Channel"
-msgstr "Kanselleer"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drukkerdata word gelees..."
-#: ../../standalone/harddrake2_.c:22
-msgid "EIDE/SCSI channel"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Run config tool"
msgstr ""
-#: ../../standalone/harddrake2_.c:23
-msgid "Bogomips"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Configure module"
+msgstr "Stel muistoestel op"
-#: ../../standalone/harddrake2_.c:23
-msgid ""
-"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
-"\t to initialize a timer counter. Its result is stored as bogomips as a way "
-"to \"benchmark\" the cpu."
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Information"
+msgstr "Vertoon inligting"
-#: ../../standalone/harddrake2_.c:26
-#, fuzzy
-msgid "Bus identification"
-msgstr "Magtiging"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Detected hardware"
+msgstr "Sien hardeware inligting"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Harddrake2 version "
+msgstr "Hardeskyfdeteksie."
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Detection in progress"
+msgstr "Op poort %s bespeur"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Author:"
+msgstr "Aftas"
-#: ../../standalone/harddrake2_.c:27
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
-"PCI/USB ids"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../standalone/harddrake2_.c:29
-msgid "Location on the bus"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "About Harddrake"
msgstr ""
-#: ../../standalone/harddrake2_.c:30
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "/_About..."
+msgstr "/_Aangaande..."
+
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
+#, c-format
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"
+"Once you've selected a device, you'll be able to see the device information "
+"in fields displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/harddrake2_.c:33
-#, fuzzy
-msgid "Cache size"
-msgstr "blokgrootte"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Select a device !"
+msgstr "Selekteer 'n videokaart"
-#: ../../standalone/harddrake2_.c:33
-msgid "Size of the (second level) cpu cache"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2_.c:34
-msgid "Coma bug:"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Harddrake help"
msgstr ""
-#: ../../standalone/harddrake2_.c:34
-msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Fields description"
+msgstr "Beskrywing"
-#: ../../standalone/harddrake2_.c:35
-msgid "Cpuid family"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _jazz drives"
+msgstr "Gebruik outobespeuring"
+
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_Options"
+msgstr "/_Opsies"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _modems"
+msgstr "Gebruik outobespeuring"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _printers"
+msgstr "Gebruik outobespeuring"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../standalone/harddrake2_.c:35
-msgid "Family of the cpu (eg: 6 for i686 class)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the vendor name of the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:36
-#, fuzzy
-msgid "Cpuid level"
-msgstr "Sekuriteitsvlak word gestel."
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "The type of bus on which the mouse is connected"
+msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../standalone/harddrake2_.c:36
-msgid "Information level that can be obtained through the cpuid instruction"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../standalone/harddrake2_.c:37
-msgid "Frequency (MHz)"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model stepping"
+msgstr "Formatering"
-#: ../../standalone/harddrake2_.c:37
-msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the number of the processor"
msgstr ""
-#: ../../standalone/harddrake2_.c:38
-msgid "This field describes the device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Processor ID"
msgstr ""
-#: ../../standalone/harddrake2_.c:39
-#, fuzzy
-msgid "Old device file"
-msgstr "Selekteer lOer"
+#
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "network printer port"
+msgstr "Netwerkdrukker (sok)"
-#: ../../standalone/harddrake2_.c:40
-msgid "old static device name used in dev package"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Name"
+msgstr "Naam: "
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Number of buttons"
+msgstr "2 knoppies"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../standalone/harddrake2_.c:41
-#, fuzzy
-msgid "New devfs device"
-msgstr "Netwerkportaaltoestel"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model name"
+msgstr "Modulenaam"
-#: ../../standalone/harddrake2_.c:42
-msgid "new dinamic device name generated by incore kernel devfs"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../standalone/harddrake2_.c:43
-#, fuzzy
-msgid "Module"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model"
msgstr "Muis"
-#: ../../standalone/harddrake2_.c:43
-msgid "the module of the GNU/Linux kernel that handle that device"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "hard disk model"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "class of hardware device"
msgstr ""
-#: ../../standalone/harddrake2_.c:44
-msgid "CPU flags reported by the kernel"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Media class"
msgstr ""
-#: ../../standalone/harddrake2_.c:44
-msgid "Flags"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../standalone/harddrake2_.c:45
-msgid "Fdiv bug"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Level"
+msgstr "vlak"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Format of floppies the drive accept"
msgstr ""
-#: ../../standalone/harddrake2_.c:46
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Floppy format"
+msgstr "Formatteer"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the attended precision when performing a "
-"Floating point DIVision (FDIV)"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../standalone/harddrake2_.c:49
-msgid "Is FPU present"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Halt bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:49
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../standalone/harddrake2_.c:50
-msgid "Does FPU have an irq vector"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "F00f bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:50
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../standalone/harddrake2_.c:51
-msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether the FPU has an irq vector"
msgstr ""
-#: ../../standalone/harddrake2_.c:51
-msgid "F00f bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/harddrake2_.c:52
-msgid "Halt bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Is FPU present"
msgstr ""
-#: ../../standalone/harddrake2_.c:53
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the required precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../standalone/harddrake2_.c:55
-#, fuzzy
-msgid "Floppy format"
-msgstr "Formatteer"
-
-#: ../../standalone/harddrake2_.c:55
-msgid "Format of floppies the drive accept"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Fdiv bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:56
-#, fuzzy
-msgid "Level"
-msgstr "vlak"
-
-#: ../../standalone/harddrake2_.c:56
-msgid "Sub generation of the cpu"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../standalone/harddrake2_.c:57
-msgid "Media class"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Flags"
msgstr ""
-#: ../../standalone/harddrake2_.c:57
-msgid "class of hardware device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
-#, fuzzy
-msgid "Model"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Module"
msgstr "Muis"
-#: ../../standalone/harddrake2_.c:58
-#, fuzzy
-msgid "hard disk model"
-msgstr "Kaartgeheue (DMA)"
-
-#: ../../standalone/harddrake2_.c:59
-msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
-#: ../../standalone/harddrake2_.c:60
-#, fuzzy
-msgid "Model name"
-msgstr "Modulenaam"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "New devfs device"
+msgstr "Netwerkportaaltoestel"
-#: ../../standalone/harddrake2_.c:60
-msgid "Official vendor name of the cpu"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../standalone/harddrake2_.c:61
-#, fuzzy
-msgid "Number of buttons"
-msgstr "2 knoppies"
-
-#: ../../standalone/harddrake2_.c:62
-#, fuzzy
-msgid "Name"
-msgstr "Naam: "
-
-#
-#: ../../standalone/harddrake2_.c:63
-#, fuzzy
-msgid "network printer port"
-msgstr "Netwerkdrukker (sok)"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Old device file"
+msgstr "Selekteer lOer"
-#: ../../standalone/harddrake2_.c:64
-msgid "Processor ID"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "This field describes the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:64
-msgid "the number of the processor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../../standalone/harddrake2_.c:65
-#, fuzzy
-msgid "Model stepping"
-msgstr "Formatering"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../standalone/harddrake2_.c:65
-msgid "Stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../standalone/harddrake2_.c:66
-#, fuzzy
-msgid "The type of bus on which the mouse is connected"
-msgstr "Aan watter seriaalpoort is u muis gekoppel?"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cpuid level"
+msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/harddrake2_.c:67
-msgid "the vendor name of the device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../standalone/harddrake2_.c:68
-msgid "the vendor name of the processor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Cpuid family"
msgstr ""
-#: ../../standalone/harddrake2_.c:82
-#, fuzzy
-msgid "/_Quit"
-msgstr "Verlaat"
-
-#: ../../standalone/harddrake2_.c:83
-#, fuzzy
-msgid "/Autodetect _printers"
-msgstr "Gebruik outobespeuring"
-
-#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
-#: ../../standalone/logdrake_.c:81
-msgid "/_Options"
-msgstr "/_Opsies"
-
-#: ../../standalone/harddrake2_.c:85
-#, fuzzy
-msgid "/Autodetect _modems"
-msgstr "Gebruik outobespeuring"
-
-#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
-#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
-#: ../../standalone/logdrake_.c:83
-msgid "/_Help"
-msgstr "/_Help"
-
-#: ../../standalone/harddrake2_.c:89
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Help"
-
-#: ../../standalone/harddrake2_.c:92
-msgid "Harddrake help"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:93
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Coma bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:96
-msgid ""
-"Once you've selected a device, you'll be able to see explanations on fields "
-"displayed on the right frame (\"Information\")"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../standalone/harddrake2_.c:96
-#, fuzzy
-msgid "Select a device !"
-msgstr "Selekteer 'n videokaart"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cache size"
+msgstr "blokgrootte"
-#: ../../standalone/harddrake2_.c:100
-msgid "/_Report Bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+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 ""
-#: ../../standalone/harddrake2_.c:102
-#, fuzzy
-msgid "/_About..."
-msgstr "/Help/_Aangaande..."
-
-#: ../../standalone/harddrake2_.c:104
-msgid "About Harddrake"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Location on the bus"
msgstr ""
-#: ../../standalone/harddrake2_.c:105
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"- PCI and USB devices: this lists the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
msgstr ""
-#: ../../standalone/harddrake2_.c:106
-#, fuzzy
-msgid "Author:"
-msgstr "Aftas"
-
-#: ../../standalone/harddrake2_.c:113
-#, fuzzy
-msgid "Detection in progress"
-msgstr "Op poort %s bespeur"
-
-#: ../../standalone/harddrake2_.c:119
-#, fuzzy
-msgid "Harddrake2 version "
-msgstr "Hardeskyfdeteksie."
-
-#: ../../standalone/harddrake2_.c:126
-#, fuzzy
-msgid "Detected hardware"
-msgstr "Sien hardeware inligting"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Bus identification"
+msgstr "Magtiging"
-#: ../../standalone/harddrake2_.c:129
-#, fuzzy
-msgid "Information"
-msgstr "Vertoon inligting"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"The GNU/Linux kernel needs to run a calculation loop at boot time to "
+"initialize a timer counter. Its result is stored as bogomips as a way to "
+"\"benchmark\" the cpu."
+msgstr ""
-#: ../../standalone/harddrake2_.c:131
-#, fuzzy
-msgid "Configure module"
-msgstr "Stel muistoestel op"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Bogomips"
+msgstr ""
-#: ../../standalone/harddrake2_.c:137
-msgid "Run config tool"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../standalone/harddrake2_.c:143
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "Drukkerdata word gelees..."
+msgid "Channel"
+msgstr "Kanselleer"
-#: ../../standalone/harddrake2_.c:159
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Click on a device in the left tree in order to get its information displayed "
-"here."
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../standalone/harddrake2_.c:231
-msgid "primary"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Bus"
msgstr ""
-#: ../../standalone/harddrake2_.c:231
-#, fuzzy
-msgid "secondary"
-msgstr "%d sekondes"
-
-#: ../../standalone/harddrake2_.c:260
-#, fuzzy
-msgid "/Autodetect modems"
-msgstr "Gebruik outobespeuring"
-
-#: ../../standalone/harddrake2_.c:260
-#, fuzzy
-msgid "/Autodetect printers"
-msgstr "Gebruik outobespeuring"
-
-#: ../../standalone/harddrake2_.c:261
-#, fuzzy
-msgid "/Options"
-msgstr "/_Opsies"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
-#: ../../standalone/keyboarddrake_.c:26
-msgid "Please, choose your keyboard layout."
-msgstr "Wat is u sleutelborduitleg?"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Alternative drivers"
+msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../standalone/keyboarddrake_.c:35
+#: ../../standalone/keyboarddrake:1
+#, c-format
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
"Wil u hк dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
"terugstuur)?"
-#: ../../standalone/livedrake_.c:18
-msgid "Change Cd-Rom"
-msgstr "Verander CDROM"
+#: ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Please, choose your keyboard layout."
+msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/livedrake_.c:19
+#: ../../standalone/livedrake:1
+#, c-format
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Kon nie die intydse opgradering begin nie !!!\n"
+
+#: ../../standalone/livedrake:1
+#, c-format
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."
@@ -12866,653 +16425,779 @@ msgstr ""
"Dit asb. die instasllasie CDROM in die aandrywer en druk OK. Indien u nie\n"
"hieroor beskik nie, druk Kanselleer om die intydse opgradering te vermy."
-#: ../../standalone/livedrake_.c:29
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Kon nie die intydse opgradering begin nie !!!\n"
+#: ../../standalone/livedrake:1
+#, c-format
+msgid "Change Cd-Rom"
+msgstr "Verander CDROM"
-#: ../../standalone/localedrake_.c:34
+#: ../../standalone/localedrake:1
+#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
-msgid "logdrake"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Save as.."
msgstr ""
-#: ../../standalone/logdrake_.c:68
-msgid "Show only for the selected day"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Please enter your email address below "
+msgstr "Probeer asb. weer"
-#: ../../standalone/logdrake_.c:75
-msgid "/File/_New"
-msgstr "/Lкer/_Nuut"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "alert configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:75
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "You will receive an alert if the load is higher than this value"
+msgstr ""
-#: ../../standalone/logdrake_.c:76
-msgid "/File/_Open"
-msgstr "/Lкer/_Oopmaak"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "load setting"
+msgstr "Formatering"
-#: ../../standalone/logdrake_.c:76
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"You will receive an alert if one of the selected services is no longer "
+"running"
+msgstr ""
-#: ../../standalone/logdrake_.c:77
-msgid "/File/_Save"
-msgstr "/Lкer/_Stoor"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "service setting"
+msgstr "interessant"
-#: ../../standalone/logdrake_.c:77
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Xinetd Service"
+msgstr "Drukkerbediener"
-#: ../../standalone/logdrake_.c:78
-msgid "/File/Save _As"
-msgstr "/Lкer/Stoor _as"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Webmin Service"
+msgstr "Dienste"
-#: ../../standalone/logdrake_.c:79
-msgid "/File/-"
-msgstr "/Lкer/-"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:82
-msgid "/Options/Test"
-msgstr "/Opsies/Toets"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Samba Server"
+msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:84
-msgid "/Help/_About..."
-msgstr "/Help/_Aangaande..."
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Postfix Mail Server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
-#: ../../standalone/logdrake_.c:145
-#, fuzzy
-msgid "User"
-msgstr "Gebruikerskode"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Ftp Server"
+msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:146
-#, fuzzy
-msgid "Messages"
-msgstr "Beginboodskap"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
-#: ../../standalone/logdrake_.c:147
-msgid "Syslog"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:148
-msgid "Mandrake Tools Explanations"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
+"Welkom by die proksiekonfigurasienutsprogram.\n"
+"\n"
+"Hier kan u die HTTP en FTP-instaanbedieners\n"
+"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:151
-msgid "search"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Mail alert configuration"
+msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:161
-msgid "A tool to monitor your logs"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
-msgid "Settings"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:167
-msgid "matching"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:168
-msgid "but not matching"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Calendar"
msgstr ""
-#: ../../standalone/logdrake_.c:172
+#: ../../standalone/logdrake:1
+#, c-format
msgid "Choose file"
msgstr ""
-#: ../../standalone/logdrake_.c:181
-msgid "Calendar"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "but not matching"
msgstr ""
-#: ../../standalone/logdrake_.c:191
-msgid "Content of the file"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "matching"
msgstr ""
-#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
-msgid "Mail alert"
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Settings"
msgstr ""
-#: ../../standalone/logdrake_.c:245
+#: ../../standalone/logdrake:1
#, c-format
-msgid "please wait, parsing file: %s"
+msgid "A tool to monitor your logs"
msgstr ""
-#: ../../standalone/logdrake_.c:392
-#, fuzzy
-msgid "Mail alert configuration"
-msgstr "Konfigurasie"
-
-#: ../../standalone/logdrake_.c:393
-#, fuzzy
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "search"
msgstr ""
-"Welkom by die proksiekonfigurasienutsprogram.\n"
-"\n"
-"Hier kan u die HTTP en FTP-instaanbedieners\n"
-"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:400
-msgid "Apache World Wide Web Server"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Mandrake Tools Explanation"
msgstr ""
-#: ../../standalone/logdrake_.c:401
-#, fuzzy
-msgid "Domain Name Resolver"
-msgstr "Domeinnaam"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Syslog"
+msgstr ""
-#: ../../standalone/logdrake_.c:402
-#, fuzzy
-msgid "Ftp Server"
-msgstr "NIS-bediener"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Messages"
+msgstr "Beginboodskap"
-#: ../../standalone/logdrake_.c:403
-#, fuzzy
-msgid "Postfix Mail Server"
-msgstr "Postfix e-posbediener, Inn netnuusbediener"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "User"
+msgstr "Gebruikerskode"
-#: ../../standalone/logdrake_.c:404
-#, fuzzy
-msgid "Samba Server"
-msgstr "NIS-bediener"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/Help/_About..."
+msgstr "/Help/_Aangaande..."
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "SSH Server"
-msgstr "NIS-bediener"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/Options/Test"
+msgstr "/Opsies/Toets"
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid "Webmin Service"
-msgstr "Dienste"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/-"
+msgstr "/Lкer/-"
-#: ../../standalone/logdrake_.c:407
-#, fuzzy
-msgid "Xinetd Service"
-msgstr "Drukkerbediener"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/Save _As"
+msgstr "/Lкer/Stoor _as"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "service setting"
-msgstr "interessant"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/logdrake_.c:415
-msgid ""
-"You will receive an alert if one of the selected services is no more running"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Save"
+msgstr "/Lкer/_Stoor"
-#: ../../standalone/logdrake_.c:428
-#, fuzzy
-msgid "load setting"
-msgstr "Formatering"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../standalone/logdrake_.c:429
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Open"
+msgstr "/Lкer/_Oopmaak"
-#: ../../standalone/logdrake_.c:444
-#, fuzzy
-msgid "alert configuration"
-msgstr "Kleurkonfigurasie"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/logdrake_.c:445
-#, fuzzy
-msgid "Please enter your email address below "
-msgstr "Probeer asb. weer"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_New"
+msgstr "/Lкer/_Nuut"
-#: ../../standalone/logdrake_.c:486
-msgid "Save as.."
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Show only for the selected day"
msgstr ""
-#: ../../standalone/mousedrake_.c:37
-msgid "Please, choose the type of your mouse."
-msgstr "Wat is u muistoestel?"
-
-#: ../../standalone/mousedrake_.c:50
+#: ../../standalone/mousedrake:1
+#, c-format
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
-#, fuzzy
-msgid "Network Monitoring"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../standalone/net_monitor_.c:96
-#, fuzzy
-msgid "Profile "
-msgstr "Profiel:"
+#: ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose your mouse type."
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/net_monitor_.c:99
-msgid "Statistics"
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Konnekteer"
-#: ../../standalone/net_monitor_.c:103
-#, fuzzy
-msgid "Sending Speed:"
-msgstr "Stoor in lкer"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Diskonnekteer"
-#: ../../standalone/net_monitor_.c:104
-msgid "Receiving Speed:"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid ""
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../standalone/net_monitor_.c:106
-#, fuzzy
-msgid "Connection Time: "
-msgstr "Konneksietipe:"
-
-#: ../../standalone/net_monitor_.c:113
-msgid "Logs"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "received"
msgstr ""
-#: ../../standalone/net_monitor_.c:147
-#, fuzzy
-msgid "Wait please, testing your connection..."
-msgstr "Konneksie word getoets..."
-
-#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
-#, fuzzy
-msgid "Connecting to Internet "
-msgstr "Konnekteer aan die internet"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
-#, fuzzy
-msgid "Disconnecting from Internet "
-msgstr "Konnekteer aan die internet"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "received: "
+msgstr ""
-#: ../../standalone/net_monitor_.c:222
-msgid "Disconnection from Internet failed."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "sent: "
msgstr ""
-#: ../../standalone/net_monitor_.c:223
-msgid "Disconnection from Internet complete."
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Local measure"
+msgstr "Plaaslike lкers"
+
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "average"
msgstr ""
-#: ../../standalone/net_monitor_.c:225
-#, fuzzy
-msgid "Connection complete."
-msgstr "Konneksiespoed"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Color configuration"
+msgstr "Kleurkonfigurasie"
-#: ../../standalone/net_monitor_.c:226
+#: ../../standalone/net_monitor:1
+#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../standalone/net_monitor_.c:330
-#, fuzzy
-msgid "Color configuration"
-msgstr "Kleurkonfigurasie"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection complete."
+msgstr "Konneksiespoed"
-#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
-msgid "sent: "
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Disconnection from the Internet complete."
msgstr ""
-#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
-msgid "received: "
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Disconnection from the Internet failed."
msgstr ""
-#: ../../standalone/net_monitor_.c:397
-msgid "average"
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connecting to the Internet "
+msgstr "Konnekteer aan die internet"
-#: ../../standalone/net_monitor_.c:400
-#, fuzzy
-msgid "Local measure"
-msgstr "Plaaslike lкers"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnecting from the Internet "
+msgstr "Konnekteer aan die internet"
-#: ../../standalone/net_monitor_.c:432
-msgid "transmitted"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Wait please, testing your connection..."
+msgstr "Konneksie word getoets..."
+
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Logs"
msgstr ""
-#: ../../standalone/net_monitor_.c:433
-msgid "received"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection Time: "
+msgstr "Konneksietipe:"
+
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Receiving Speed:"
msgstr ""
-#: ../../standalone/net_monitor_.c:453
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Sending Speed:"
+msgstr "Stoor in lкer"
+
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Statistics"
msgstr ""
-#: ../../standalone/net_monitor_.c:459
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Konnekteer"
+msgid "Profile "
+msgstr "Profiel:"
-#: ../../standalone/net_monitor_.c:459
+#: ../../standalone/net_monitor:1
#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "Diskonnekteer"
+msgid "Network Monitoring"
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
msgid "Reading printer data ..."
msgstr "Drukkerdata word gelees..."
-#: ../../standalone/scannerdrake_.c:39
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Toestel word afgetas..."
-
-#: ../../standalone/scannerdrake_.c:39
-msgid "Test ports"
-msgstr "Toets poorte"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Name/IP address of host:"
+msgstr ""
-#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+msgid "This host is already in the list, it cannot be added again.\n"
msgstr ""
-#: ../../standalone/scannerdrake_.c:54
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "%s found on %s, configure it?"
-msgstr "Wil u 'n drukwerk nou konfigureer?"
+msgid "Scannerdrake"
+msgstr "Selekteer 'n videokaart"
+
+#
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "You must enter a host name or an IP address.\n"
+msgstr "Toets asb. die muis"
-#: ../../standalone/scannerdrake_.c:57
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+msgid "Choose the host on which the local scanners should be made available:"
msgstr ""
-#: ../../standalone/scannerdrake_.c:63
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Selekteer 'n videokaart"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Sharing of local scanners"
+msgstr "Plaaslike drukker"
-#: ../../standalone/scannerdrake_.c:91
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "This machine"
+msgstr "(op hierdie rekenaar)"
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Remove selected host"
+msgstr "Verwyder tou"
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Edit selected host"
+msgstr "%s bespeur"
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Add host"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "This %s scanner is unsupported"
+msgid "These are the machines from which the scanners should be used:"
msgstr ""
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Usage of remote scanners"
+msgstr "Gebruik beskikbare spasie"
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "All remote machines"
+msgstr "(op hierdie rekenaar)"
+
+#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
+"These are the machines on which the locally connected scanner(s) should be "
+"available:"
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
-#, fuzzy
-msgid "choose device"
-msgstr "Herlaaitoestel"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Use the scanners on hosts: "
+msgstr ""
-#: ../../standalone/scannerdrake_.c:113
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+msgid "Use scanners on remote computers"
msgstr ""
-#: ../../standalone/scannerdrake_.c:118
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing to hosts: "
+msgstr "Druk"
+
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
+msgid "The scanners on this machine are available to other computers"
msgstr ""
-#: ../../standalone/service_harddrake_.c:44
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgid ""
+"You can also decide here whether scanners on remote machines should be made "
+"available on this machine."
msgstr ""
-#: ../../standalone/service_harddrake_.c:48
-msgid "Some devices were added:\n"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"Here you can choose whether the scanners connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../standalone/service_harddrake_.c:64
-#, fuzzy
-msgid "Hardware probing in progress"
-msgstr "Op poort %s bespeur"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"Your %s has been configured.\n"
+"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
+"applications menu."
+msgstr ""
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Kies u taal"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"The %s must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Kies installasieklas"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "choose device"
+msgstr "Herlaaitoestel"
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Hardeskyfdeteksie."
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Please select the device where your %s is attached"
+msgstr ""
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Stel muistoestel op"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is unsupported"
+msgstr ""
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Kies u sleutelbord"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is not known by this version of Scannerdrake."
+msgstr ""
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "Sekuriteit"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Stel lкerstelsels op"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Re-generating list of configured scanners ..."
+msgstr ""
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Formateer partisies"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for new scanners ..."
+msgstr "Plaaslike drukker"
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Kies pakkette om te installeer"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for configured scanners ..."
+msgstr "Plaaslike drukker"
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Installeer stelsel"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing"
+msgstr "Druk"
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Voeg 'n gebruiker by"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Add a scanner manually"
+msgstr ""
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Stel netwerk op"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Search for new scanners"
+msgstr "Plaaslike drukker"
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Konfigureer dienste"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "There are no scanners found which are available on your system.\n"
+msgstr ""
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Installeer herlaaistelsel"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid ""
+"The following scanner\n"
+"\n"
+"%s\n"
+"is available on your system.\n"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Maar 'n herlaaiskyf"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid ""
+"The following scanners\n"
+"\n"
+"%s\n"
+"are available on your system.\n"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Stel X op"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Select a scanner"
+msgstr "Selekteer 'n videokaart"
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Installeer stelsel"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Verlaay installasie"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "%s found on %s, configure it automatically?"
+msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../ugtk.pm_.c:636
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../standalone/service_harddrake:1
+#, fuzzy, c-format
+msgid "Hardware probing in progress"
+msgstr "Op poort %s bespeur"
-#: ../../ugtk2.pm_.c:711
-msgid "utopia 25"
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Web/FTP"
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
-#
#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "Netwerkrekenaar (kliлnt)"
+msgid "Office Workstation"
+msgstr "Kantoorwerkstasie"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kantoorprogramme: Woordverwerkers( kword, abiword), spreistate (kspread, "
+"gnumeric), PDF-sigprogramme, ens."
#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Kantoor"
+msgid "Workstation"
+msgstr "Werkstasie"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome werkstasie"
+msgid "Game station"
+msgstr "Speletjiesrekenaar"
#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Nutsprogramme vir PalmPilot en/of Visor"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Werkstasie"
+msgid "Multimedia station"
+msgstr "Multimediastasie"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Vuurmuur/Netwerkroteerder"
+msgid "Sound and video playing/editing programs"
+msgstr "Klank- en videospelers/redigeerders"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeinnaam en Netwerk Informasie Bediener (DNS/NIS)"
+msgid "Internet station"
+msgstr "Internetstasie"
#: ../../share/compssUsers:999
msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
msgstr ""
-"Kantoorprogramme: Woordverwerkers( kword, abiword), spreistate (kspread, "
-"gnumeric), PDF-sigprogramme, ens."
+"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (pine, mutt, tin) "
+"en om ook die web deur te blaai."
+#
#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
+msgid "Network Computer (client)"
+msgstr "Netwerkrekenaar (kliлnt)"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgid "Clients for different protocols including ssh"
+msgstr "Kliлntprogramme vir 'n verkeidenheid protokolle insluitende SSH"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
+msgid "Configuration"
+msgstr "Konfigurasie"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE werkstasie"
+msgid "Tools to ease the configuration of your computer"
+msgstr "Hulpprogramme vir u rekenaarkonfigurasie te vergemaklik"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
+msgid "Scientific Workstation"
+msgstr "Wetenskaplike werkstasie"
#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedia - Video"
+msgid "Console Tools"
+msgstr "Konsole hulpprogramme"
#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Hulpprogramme vir e-pos, netnuus, web, FTP en netpraat"
+msgid "Editors, shells, file tools, terminals"
+msgstr ""
+"Redigeerders. teksverwerkers, instruksiedoppe, lкernutsprogramme, "
+"terminaalprogramme"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Datbasis"
+msgid "KDE Workstation"
+msgstr "KDE werkstasie"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL of MySQL databasisbediener"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
+"versameling bygaande hulpprogramme"
#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "Hulpprogramme vir u rekenaarkonfigurasie te vergemaklik"
+msgid "Graphical Environment"
+msgstr "Grafiese omgewing"
#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Klank"
+msgid "Gnome Workstation"
+msgstr "Gnome werkstasie"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "dokumentasie"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
+"werkskermhulpprogramme"
#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsole hulpprogramme"
+msgid "Other Graphical Desktops"
+msgstr "Ander grafiese werkskerms"
#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix e-posbediener, Inn netnuusbediener"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Internetstasie"
+msgid "Development"
+msgstr "Ontwikkeling"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimediastasie"
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlкers"
#: ../../share/compssUsers:999
-msgid "Configuration"
-msgstr "Konfigurasie"
+msgid "Documentation"
+msgstr "dokumentasie"
#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Addisionele grafiese werkskerms (Gnome, IceWM)"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
+msgid "LSB"
msgstr ""
-"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
-"versameling bygaande hulpprogramme"
#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Grafiese omgewing"
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Development"
-msgstr "Ontwikkeling"
+msgid "Web/FTP"
+msgstr "Web/FTP"
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache, Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Hulpprogramme vir die skep en brand van CDs"
+msgid "Mail/Groupware/News"
+msgstr "E-pos/Groepware/Netnuus"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Kantoorwerkstasie"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
+msgid "Database"
+msgstr "Datbasis"
#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiese programme soos Die GIMP"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL of MySQL databasisbediener"
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Vuurmuur/Netwerkroteerder"
+
+#: ../../share/compssUsers:999
+msgid "Internet gateway"
+msgstr "Internetpoort"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS "
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlкers"
+msgid "Domain Name and Network Information Server"
+msgstr "Domeinnaam en Netwerk Informasie Bediener (DNS/NIS)"
#
#: ../../share/compssUsers:999
@@ -13520,239 +17205,87 @@ msgid "Network Computer server"
msgstr "Netwerkrekenaarbediener"
#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "E-pos/Groepware/Netnuus"
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS, SMB, Instaan- , SSH (Bedieners)"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Speletjiesrekenaar"
+msgid "Office"
+msgstr "Kantoor"
#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Videospelers en -redigeerders"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Hulpprogramme vir e-pos, netnuus, web, FTP en netpraat"
#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafika"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Vermaak: Arkade, Bordspel, Strategie ens."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Stel hulpprogramme om e-pos en netnuus te lees en te stuur (pine, mutt, tin) "
-"en om ook die web deur te blaai."
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Persoonlike finansies"
+msgid "Graphics programs such as The Gimp"
+msgstr "Grafiese programme soos Die GIMP"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"'n Grafiese omgewing met gebruikersvriendelike stel applikasies en "
-"werkskermhulpprogramme"
+msgid "Multimedia - Sound"
+msgstr "Multimedia - Klank"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "Kliлntprogramme vir 'n verkeidenheid protokolle insluitende SSH"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+msgid "Multimedia - Video"
+msgstr "Multimedia - Video"
#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "Internetpoort"
+msgid "Video players and editors"
+msgstr "Videospelers en -redigeerders"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Klank- en videospelers/redigeerders"
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia - CD Sny"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Ander grafiese werkskerms"
+msgid "Tools to create and burn CD's"
+msgstr "Hulpprogramme vir die skep en brand van CDs"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr ""
-"Redigeerders. teksverwerkers, instruksiedoppe, lкernutsprogramme, "
-"terminaalprogramme"
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Addisionele grafiese werkskerms (Gnome, IceWM)"
#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programme om u finansies te bestuur, soos GNUcash"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "Persoonlike Inligtingbestuur."
#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedia - CD Sny"
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Nutsprogramme vir PalmPilot en/of Visor"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Wetenskaplike werkstasie"
-
-#~ msgid "can not open /etc/inittab for reading: %s"
-#~ msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
-
-#, fuzzy
-#~ msgid "cpu number "
-#~ msgstr "Telefoonnommer"
-
-#~ msgid ""
-#~ "You now have the opportunity to download encryption software.\n"
-#~ "\n"
-#~ "WARNING:\n"
-#~ "\n"
-#~ "Due to different general requirements applicable to these software and "
-#~ "imposed\n"
-#~ "by various jurisdictions, customer and/or end user of theses software "
-#~ "should\n"
-#~ "ensure that the laws of his/their jurisdiction allow him/them to "
-#~ "download, stock\n"
-#~ "and/or use these software.\n"
-#~ "\n"
-#~ "In addition customer and/or end user shall particularly be aware to not "
-#~ "infringe\n"
-#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
-#~ "respect the provision of these applicable laws, he/they will incure "
-#~ "serious\n"
-#~ "sanctions.\n"
-#~ "\n"
-#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-#~ "liable\n"
-#~ "for special, indirect or incidental damages whatsoever (including, but "
-#~ "not\n"
-#~ "limited to loss of profits, business interruption, loss of commercial "
-#~ "data and\n"
-#~ "other pecuniary losses, and eventual liabilities and indemnification to "
-#~ "be paid\n"
-#~ "pursuant to a court decision) arising out of use, possession, or the "
-#~ "sole\n"
-#~ "downloading of these software, to which customer and/or end user could\n"
-#~ "eventually have access after having sign up the present agreement.\n"
-#~ "\n"
-#~ "\n"
-#~ "For any queries relating to these agreement, please contact \n"
-#~ "Mandrakesoft, Inc.\n"
-#~ "2400 N. Lincoln Avenue Suite 243\n"
-#~ "Altadena California 91001\n"
-#~ "USA"
-#~ msgstr ""
-#~ "U het nou die kans om enkripsieprogrammatuur af te laai.\n"
-#~ "\n"
-#~ "WAARSKUWING:\n"
-#~ "\n"
-#~ "A.g.v. die verskillende algemene vereistes wat van toepassing gemaak word "
-#~ "deur\n"
-#~ "wetgewing, moet die eindgebruiker van hierdie sagteware seker wees dat "
-#~ "die\n"
-#~ "wette in sy/haar land dit wel toelaat dat om hierdie agteware af te laai, "
-#~ "aan te hou\n"
-#~ "en te gebruik.\n"
-#~ "Daarbenewens moet die gebruiker seker maak dat plaaslike wetgewing nie "
-#~ "oortree\n"
-#~ "word nie. Misbruik kan lei tot ernstige sanksies.\n"
-#~ "\n"
-#~ "In geen geval kan MandrakeSoft nog sy vervaardigers en verskaffers "
-#~ "verantwoordelik\n"
-#~ "gehou word vir spesiale, indirekte or toevallige skade berokken "
-#~ "(insluitend, maar nie\n"
-#~ "beperk tot, winsverlies, besigheidsonderbreking, dataverlies en enige "
-#~ "voorspruitende laste\n"
-#~ "soos moontlik bepaal deur die wetgewende hof) wat vooruitspruit uit die "
-#~ "gebruik, besit\n"
-#~ "of aflaai van hierdie programmatuur nie, na tekening wat hierdie "
-#~ "ooreenkoms nie.\n"
-#~ "\n"
-#~ "\n"
-#~ "Vir navrae vewant aan hierdie ooreenkoms, kontak asb.\n"
-#~ "Mandrakesoft, Inc.\n"
-#~ "2400 N. Lincoln Avenue Suite 243\n"
-#~ "Altadena California 91001\n"
-#~ "USA"
+msgid "Personal Finance"
+msgstr "Persoonlike finansies"
-#~ msgid "Proxy configuration"
-#~ msgstr "Instaanbedienerkonfigurasie"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finances, such as gnucash"
+msgstr "Programme om u finansies te bestuur, soos GNUcash"
#~ msgid ""
-#~ "Welcome to the proxy configuration utility.\n"
+#~ "You must indicate where you wish to place the information required to "
+#~ "boot\n"
+#~ "GNU/Linux.\n"
#~ "\n"
-#~ "Here, you'll be able to set up your http and ftp proxies\n"
-#~ "with or without login and password\n"
+#~ "Unless you know exactly what you are doing, choose \"First sector of "
+#~ "drive\n"
+#~ "(MBR)\"."
#~ msgstr ""
-#~ "Welkom by die proksiekonfigurasienutsprogram.\n"
+#~ "U moet aandui waar u die informasie om Linux te herlaai, wil plaas.\n"
#~ "\n"
-#~ "Hier kan u die HTTP en FTP-instaanbedieners\n"
-#~ "opstel met of sonder aantekenkodes en wagwoorde\n"
-
-#~ msgid "URL"
-#~ msgstr "URL"
-
-#~ msgid "port"
-#~ msgstr "Poort"
-
-#~ msgid "Url should begin with 'http:'"
-#~ msgstr "Instaanbediener moet begin met http://"
-
-#~ msgid "The port part should be numeric"
-#~ msgstr "Die poortgedeelte moet numeries wees"
-
-#~ msgid ""
-#~ "Please fill in the ftp proxy informations\n"
-#~ "Leave it blank if you don't want an ftp proxy"
-#~ msgstr ""
-#~ "Vul asb. die FTP-instaanbediener inligting in\n"
-#~ "Los dit oop indien u nie FTP-instaanbediener verlang nie"
-
-#~ msgid "login"
-#~ msgstr "Gebruikerskode"
-
-#~ msgid "password"
-#~ msgstr "Herhaal wagwoord"
-
-#~ msgid "re-type password"
-#~ msgstr "Geen wagwoord"
-
-#~ msgid "The passwords don't match. Try again!"
-#~ msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
-
-#~ msgid "Can't write file %s"
-#~ msgstr "Kan nie lкer %s skryf nie"
-
-#~ msgid "no help implemented yet.\n"
-#~ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
-
-#, fuzzy
-#~ msgid "Please click on a medium"
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#~ msgid "Removing LPRng..."
-#~ msgstr "LPRng word verwyder..."
-
-#~ msgid "Removing LPD..."
-#~ msgstr "LPD word verwyder..."
-
-#~ msgid "usage: drakfloppy\n"
-#~ msgstr "gebruik: drakfloppy\n"
-
-#, fuzzy
-#~ msgid ""
#~ "\n"
-#~ "Usage: harddrake [-h|--help] [--test]\n"
-#~ msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
-
-#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-#~ msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
+#~ "Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)"
+#~ "\" kies."
-#~ msgid "detected on interface %s"
-#~ msgstr "op koppelvlak %s bespeur"
+#~ msgid "Test ports"
+#~ msgstr "Toets poorte"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 5cf5f31c3..6e98e4c17 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -15,1107 +15,658 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfig/card.pm_.c:16
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfig/card.pm_.c:17
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../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 "64 MB vЙ™ ya daha Г§ox"
-
-#: ../../Xconfig/card.pm_.c:203
-msgid "Choose a X server"
-msgstr "Bir X vericisi seçin"
-
-#: ../../Xconfig/card.pm_.c:203
-msgid "X server"
-msgstr "X verici"
-
-#: ../../Xconfig/card.pm_.c:230
-msgid "Multi-head configuration"
-msgstr "Г‡oxlu BaЕџlД±q quraЕџdД±rД±lmasД±"
-
-#: ../../Xconfig/card.pm_.c:231
+#: ../../any.pm:1
+#, c-format
msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-"Sizin sisteminiz Г§oxlu baЕџlД±q quraЕџdД±rmasД±nД± dЙ™stЙ™klЙ™yir.\n"
-"NЙ™ etmЙ™k istЙ™yirsiniz?"
-
-#: ../../Xconfig/card.pm_.c:288
-msgid "Select the memory size of your graphics card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-
-#: ../../Xconfig/card.pm_.c:349
-msgid "XFree configuration"
-msgstr "XFree quraЕџdД±rД±lmasД±"
-
-#: ../../Xconfig/card.pm_.c:351
-msgid "Which configuration of XFree do you want to have?"
-msgstr "NecЙ™ bir XFree qurДџusunu istЙ™yirsiniz?"
-
-#: ../../Xconfig/card.pm_.c:383
-msgid "Configure all heads independently"
-msgstr "BГјtГјn baЕџlД±qlarД± ayrД± ayrД± quraЕџdД±r"
-
-#: ../../Xconfig/card.pm_.c:384
-msgid "Use Xinerama extension"
-msgstr "Xinerama ifadЙ™lЙ™rini iЕџlЙ™t"
-
-#: ../../Xconfig/card.pm_.c:389
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "TЙ™kcЙ™ \"%s\" kartД±nД± qur (%s)"
-
-#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
-#: ../../Xconfig/various.pm_.c:23
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user to this group."
+msgstr ""
+
+#: ../../any.pm:1 ../../bootlook.pm:1 ../../install_steps_gtk.pm:1
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/draksec:1
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+msgid "Cancel"
+msgstr "LЙ™Дџv et"
-#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
-#: ../../Xconfig/various.pm_.c:23
+#: ../../any.pm:1
#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlД±q sГјr'Й™tlЙ™ndirmЙ™si ilЙ™ XFree %s"
+msgid "Launch userdrake"
+msgstr ""
-#: ../../Xconfig/card.pm_.c:416
+#: ../../any.pm:1
#, 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."
+"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 ""
-"Sizin kartД±nД±zД±n 3D sГјr'Й™tlЙ™ndirmЙ™ dЙ™stЙ™yi ola bilЙ™r, amma sadecЙ™ olaraq "
-"XFree %s\n"
-"ilЙ™ dГјzgГјn iЕџlЙ™yЙ™r.\n"
-"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
-"bir fikir olar."
-
-#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
-#, 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."
-#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, 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"
-
-#: ../../Xconfig/card.pm_.c:429
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+msgid "Mandatory package %s is missing"
msgstr ""
-"Sizin kartД±nД±zД±n 3D sГјr'Й™tlЙ™ndirmЙ™ dЙ™stЙ™yi ola bilЙ™r, amma sadecЙ™ olaraq "
-"XFree %s\n"
-"ilЙ™ dГјzgГјn iЕџlЙ™yЙ™r.\n"
-"DД°QQЖЏT! BU SINAQ MЖЏRHЖЏLЖЏSINDЖЏDIR VЖЏ KOMPГњTERД°NД°Z DONDURA BILЖЏR.\n"
-"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
-"bir seçki olar."
-#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
+#: ../../any.pm:1
#, 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."
+"You can export using NFS or Samba. Please select which you'd like to use."
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."
-#: ../../Xconfig/card.pm_.c:455
-msgid "Xpmac (installation display driver)"
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
+"Bu paket yenilЙ™nmЙ™lidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
msgid "Custom"
msgstr "XГјsusi"
-#: ../../Xconfig/main.pm_.c:102
-#, fuzzy
-msgid "Graphic Card"
-msgstr "Ekran kartД±"
-
-#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
-msgid "Monitor"
-msgstr "Monitor"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Allow all users"
+msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
-msgid "Resolution"
-msgstr "Rezolyusiya"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "No sharing"
+msgstr "CUPS baЕџlayД±r"
-#: ../../Xconfig/main.pm_.c:113
-msgid "Test"
-msgstr ""
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "More"
+msgstr "Daha Г‡ox"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
-#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Seçənəklər"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Here is the full list of available countries"
+msgstr "Bütün mövcud klaviaturaların siyahısı"
-#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
-#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
-#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
-#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
-#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
-#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
-msgid "Ok"
-msgstr "Oldu"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose your country."
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
-#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
-msgid "Quit"
-msgstr "Г‡Д±x"
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Country"
+msgstr "Г–lkЙ™:"
-#: ../../Xconfig/main.pm_.c:145
+#: ../../any.pm:1
#, 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"
-
-#: ../../Xconfig/monitor.pm_.c:93
-msgid "Choose a monitor"
-msgstr "Monitorunuzu seçin"
-
-#: ../../Xconfig/monitor.pm_.c:97
-msgid "Plug'n Play"
+msgid "Use Unicode by default"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
-msgid "Generic"
-msgstr "Гњmumi"
-
-#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
-#: ../../standalone/harddrake2_.c:68
-#, fuzzy
-msgid "Vendor"
-msgstr "Geri al"
-
-#: ../../Xconfig/monitor.pm_.c:109
-msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "All"
+msgstr "HamД±sД±"
-#: ../../Xconfig/monitor.pm_.c:114
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Buradaki iki vacib parametr ГјfГјqi ve Еџaquli yenilЙ™mЙ™ sГјr'Й™tlЙ™ridir.\n"
-"Seçərkən monitorunuzun qabiliyyətinin üstündə bir parametr\n"
-"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."
-
-#: ../../Xconfig/monitor.pm_.c:121
-msgid "Horizontal refresh rate"
-msgstr "ГњfГјqi yenilЙ™mЙ™ sГјr'Й™ti"
-
-#: ../../Xconfig/monitor.pm_.c:122
-msgid "Vertical refresh rate"
-msgstr "Ећaquli yenilЙ™mЙ™ sГјr'Й™ti"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:12
-msgid "256 colors (8 bits)"
-msgstr "256 rЙ™ng (8 bits)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:13
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rЙ™ng (15 bits)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:14
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rЙ™ng (16 bits)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:15
-msgid "16 million colors (24 bits)"
-msgstr "16 milyon rЙ™ng (24 bits)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:16
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rЙ™ng (32 bits)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:130
-msgid "Resolutions"
-msgstr "Rezolyusiyalar"
+"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"
-#: ../../Xconfig/resolution_and_depth.pm_.c:255
-msgid "Choose the resolution and the color depth"
-msgstr "Rezolyusiya və rəng dərinliyini seçin"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose a language to use."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../Xconfig/resolution_and_depth.pm_.c:256
+#: ../../any.pm:1
#, c-format
-msgid "Graphics card: %s"
-msgstr "Ekran kartД±: %s"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
-#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
-#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
-#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
-#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
-#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
-#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
-#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
-#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
-#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
-#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
-#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
-#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
-#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
-#: ../../ugtk2.pm_.c:926
-msgid "Cancel"
-msgstr "LЙ™Дџv et"
+msgid "Choose the window manager to run:"
+msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../Xconfig/test.pm_.c:29
-msgid "Test of the configuration"
-msgstr "QurДџularД±n sД±naДџД±"
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the default user:"
+msgstr "Əsas istifadəçini seçin:"
-#: ../../Xconfig/test.pm_.c:30
-msgid "Do you want to test the configuration?"
-msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../Xconfig/test.pm_.c:30
-#, fuzzy
-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"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "I can set up your computer to automatically log on one user."
+msgstr ""
+"KompГјterinizi avtomatik olaraq bir istifadЙ™Г§i ilЙ™ baЕџlada bilЙ™rЙ™m.\n"
+"Д°stЙ™mirsiniz isЙ™ rЙ™dd edin."
-#: ../../Xconfig/various.pm_.c:29
+#: ../../any.pm:1
#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Klavatura dГјzГјlГјЕџГј: %s\n"
+msgid "Autologin"
+msgstr "Avtomatik GiriЕџ"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../any.pm:1
#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Siçan növü: %s\n"
+msgid "Icon"
+msgstr "Timsal"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../any.pm:1
#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Siçan avadanlığı: %s\n"
+msgid "Shell"
+msgstr "QabД±q"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Monitor: %s\n"
-msgstr "Monitor: %s\n"
+msgid "Password (again)"
+msgstr "Parol (tЙ™krar)"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Monitorun Ећaquli DaramasД±: %s\n"
+msgid "Password"
+msgstr "Parol"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Monitorun ГњfГјqi YenilЙ™mЙ™si: %s\n"
+msgid "User name"
+msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../Xconfig/various.pm_.c:35
+#: ../../any.pm:1
#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Ekran kartД±: %s\n"
+msgid "Real name"
+msgstr "HЙ™qiqi adД±"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../any.pm:1
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Ekran kartД± yaddaЕџД±: %s KB\n"
+msgid "Accept user"
+msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
-#: ../../Xconfig/various.pm_.c:38
+#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
-msgid "Color depth: %s\n"
-msgstr "RЙ™ng dЙ™rinliyi: %s\n"
+msgid "Done"
+msgstr "QurtardД±"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../any.pm:1
#, c-format
-msgid "Resolution: %s\n"
-msgstr "Rezolyusiya: %s\n"
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Bir istifadЙ™Г§i girin\n"
+"%s"
-#: ../../Xconfig/various.pm_.c:41
+#: ../../any.pm:1
#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 verici: %s\n"
+msgid "Add user"
+msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../Xconfig/various.pm_.c:42
+#: ../../any.pm:1
#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 sГјrГјcГј: %s\n"
-
-#: ../../Xconfig/various.pm_.c:61
-msgid "Graphical interface at startup"
-msgstr "X ilə Açılış"
+msgid "This user name has already been added"
+msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
-#: ../../Xconfig/various.pm_.c:62
-msgid ""
-"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?"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "The user name is too long"
+msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
-#: ../../Xconfig/various.pm_.c:73
+#: ../../any.pm:1
+#, c-format
msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
+"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"
-#: ../../Xconfig/various.pm_.c:85
-#, fuzzy
-msgid "What norm is your TV using?"
-msgstr "ISDN bağlantınızın növü nədir?"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132
-msgid "First sector of boot partition"
-msgstr "Açılış qisminin ilk sektoru"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
-msgid "First sector of drive (MBR)"
-msgstr "Diskin ilk sektoru (MBR)"
-
-#: ../../any.pm_.c:111
-msgid "SILO Installation"
-msgstr "SILO Qurulumu"
-
-#: ../../any.pm_.c:112 ../../any.pm_.c:125
-msgid "Where do you want to install the bootloader?"
-msgstr "Sistem yГјklЙ™yicisini haraya qurmaq istЙ™yirsiniz?"
-
-#: ../../any.pm_.c:124
-msgid "LILO/grub Installation"
-msgstr "LILO/grup Qurulumu"
-
-#: ../../any.pm_.c:136 ../../any.pm_.c:150
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:138
-msgid "LILO with text menu"
-msgstr "MЙ™tn menyulu LILO"
-
-#: ../../any.pm_.c:139 ../../any.pm_.c:150
-msgid "LILO with graphical menu"
-msgstr "Qrafiki menyulu LILO"
-
-#: ../../any.pm_.c:142
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:146
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "DOS/Wİndowsdan açıl (loadlin)"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:150
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:158 ../../any.pm_.c:189
-msgid "Bootloader main options"
-msgstr "Sistem yükləyicisi ana seçənəkləri"
-
-#: ../../any.pm_.c:159 ../../any.pm_.c:190
-msgid "Bootloader to use"
-msgstr "İstifadə ediləcək Açılış idarəcisi"
-
-#: ../../any.pm_.c:161
-msgid "Bootloader installation"
-msgstr "Açılış yükləyici quruluşu"
-
-#: ../../any.pm_.c:163 ../../any.pm_.c:192
-msgid "Boot device"
-msgstr "Açılış avadanlığı"
-
-#: ../../any.pm_.c:164
-msgid "Compact"
-msgstr "BЙ™sit"
-
-#: ../../any.pm_.c:164
-msgid "compact"
-msgstr "bЙ™sit"
-
-#: ../../any.pm_.c:165 ../../any.pm_.c:289
-msgid "Video mode"
-msgstr "Ekran modu"
-
-#: ../../any.pm_.c:167
-msgid "Delay before booting default image"
-msgstr "Açılışda gecikmə müddəti"
-
-#: ../../any.pm_.c:169 ../../any.pm_.c:772
-#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
-#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
-#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
-#: ../../standalone/drakconnect_.c:647
-msgid "Password"
-msgstr "Parol"
-
-#: ../../any.pm_.c:170 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1078
-msgid "Password (again)"
-msgstr "Parol (tЙ™krar)"
-
-#: ../../any.pm_.c:171
-msgid "Restrict command line options"
-msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-
-#: ../../any.pm_.c:171
-msgid "restrict"
-msgstr "mЙ™hdudlaЕџdД±r"
-
-#: ../../any.pm_.c:173
-msgid "Clean /tmp at each boot"
-msgstr "/tmp-i hər açılışda təmizlə"
-
-#: ../../any.pm_.c:174
+#: ../../any.pm:1
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Гњmumi yaddaЕџ miqdarД± (%d MB tapД±ldД±)"
-
-#: ../../any.pm_.c:176
-msgid "Enable multi profiles"
-msgstr "BirdЙ™n artД±q profilЙ™ icazЙ™ ver"
-
-#: ../../any.pm_.c:180
-msgid "Give the ram size in MB"
-msgstr "YaddaЕџ miqdarД±nД± Mb cinsindЙ™n verin"
+msgid "Please give a user name"
+msgstr "XahiЕџ edirik bir istifadЙ™Г§i adД± alД±n"
-#: ../../any.pm_.c:182
-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:1
+#, c-format
+msgid "This password is too simple"
+msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../diskdrake/interactive.pm_.c:1204
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid "Please try again"
msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
msgid "The passwords do not match"
msgstr "Parollar uyДџun gЙ™lmir"
-#: ../../any.pm_.c:191
-msgid "Init Message"
-msgstr "Д°nit Д°smarД±cД±"
+#: ../../any.pm:1
+#, c-format
+msgid "(already added %s)"
+msgstr "(%s artД±q Й™lavЙ™ edilmiЕџdir)"
-#: ../../any.pm_.c:193
-msgid "Open Firmware Delay"
-msgstr "Firmware Gecikməsini Aç"
+#: ../../any.pm:1
+#, c-format
+msgid "access to compilation tools"
+msgstr ""
-#: ../../any.pm_.c:194
-msgid "Kernel Boot Timeout"
-msgstr "Çəkirdək Açılışı Vaxt Dolması"
+#: ../../any.pm:1
+#, c-format
+msgid "access to network tools"
+msgstr ""
-#: ../../any.pm_.c:195
-msgid "Enable CD Boot?"
-msgstr "CDdən Açılışı Fəallaşdırım?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to administrative files"
+msgstr ""
-#: ../../any.pm_.c:196
-msgid "Enable OF Boot?"
-msgstr "OF Açılışı Fəallaşdırım?"
+#: ../../any.pm:1
+#, c-format
+msgid "allow \"su\""
+msgstr ""
-#: ../../any.pm_.c:197
-msgid "Default OS?"
-msgstr "ЖЏsas OS"
+#: ../../any.pm:1
+#, c-format
+msgid "access to rpm tools"
+msgstr ""
-#: ../../any.pm_.c:231
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm:1
+#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
+"You can create additional entries 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:257 ../../standalone/drakbackup_.c:1531
-#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
-#: ../../standalone/drakfont_.c:996
-msgid "Add"
-msgstr "ЖЏlavЙ™ et"
-
-#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
-#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
-#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
-msgid "Done"
-msgstr "QurtardД±"
-
-#: ../../any.pm_.c:257
-msgid "Modify"
-msgstr "TЙ™kmillЙ™Еџdir"
-
-#: ../../any.pm_.c:265
-msgid "Which type of entry do you want to add?"
-msgstr "Ne cГјr bir giriЕџ istЙ™yirsiniz?"
-
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
-msgid "Linux"
-msgstr "Linuks"
-
-#: ../../any.pm_.c:266
-msgid "Other OS (SunOS...)"
-msgstr "DigЙ™r sistemlЙ™r (SunOS...)"
-
-#: ../../any.pm_.c:267
-msgid "Other OS (MacOS...)"
-msgstr "DigЙ™r sistemlЙ™r (MacOS...)"
-
-#: ../../any.pm_.c:267
+#: ../../any.pm:1
+#, c-format
msgid "Other OS (windows...)"
msgstr "DigЙ™r sistemlЙ™r (windows...)"
-#: ../../any.pm_.c:285
-msgid "Image"
-msgstr "ЖЏks"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (MacOS...)"
+msgstr "DigЙ™r sistemlЙ™r (MacOS...)"
-#: ../../any.pm_.c:286 ../../any.pm_.c:297
-msgid "Root"
-msgstr "Kök"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (SunOS...)"
+msgstr "DigЙ™r sistemlЙ™r (SunOS...)"
-#: ../../any.pm_.c:287 ../../any.pm_.c:315
-msgid "Append"
-msgstr "Sonuna Й™lavЙ™ et"
+#: ../../any.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Linux"
+msgstr "Linuks"
-#: ../../any.pm_.c:291
-msgid "Initrd"
-msgstr "Initrd"
+#: ../../any.pm:1
+#, c-format
+msgid "Which type of entry do you want to add?"
+msgstr "Ne cГјr bir giriЕџ istЙ™yirsiniz?"
-#: ../../any.pm_.c:292
-msgid "Read-write"
-msgstr "Oxu-yaz"
+#: ../../any.pm:1
+#, c-format
+msgid "This label is already used"
+msgstr "Bu etiket istifadЙ™ edilmЙ™z"
-#: ../../any.pm_.c:299
-msgid "Table"
-msgstr "CЙ™dvЙ™l"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "You must specify a root partition"
+msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
-#: ../../any.pm_.c:300
-msgid "Unsafe"
-msgstr "E'tibarsД±z"
+#: ../../any.pm:1
+#, c-format
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
-msgid "Label"
-msgstr "Etiket"
+#: ../../any.pm:1
+#, c-format
+msgid "Empty label not allowed"
+msgstr "BoЕџ etiket qЙ™bul edilЙ™ bilmЙ™z"
-#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+#: ../../any.pm:1 ../../harddrake/v4l.pm:1
+#, c-format
msgid "Default"
msgstr "ЖЏsas"
-#: ../../any.pm_.c:316
-msgid "Initrd-size"
-msgstr "Initrd böyüklüyü"
-
-#: ../../any.pm_.c:318
+#: ../../any.pm:1
+#, c-format
msgid "NoVideo"
msgstr "NoVД°deo"
-#: ../../any.pm_.c:326
-msgid "Remove entry"
-msgstr "GiriЕџi sil"
-
-#: ../../any.pm_.c:329
-msgid "Empty label not allowed"
-msgstr "BoЕџ etiket qЙ™bul edilЙ™ bilmЙ™z"
-
-#: ../../any.pm_.c:330
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:330
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
-
-#: ../../any.pm_.c:331
-msgid "This label is already used"
-msgstr "Bu etiket istifadЙ™ edilmЙ™z"
-
-#: ../../any.pm_.c:640
+#: ../../any.pm:1
#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s ara ГјzГј tapД±ldД±"
-
-#: ../../any.pm_.c:641
-msgid "Do you have another one?"
-msgstr "BaЕџqa var?"
+msgid "Initrd-size"
+msgstr "Initrd böyüklüyü"
-#: ../../any.pm_.c:642
+#: ../../any.pm:1
#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Heç %s ara üzü var?"
-
-#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
-msgid "No"
-msgstr "Xeyr"
-
-#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
-#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
-#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
-msgid "Yes"
-msgstr "BЙ™li"
-
-#: ../../any.pm_.c:645
-msgid "See hardware info"
-msgstr "AvadanlД±q mЙ™'lumatД±na bax"
+msgid "Append"
+msgstr "Sonuna Й™lavЙ™ et"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:662
+#: ../../any.pm:1
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s kartı (%s) üçün sürücü yüklənir"
+msgid "Label"
+msgstr "Etiket"
-#: ../../any.pm_.c:663
+#: ../../any.pm:1
#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
+msgid "Unsafe"
+msgstr "E'tibarsД±z"
-#: ../../any.pm_.c:674
+#: ../../any.pm:1
#, 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 ""
+msgid "Table"
+msgstr "CЙ™dvЙ™l"
-#: ../../any.pm_.c:680
+#: ../../any.pm:1
#, 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:682
-msgid "Module options:"
-msgstr "Modul seçənəkləri:"
+msgid "Root"
+msgstr "Kök"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:694
+#: ../../any.pm:1
#, c-format
-msgid "Which %s driver should I try?"
-msgstr "HansД± %s sГјrГјcГјsГј sД±nansД±n?"
+msgid "Read-write"
+msgstr "Oxu-yaz"
-#: ../../any.pm_.c:703
+#: ../../any.pm:1
#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"Bəzi hallarda, %s sürücü düzgün işləməsi üçün əlavə mə'lumat istəyə bilər.\n"
-"Sürücüler üçün əlavə bir xüsusiyyət göstərmək mi istəyərsiniz, yoxsa\n"
-"sürücülərin lazımi mə'lumatlar üçün avadalığı tanımasını mı istəyərsiniz? \n"
-"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
-"kompüterinizə heç bir şey olmaz."
-
-#: ../../any.pm_.c:707
-msgid "Autoprobe"
-msgstr "Avtomatik yoxla"
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../any.pm_.c:707
-msgid "Specify options"
-msgstr "Seçənəkləri göstər"
+#: ../../any.pm:1
+#, c-format
+msgid "Video mode"
+msgstr "Ekran modu"
-#: ../../any.pm_.c:719
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s modulunun yГјklЙ™nmЙ™si iflas etdi.\n"
-"YenidЙ™n baЕџqa bir parametr ilЙ™ sД±namaq istЙ™yirsiniz?"
+msgid "Image"
+msgstr "ЖЏks"
-#: ../../any.pm_.c:734
-msgid "access to X programs"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Default OS?"
+msgstr "ЖЏsas OS"
-#: ../../any.pm_.c:735
-msgid "access to rpm tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Enable OF Boot?"
+msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:736
-msgid "allow \"su\""
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Enable CD Boot?"
+msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:737
-msgid "access to administrative files"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Kernel Boot Timeout"
+msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../any.pm_.c:738
-msgid "access to network tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Open Firmware Delay"
+msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm_.c:739
-msgid "access to compilation tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Boot device"
+msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:744
+#: ../../any.pm:1
#, c-format
-msgid "(already added %s)"
-msgstr "(%s artД±q Й™lavЙ™ edilmiЕџdir)"
+msgid "Init Message"
+msgstr "Д°nit Д°smarД±cД±"
-#: ../../any.pm_.c:749
-msgid "This password is too simple"
-msgstr "Zəif parol seçdiniz!"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader to use"
+msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:750
-msgid "Please give a user name"
-msgstr "XahiЕџ edirik bir istifadЙ™Г§i adД± alД±n"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader main options"
+msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:751
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
-"ola bilЙ™r"
-
-#: ../../any.pm_.c:752
-#, fuzzy
-msgid "The user name is too long"
-msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
+"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:753
-msgid "This user name is already added"
-msgstr "Bu istifadЙ™Г§i adД± artД±q vardД±r"
+#: ../../any.pm:1
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "YaddaЕџ miqdarД±nД± Mb cinsindЙ™n verin"
-#: ../../any.pm_.c:757
-msgid "Add user"
-msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
+#: ../../any.pm:1
+#, c-format
+msgid "Enable multiple profiles"
+msgstr "BirdЙ™n artД±q profilЙ™ icazЙ™ ver"
-#: ../../any.pm_.c:758
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Bir istifadЙ™Г§i girin\n"
-"%s"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Гњmumi yaddaЕџ miqdarД± (%d MB tapД±ldД±)"
-#: ../../any.pm_.c:759
-msgid "Accept user"
-msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
+#: ../../any.pm:1
+#, c-format
+msgid "Clean /tmp at each boot"
+msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../any.pm_.c:770
-msgid "Real name"
-msgstr "HЙ™qiqi adД±"
+#: ../../any.pm:1
+#, c-format
+msgid "Create a bootdisk"
+msgstr "Açılış disketi yarat"
-#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
-#: ../../printer/printerdrake.pm_.c:915
-msgid "User name"
-msgstr "Д°stifadЙ™Г§i adД±"
+#: ../../any.pm:1
+#, c-format
+msgid "restrict"
+msgstr "mЙ™hdudlaЕџdД±r"
-#: ../../any.pm_.c:774
-msgid "Shell"
-msgstr "QabД±q"
+#: ../../any.pm:1
+#, c-format
+msgid "Restrict command line options"
+msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:776
-msgid "Icon"
-msgstr "Timsal"
+#: ../../any.pm:1
+#, c-format
+msgid "Delay before booting default image"
+msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:803
-msgid "Autologin"
-msgstr "Avtomatik GiriЕџ"
+#: ../../any.pm:1
+#, c-format
+msgid "compact"
+msgstr "bЙ™sit"
-#: ../../any.pm_.c:804
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"KompГјterinizi avtomatik olaraq bir istifadЙ™Г§i ilЙ™ baЕџlada bilЙ™rЙ™m.\n"
-"Д°stЙ™mirsiniz isЙ™ rЙ™dd edin."
+#: ../../any.pm:1
+#, c-format
+msgid "Compact"
+msgstr "BЙ™sit"
-#: ../../any.pm_.c:808
-msgid "Choose the default user:"
-msgstr "Əsas istifadəçini seçin:"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader installation"
+msgstr "Açılış yükləyici quruluşu"
-#: ../../any.pm_.c:809
-msgid "Choose the window manager to run:"
-msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of boot partition"
+msgstr "Açılış qisminin ilk sektoru"
-#: ../../any.pm_.c:824
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of drive (MBR)"
+msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:826
-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:1
+#, c-format
+msgid "Where do you want to install the bootloader?"
+msgstr "Sistem yГјklЙ™yicisini haraya qurmaq istЙ™yirsiniz?"
-#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
-#: ../../standalone/drakxtv_.c:70
-msgid "All"
-msgstr "HamД±sД±"
+#: ../../any.pm:1
+#, c-format
+msgid "LILO/grub Installation"
+msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "Allow all users"
-msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
+#: ../../any.pm:1
+#, c-format
+msgid "SILO Installation"
+msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "No sharing"
-msgstr "CUPS baЕџlayД±r"
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Skip"
+msgstr "NЙ™zЙ™rЙ™ Alma"
-#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#: ../../any.pm:1
#, 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:973
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
+msgid "On Floppy"
+msgstr "DisketЙ™ qeyd et"
-#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
+#: ../../any.pm:1
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:987
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:1001
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:1003
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
+"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
-msgid "Welcome To Crackers"
-msgstr "KrakerlЙ™rЙ™ xoЕџgЙ™lmiЕџsiniz"
-
-#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
-msgid "Poor"
-msgstr "ZЙ™if"
-
-#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
-msgid "Standard"
-msgstr "Standart"
-
-#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
-msgid "High"
-msgstr "YГјksЙ™k"
-
-#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
-#, fuzzy
-msgid "Higher"
-msgstr "YГјksЙ™k"
+#: ../../any.pm:1
+#, c-format
+msgid "Creating bootdisk..."
+msgstr "Açılış disketi yaradılır"
-#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
-msgid "Paranoid"
-msgstr "ЕћГјbhЙ™ci"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Insert a floppy in %s"
+msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../any.pm_.c:1061
-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."
+#: ../../any.pm:1
+#, c-format
+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"
-#: ../../any.pm_.c:1064
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Parollar fЙ™allaЕџdД±rД±ldД±, yenЙ™ dЙ™ bir ЕџЙ™bЙ™kЙ™ ГјstГјndЙ™ istifadЙ™ edilmЙ™mЙ™si "
-"tövsiyə edilir."
+#: ../../any.pm:1
+#, c-format
+msgid "Second floppy drive"
+msgstr "Д°kinci disket sГјrГјcГј"
-#: ../../any.pm_.c:1065
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
-"tЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sidir."
+#: ../../any.pm:1
+#, c-format
+msgid "First floppy drive"
+msgstr "Д°lk disket sГјrГјcГј"
-#: ../../any.pm_.c:1066
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Sorry, no floppy drive available"
+msgstr "BaДџД±ЕџlayД±n, disket sГјrГјcГј yoxdur"
-#: ../../any.pm_.c:1067
-#, fuzzy
+#: ../../any.pm:1
+#, c-format
msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures. Would you like to create a bootdisk for your system?\n"
+"%s"
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. "
+"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
+"lГјzГјm\n"
+"olmadan açılmasına imkan verər. Əgə sisteminizə lilo (ya da grub) "
+"qurmayacaqsanД±z,\n"
+"ya da baЕџqa bir Й™mЙ™liyyat sistemi liloyu silЙ™rsa ya da lilo "
+"avadanlД±ДџД±nД±zlaiЕџlЙ™mЙ™zsЙ™\n"
+"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
+"rЙ™smini\n"
+"istifadЙ™ edЙ™rЙ™k dЙ™ bu disket yaradД±la bilЙ™r.\n"
+"Açılış disketi yaratmaq istəyirsiniz?\n"
+"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyədisklet "
+"yerlЙ™Еџdirin\n"
+"vЙ™ \"OLDU\" basД±n.\n"
+"%s"
-#: ../../any.pm_.c:1070
-#, fuzzy
+#: ../../any.pm:1
+#, c-format
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"\n"
+"\n"
+"(WARNING! You're using XFS for your root partition,\n"
+"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
+"because XFS needs a very large driver)."
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:1076
-#, fuzzy
-msgid "DrakSec Basic Options"
-msgstr "Seçənəklər"
-
-#: ../../any.pm_.c:1077
-#, fuzzy
-msgid "Please choose the desired security level"
-msgstr "Təhlükəsizlik səviyyəsini seçin"
-
-#: ../../any.pm_.c:1080
-#, fuzzy
-msgid "Security level"
-msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-
-#: ../../any.pm_.c:1082
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1083
+#: ../../any.pm:1
+#, c-format
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../any.pm_.c:1084
-msgid "Security Administrator (login or email)"
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
+"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
+"lГјzГјm\n"
+"olmadan açılmasına imkan verər. Əgə sisteminizə lilo (ya da grub) "
+"qurmayacaqsanД±z,\n"
+"ya da baЕџqa bir Й™mЙ™liyyat sistemi liloyu silЙ™rsa ya da lilo "
+"avadanlД±ДџД±nД±zlaiЕџlЙ™mЙ™zsЙ™\n"
+"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
+"rЙ™smini\n"
+"istifadЙ™ edЙ™rЙ™k dЙ™ bu disket yaradД±la bilЙ™r.\n"
+"Açılış disketi yaratmaq istəyirsiniz?\n"
+"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyə disket "
+"yerlЙ™Еџdirin\n"
+"vЙ™ \"OLDU\" basД±n."
-#: ../../any.pm_.c:1166
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
+#: ../../bootloader.pm:1
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Sistem yГјklЙ™yicisini haraya qurmaq istЙ™yirsiniz?"
-# 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:436
+#: ../../bootloader.pm:1
#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
-"%s emeliyyat sistemi secki proqramina xos gЙ™lmissiniz!\n"
-"\n"
-"Içlerinden birini acmaq ucun adini yazin ve <ENTER>\n"
-"duymesine basin ve ya esas acilis ucun %d saniye gozleyin.\n"
-"\n"
+msgid "not enough room in /boot"
+msgstr "/boot içində lazımi yer yoxdur"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1127,9 +678,10 @@ 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:983
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Emeliyyat sistemi secici GRUB'a xos gЙ™lmissiniz!"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1141,10 +693,11 @@ 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:986
+#: ../../bootloader.pm:1
#, 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"
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+"acilisdan evvel emrleri duzeltmЙ™k ucun 'e', emr setiri ucun ise 'c' basin"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1156,7 +709,8 @@ 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:989
+#: ../../bootloader.pm:1
+#, c-format
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1170,10 +724,10 @@ 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:992
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
-"acilisdan evvel emrleri duzeltmЙ™k ucun 'e', emr setiri ucun ise 'c' basin"
+#: ../../bootloader.pm:1
+#, 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"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1185,172 +739,122 @@ 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:995
+#: ../../bootloader.pm:1
#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-
-#: ../../bootloader.pm_.c:999
-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:1099
-msgid "Desktop"
-msgstr "Masa ГњstГј"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1101
-msgid "Start Menu"
-msgstr "BaЕџlama Menyusu"
-
-#: ../../bootloader.pm_.c:1120
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Sistem yГјklЙ™yicisini haraya qurmaq istЙ™yirsiniz?"
-
-#: ../../bootlook.pm_.c:53
-msgid "Boot Style Configuration"
-msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-
-#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
-#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
-#: ../../standalone/logdrake_.c:74
-msgid "/_File"
-msgstr "/_Fayl"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/logdrake_.c:80
-msgid "/File/_Quit"
-msgstr "/Fayl/_Г‡Д±x"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:82
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle KateqoriyasД±ndan Monitor"
-
-#: ../../bootlook.pm_.c:83
-msgid "NewStyle Monitor"
-msgstr "NewStyle Monitor"
-
-#: ../../bootlook.pm_.c:84
-msgid "Traditional Monitor"
-msgstr "ЖЏnЙ™nЙ™vi Monitor"
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Emeliyyat sistemi secici GRUB'a xos gЙ™lmissiniz!"
-#: ../../bootlook.pm_.c:85
-msgid "Traditional Gtk+ Monitor"
-msgstr "ЖЏnЙ™nЙ™vi Gtk+ Monitor"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../bootlook.pm_.c:86
-msgid "Launch Aurora at boot time"
-msgstr "Açılışda Auroranı başlat"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Grub"
+msgstr "Grub"
-#: ../../bootlook.pm_.c:89
-msgid "Lilo/grub mode"
-msgstr "Lilo/grub modu"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "LILO with text menu"
+msgstr "MЙ™tn menyulu LILO"
-#: ../../bootlook.pm_.c:89
-msgid "Yaboot mode"
-msgstr "Yaboot modu"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "LILO with graphical menu"
+msgstr "Qrafiki menyulu LILO"
-#: ../../bootlook.pm_.c:138
-#, fuzzy
-msgid "Install themes"
-msgstr "Sistemi qur"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "SILO"
+msgstr "SILO"
-#: ../../bootlook.pm_.c:139
+# 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:1
+#, c-format
msgid ""
-"Display theme\n"
-"under console"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system from the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
msgstr ""
+"%s emeliyyat sistemi secki proqramina xos gЙ™lmissiniz!\n"
+"\n"
+"Içlerinden birini acmaq ucun adini yazin ve <ENTER>\n"
+"duymesine basin ve ya esas acilis ucun %d saniye gozleyin.\n"
+"\n"
-#: ../../bootlook.pm_.c:140
-#, fuzzy
-msgid "Create new theme"
-msgstr "Yeni bölmə yarat"
-
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../network/netconnect.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
-msgid "Backup %s to %s.old"
-msgstr ""
+msgid "OK"
+msgstr "Oldu"
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm:1
#, c-format
-msgid "Copy %s to %s"
-msgstr ""
-
-#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
-#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
-#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
-#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
-#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
-#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
-msgid "Error"
-msgstr "XЙ™ta"
-
-#: ../../bootlook.pm_.c:192
-msgid "Lilo message not found"
+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:222
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+#: ../../bootlook.pm:1
+#, c-format
+msgid "No, I don't want autologin"
+msgstr "Xeyr, Avtomatik giriЕџ istЙ™mirЙ™m"
-#: ../../bootlook.pm_.c:222
-#, fuzzy, c-format
-msgid "Write %s"
-msgstr "XFree %s"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Launch the graphical environment when your system starts"
+msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:224
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
+#: ../../bootlook.pm:1
+#, c-format
+msgid "System mode"
+msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:235
+#: ../../bootlook.pm:1
#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:238
+#: ../../bootlook.pm:1
#, c-format
-msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:244
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
-msgstr ""
-
-#: ../../bootlook.pm_.c:248
-msgid "Relaunch 'lilo'"
+"\n"
+"Select the theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separately"
msgstr ""
-#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
-#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "Notice"
-msgstr "NoVД°deo"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Themes"
+msgstr "Г–rtГјklЙ™r"
-#: ../../bootlook.pm_.c:251
-msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Splash selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:251
-#, fuzzy
-msgid "Theme installation failed!"
-msgstr "Quruluş sinifini seçin"
+#: ../../bootlook.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Configure"
+msgstr "Qur"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm:1
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1359,1079 +863,335 @@ 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:261 ../../standalone/drakbackup_.c:2380
-#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
-#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
-msgid "Configure"
-msgstr "Qur"
-
-#: ../../bootlook.pm_.c:268
-#, fuzzy
-msgid "Splash selection"
-msgstr "Paket seçkilərini saxla"
-
-#: ../../bootlook.pm_.c:271
-msgid "Themes"
-msgstr ""
-
-#: ../../bootlook.pm_.c:273
-msgid ""
-"\n"
-"Select theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separatly"
-msgstr ""
-
-#: ../../bootlook.pm_.c:276
-msgid "Lilo screen"
-msgstr ""
-
-#: ../../bootlook.pm_.c:281
-msgid "Bootsplash"
-msgstr ""
-
-#: ../../bootlook.pm_.c:316
-msgid "System mode"
-msgstr "Sistem modu"
-
-#: ../../bootlook.pm_.c:318
-msgid "Launch the graphical environment when your system starts"
-msgstr "Açılışda X-Window sistemini başlat"
-
-#: ../../bootlook.pm_.c:323
-msgid "No, I don't want autologin"
-msgstr "Xeyr, Avtomatik giriЕџ istЙ™mirЙ™m"
-
-#: ../../bootlook.pm_.c:325
-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:335 ../../network/netconnect.pm_.c:96
-#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
-#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
-#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
-#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
-#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
-#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
-#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
-#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
-#: ../../ugtk2.pm_.c:355
-msgid "OK"
-msgstr "Oldu"
-
-#: ../../common.pm_.c:107
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:107
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:107
-msgid "MB"
-msgstr "MB"
-
-#: ../../common.pm_.c:115
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:123
+#: ../../bootlook.pm:1
#, c-format
-msgid "%d minutes"
-msgstr ""
-
-#: ../../common.pm_.c:125
-msgid "1 minute"
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../common.pm_.c:127
+#: ../../bootlook.pm:1
#, fuzzy, c-format
-msgid "%d seconds"
-msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
-
-#: ../../common.pm_.c:172
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Artıq bölmə əlavə edilə bilməz"
+msgid "Theme installation failed!"
+msgstr "Quruluş sinifini seçin"
-#: ../../common.pm_.c:179
+#: ../../bootlook.pm:1 ../../standalone/draksplash:1
#, fuzzy, c-format
-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:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:127
-#, fuzzy
-msgid "France"
-msgstr "FransД±zca"
-
-#: ../../crypto.pm_.c:15
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:130
-#, fuzzy
-msgid "Belgium"
-msgstr "Belçika dili"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Germany"
-msgstr "Almanca"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Greece"
-msgstr "Yunanca"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
-#, fuzzy
-msgid "Norway"
-msgstr "Norveçcə"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
-#, fuzzy
-msgid "Sweden"
-msgstr "İsveçcə"
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:128
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Italy"
-msgstr "Д°talyanca"
+msgid "Notice"
+msgstr "NoVД°deo"
-#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
-#, fuzzy
-msgid "Austria"
-msgstr "serial"
+#: ../../bootlook.pm:1 ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Error"
+msgstr "XЙ™ta"
-#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:131
-msgid "United States"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:19
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../diskdrake/dav.pm_.c:27
-#, fuzzy
-msgid "New"
-msgstr "yeni"
-
-#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
-#: ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "AyД±r"
-
-#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
-#: ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "BaДџla"
-
-#: ../../diskdrake/dav.pm_.c:65
-msgid "Server"
-msgstr "Verici"
-
-#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
-#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
-#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Bağlama nöqtəsi"
-
-#: ../../diskdrake/dav.pm_.c:85
-#, fuzzy
-msgid "Please enter the WebDAV server URL"
-msgstr "Xahiş edirik siçanınızı seçin"
-
-#: ../../diskdrake/dav.pm_.c:88
-msgid "The URL must begin with http:// or https://"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../diskdrake/dav.pm_.c:109
-#, fuzzy
-msgid "Server: "
-msgstr "Verici"
-
-#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
-#: ../../diskdrake/interactive.pm_.c:1102
-#: ../../diskdrake/interactive.pm_.c:1177
-msgid "Mount point: "
-msgstr "Bağlama nöqtəsi: "
-
-#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
+#: ../../bootlook.pm:1
#, c-format
-msgid "Options: %s"
-msgstr "Seçənəklər: %s"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-msgid "Please make a backup of your data first"
-msgstr "ЖЏvvЙ™lcЙ™ datanД±zД±n yedЙ™yini alД±n"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
-#: ../../diskdrake/interactive.pm_.c:956
-#: ../../diskdrake/interactive.pm_.c:1022
-msgid "Read carefully!"
-msgstr "DiqqЙ™tlЙ™ Oxuyun!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:100
-msgid ""
-"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
-"enough)\n"
-"at the beginning of the disk"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-"Aboot istifadЙ™ etmЙ™yi istЙ™yirsinizsЙ™, boЕџ disk sahЙ™si (2048 sektor bЙ™sdir.)\n"
-"buraxmayД± unutmayД±n."
-
-#: ../../diskdrake/hd_gtk.pm_.c:154
-msgid "Wizard"
-msgstr "Sehirbaz"
-
-#: ../../diskdrake/hd_gtk.pm_.c:187
-msgid "Choose action"
-msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/hd_gtk.pm_.c:191
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Tək bir böyük disk bölməniz var\n"
-"(Й™sasЙ™n MS DOS/Windows istifadЙ™ edЙ™r).\n"
-"Əvvəlcə bu disk bölməsinin böyüklüyünü dəyişdirməyinizi\n"
-"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:194
-msgid "Please click on a partition"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:464
-msgid "Details"
-msgstr "ЖЏtraflД±"
-
-#: ../../diskdrake/hd_gtk.pm_.c:254
-#, fuzzy
-msgid "No hard drives found"
-msgstr "Yerli Г‡ap Edici"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-#, fuzzy
-msgid "Journalised FS"
-msgstr "baДџlama iflas etdi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
-msgid "Empty"
-msgstr "BoЕџ"
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
-#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
-msgid "Other"
-msgstr "DigЙ™r"
-
-#: ../../diskdrake/hd_gtk.pm_.c:330
-msgid "Filesystem types:"
-msgstr "Fayl sistemi növü:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
-msgid "Create"
-msgstr "Yarat"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
-#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
-msgid "Type"
-msgstr "Növ"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
+#: ../../bootlook.pm:1
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "YerinЙ™ ``%s'' iЕџlЙ™t"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
-msgid "Delete"
-msgstr "Sil"
-
-#: ../../diskdrake/hd_gtk.pm_.c:353
-msgid "Use ``Unmount'' first"
-msgstr "ЖЏvvЙ™lcЙ™ ``AyД±r'-Д± iЕџlЙ™t"
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+msgid "Lilo message not found"
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:177
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Monitorunuzu seçin"
-
-#: ../../diskdrake/interactive.pm_.c:177
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Yeni bölmə yarat"
-
-#: ../../diskdrake/interactive.pm_.c:202
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to expert mode"
-msgstr "Usta moduna keç"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to normal mode"
-msgstr "Normal moda keç"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Undo"
-msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Continue anyway?"
-msgstr "Davam edilsin?"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without saving"
-msgstr "Qeyd etmЙ™dЙ™n Г‡Д±x"
-
-#: ../../diskdrake/interactive.pm_.c:252
-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:257
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:271
-msgid "Clear all"
-msgstr "HamД±sД±nД± tЙ™mizlЙ™"
-
-#: ../../diskdrake/interactive.pm_.c:272
-msgid "Auto allocate"
-msgstr "Avtomatik ayД±r"
-
-#: ../../diskdrake/interactive.pm_.c:273
-#: ../../install_steps_interactive.pm_.c:220
-msgid "More"
-msgstr "Daha Г‡ox"
-
-#: ../../diskdrake/interactive.pm_.c:278
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Sabit disk seçkisi"
-
-#: ../../diskdrake/interactive.pm_.c:310
-msgid "All primary partitions are used"
-msgstr "Bütün birinci bölmələr istifadədədir"
-
-#: ../../diskdrake/interactive.pm_.c:311
-msgid "I can't add any more partition"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: ../../diskdrake/interactive.pm_.c:312
-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:322
-#, fuzzy
-msgid "Save partition table"
-msgstr "Bölmə cədvəlini yaz"
-
-#: ../../diskdrake/interactive.pm_.c:323
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../diskdrake/interactive.pm_.c:324
-msgid "Rescue partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../diskdrake/interactive.pm_.c:326
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../diskdrake/interactive.pm_.c:331
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
-msgid "Select file"
-msgstr "Fayl seç"
-
-#: ../../diskdrake/interactive.pm_.c:347
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Copy %s to %s"
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:361 ../../harddrake/sound.pm_.c:202
-#: ../../network/modem.pm_.c:95
-msgid "Warning"
-msgstr "XЙ™bЙ™rdarlД±q"
-
-#: ../../diskdrake/interactive.pm_.c:362
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Backup %s to %s.old"
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:373
-msgid "Trying to rescue partition table"
-msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-
-#: ../../diskdrake/interactive.pm_.c:379
-#, fuzzy
-msgid "Detailed information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
-msgid "Resize"
-msgstr "Böyüklüyünü Dəyişdir"
-
-#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
-msgid "Move"
-msgstr "DaЕџД±"
-
-#: ../../diskdrake/interactive.pm_.c:396
-msgid "Format"
-msgstr "ЕћЙ™killЙ™ndir"
-#: ../../diskdrake/interactive.pm_.c:398
-msgid "Add to RAID"
-msgstr "RAIDЙ™ Й™lavЙ™ et"
-
-#: ../../diskdrake/interactive.pm_.c:399
-msgid "Add to LVM"
-msgstr "LVMЙ™ Й™lavЙ™ et"
-
-#: ../../diskdrake/interactive.pm_.c:402
-msgid "Remove from RAID"
-msgstr "RAIDdЙ™n ayД±r"
-
-#: ../../diskdrake/interactive.pm_.c:403
-msgid "Remove from LVM"
-msgstr "LVMdЙ™n ayД±r"
-
-#: ../../diskdrake/interactive.pm_.c:404
-msgid "Modify RAID"
-msgstr "RAIDi dЙ™yiЕџdir"
-
-#: ../../diskdrake/interactive.pm_.c:405
-msgid "Use for loopback"
-msgstr "Loopback üçün istifadə et"
-
-#: ../../diskdrake/interactive.pm_.c:445
-msgid "Create a new partition"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Create new theme"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:448
-msgid "Start sector: "
-msgstr "BaЕџlanДџД±Г§ sektoru: "
-
-#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
-msgid "Size in MB: "
-msgstr "MB cinsindən böyüklük: "
-
-#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
-msgid "Filesystem type: "
-msgstr "Fayl sistemi növü: "
-
-#: ../../diskdrake/interactive.pm_.c:456
-msgid "Preference: "
-msgstr "XГјsusiyyЙ™tlЙ™r: "
-
-#: ../../diskdrake/interactive.pm_.c:481
-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:511
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-
-#: ../../diskdrake/interactive.pm_.c:541
-msgid "Change partition type"
-msgstr "Bölmə növünü Dəyişdir"
-
-#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "HansД± dili istЙ™yirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:548
-msgid "Switching from ext2 to ext3"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:578
-#, 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:579
+#: ../../bootlook.pm:1
#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "%s avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:585
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+"Display theme\n"
+"under console"
msgstr ""
-"Bu disk bölməsi loopback üçün istifadə edildiyindən ötrü bağlanma "
-"nöqtəsindən ayrıla bilinmir.\n"
-"ЖЏvvЙ™lcЙ™ loopback-Д± lЙ™Дџv edin."
-#: ../../diskdrake/interactive.pm_.c:606
+#: ../../bootlook.pm:1
#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "%s avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "Computing FAT filesystem bounds"
-msgstr "Fat fayl sistemi uclarД± hesaplanД±r"
-
-#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
-#: ../../install_interactive.pm_.c:131
-msgid "Resizing"
-msgstr "Böyüklüyü dəyişdirilir"
-
-#: ../../diskdrake/interactive.pm_.c:662
-msgid "This partition is not resizeable"
-msgstr "Hansı bölmə növünü istəyirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:667
-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"
+msgid "Install themes"
+msgstr "Sistemi qur"
-#: ../../diskdrake/interactive.pm_.c:669
+#: ../../bootlook.pm:1
#, 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:674
-msgid "Choose the new size"
-msgstr "Yeni böyüklük seçin"
-
-#: ../../diskdrake/interactive.pm_.c:675
-#, fuzzy
-msgid "New size in MB: "
-msgstr "MB cinsindən böyüklük: "
-
-#: ../../diskdrake/interactive.pm_.c:728
-msgid "Which disk do you want to move it to?"
-msgstr "HansД± diskЙ™ daЕџД±maq istЙ™yirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:729
-msgid "Sector"
-msgstr "Sektor"
-
-#: ../../diskdrake/interactive.pm_.c:730
-msgid "Which sector do you want to move it to?"
-msgstr "HansД± sektora daЕџД±maq istЙ™yirsiniz?"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving"
-msgstr "DaЕџД±nД±r"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving partition..."
-msgstr "Bölmə daşınır..."
-
-#: ../../diskdrake/interactive.pm_.c:750
-msgid "Choose an existing RAID to add to"
-msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-
-#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
-msgid "new"
-msgstr "yeni"
-
-#: ../../diskdrake/interactive.pm_.c:766
-msgid "Choose an existing LVM to add to"
-msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "LVM name?"
-msgstr "LVM adД±?"
-
-#: ../../diskdrake/interactive.pm_.c:812
-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:825
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:826
-msgid "Loopback file name: "
-msgstr "Loopback fayl adД±: "
-
-#: ../../diskdrake/interactive.pm_.c:831
-#, fuzzy
-msgid "Give a file name"
-msgstr "HЙ™qiqi adД±"
-
-#: ../../diskdrake/interactive.pm_.c:834
-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:835
-msgid "File already exists. Use it?"
-msgstr "Fayl onsuz da vardД±r. Д°ЕџlЙ™dilsin?"
-
-#: ../../diskdrake/interactive.pm_.c:858
-#, fuzzy
-msgid "Mount options"
-msgstr "Modul seçənəkləri:"
-
-#: ../../diskdrake/interactive.pm_.c:865
-msgid "Various"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
-msgid "device"
-msgstr "avadanlД±q"
-
-#: ../../diskdrake/interactive.pm_.c:930
-msgid "level"
-msgstr "sЙ™viyyЙ™"
-
-#: ../../diskdrake/interactive.pm_.c:931
-msgid "chunk size"
-msgstr "parça böyüklüyü"
-
-#: ../../diskdrake/interactive.pm_.c:947
-msgid "Be careful: this operation is dangerous."
-msgstr "DiqqЙ™tlД± olun: bu Й™mЙ™liyyat tЙ™hlГјkЙ™lidir."
-
-#: ../../diskdrake/interactive.pm_.c:962
-msgid "What type of partitioning?"
-msgstr "Nəcə bölməlandirmə istəyirsən?"
-
-#: ../../diskdrake/interactive.pm_.c:978
-#, 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:992
-msgid ""
-"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
-"1024).\n"
-"Either you use LILO and it won't work, or you don't use LILO and you don't "
-"need /boot"
-msgstr ""
-"Bağışlayın, /boot bölməsini bu sürücüdə yarada bilməyəcəm.\n"
-"Onda ya LILO istifadə edə bilməyəcəksiniz ve /boot bölümünə \n"
-"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:996
-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 ""
-"Seçdiyiniz bölüm fiziki sahənin üstündə (1024. silindrin xaricində)\n"
-"/boot bölümünüz yoxdur. Lilo açılış idarəcisindən istifadə etmək "
-"istЙ™yirsinizsЙ™, \n"
-"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-
-#: ../../diskdrake/interactive.pm_.c:1002
-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 ""
-"Bir proqram tə'minatlı RAID bölməsini kök qovluğu (/) olaraq tə'yin "
-"etdiniz.\n"
-"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
-"Й™lavЙ™ etmЙ™yi unutmayД±n"
+msgid "Lilo/grub mode"
+msgstr "Lilo/grub modu"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../bootlook.pm:1
#, 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:1026
-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"
+msgid "Yaboot mode"
+msgstr "Yaboot modu"
-#: ../../diskdrake/interactive.pm_.c:1037
+#: ../../bootlook.pm:1
#, 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:1039
-msgid "Formatting"
-msgstr "ЕћЙ™killЙ™ndirilir"
+msgid "Launch Aurora at boot time"
+msgstr "Açılışda Auroranı başlat"
-#: ../../diskdrake/interactive.pm_.c:1040
+#: ../../bootlook.pm:1
#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
+msgid "Traditional Gtk+ Monitor"
+msgstr "ЖЏnЙ™nЙ™vi Gtk+ Monitor"
-#: ../../diskdrake/interactive.pm_.c:1041
-#: ../../install_steps_interactive.pm_.c:466
+#: ../../bootlook.pm:1
#, c-format
-msgid "Formatting partition %s"
-msgstr "Şəkilləndirilən bölmə: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid iflas etdi"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Yeni bölmələr üçün boş sahə yoxdur"
+msgid "Traditional Monitor"
+msgstr "ЖЏnЙ™nЙ™vi Monitor"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1064
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Yeni bölmələr üçün boş sahə yoxdur"
+msgid "NewStyle Monitor"
+msgstr "NewStyle Monitor"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../bootlook.pm:1
#, c-format
-msgid "Copying %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1072
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Rezolyusiya: %s\n"
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle KateqoriyasД±ndan Monitor"
-#: ../../diskdrake/interactive.pm_.c:1082
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1103
-#: ../../diskdrake/interactive.pm_.c:1162
-msgid "Device: "
-msgstr "AvadanlД±q: "
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/logdrake:1
#, 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:1108
-#: ../../diskdrake/interactive.pm_.c:1116
-#: ../../diskdrake/interactive.pm_.c:1181
-msgid "Type: "
-msgstr "Növ: "
+msgid "/File/_Quit"
+msgstr "/Fayl/_Г‡Д±x"
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Name: "
-msgstr "Ad: "
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_File"
+msgstr "/_Fayl"
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../bootlook.pm:1
#, c-format
-msgid "Start: sector %s\n"
-msgstr "BaЕџlanДџД±c: sektor %s\n"
+msgid "Boot Style Configuration"
+msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../common.pm:1
#, c-format
-msgid "Size: %s"
-msgstr "Böyüklüyü: %s"
+msgid "consolehelper missing"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1123
+#: ../../common.pm:1
#, c-format
-msgid ", %s sectors"
-msgstr ", %s sektor"
+msgid "kdesu missing"
+msgstr "kdesu Й™ksikdir"
-#: ../../diskdrake/interactive.pm_.c:1125
+#: ../../common.pm:1
#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Silindr %d -dЙ™n silindr %d-yЙ™\n"
-
-#: ../../diskdrake/interactive.pm_.c:1126
-msgid "Formatted\n"
-msgstr "ЕћЙ™killЙ™ndirilmiЕџ\n"
-
-#: ../../diskdrake/interactive.pm_.c:1127
-msgid "Not formatted\n"
-msgstr "ЕћЙ™killЙ™ndirilmЙ™miЕџ\n"
+msgid "Screenshots will be available after install in %s"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../diskdrake/interactive.pm_.c:1128
-msgid "Mounted\n"
-msgstr "BaДџlД±\n"
+#: ../../common.pm:1
+#, fuzzy, c-format
+msgid "Can't make screenshots before partitioning"
+msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:1129
-#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+#: ../../common.pm:1
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../common.pm:1
#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
+msgid "1 minute"
msgstr ""
-"Loopback faylД±:\n"
-" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1132
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
+#: ../../common.pm:1
+#, c-format
+msgid "%d minutes"
msgstr ""
-"Ana açılma bölməsi\n"
-" (MS-DOS açılışı üçün)\n"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../common.pm:1
#, c-format
-msgid "Level %s\n"
-msgstr "SЙ™viyyЙ™ %s\n"
+msgid "TB"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../common.pm:1
#, c-format
-msgid "Chunk size %s\n"
-msgstr "Parça böyüklüyü %s\n"
+msgid "GB"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1136
+#: ../../common.pm:1
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-disklЙ™ri %s\n"
+msgid "MB"
+msgstr "MB"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../common.pm:1
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Loopback faylД± adД±: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1141
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Bəlkə də bu bir Sürücü bölməsidir.\n"
-"Onda bunu ele belЙ™cЙ™ buraxД±n.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1144
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Bu, ikili açılış üçün xüsusi\n"
-"Bootstrap-dД±r.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1163
-msgid "Read-only"
+msgid "KB"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1164
-#, c-format
-msgid "Size: %s\n"
-msgstr "Böyüklük: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "GeometriyasД±: %s silindr, %s baЕџ, %s sektor\n"
+msgid "United States"
+msgstr "BirlЙ™ЕџmiЕџ Ећtatlar"
-#: ../../diskdrake/interactive.pm_.c:1166
-msgid "Info: "
-msgstr "MЙ™'lumat: "
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Austria"
+msgstr "serial"
-#: ../../diskdrake/interactive.pm_.c:1167
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-disklЙ™ri %s\n"
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Italy"
+msgstr "Д°talyanca"
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Bölmə cədvəli növü: %s\n"
+msgid "Netherlands"
+msgstr "Hollandiya"
-#: ../../diskdrake/interactive.pm_.c:1169
+#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "%d data yolunda, %d nö'li\n"
+msgid "Sweden"
+msgstr "İsveçcə"
-#: ../../diskdrake/interactive.pm_.c:1199
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Fayl sistemi növü: "
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Norway"
+msgstr "Norveçcə"
-#: ../../diskdrake/interactive.pm_.c:1200
-msgid "Choose your filesystem encryption key"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greece"
+msgstr "Yunanca"
-#: ../../diskdrake/interactive.pm_.c:1203
+#: ../../crypto.pm:1 ../../lang.pm:1
#, 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)"
+msgid "Germany"
+msgstr "Almanca"
-#: ../../diskdrake/interactive.pm_.c:1204
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Parollar uyДџun gЙ™lmir"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Czech Republic"
+msgstr "Г‡ex RespublikasД±"
-#: ../../diskdrake/interactive.pm_.c:1207
-msgid "Encryption key"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "Belgium"
+msgstr "Belçika dili"
-#: ../../diskdrake/interactive.pm_.c:1208
-msgid "Encryption key (again)"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "France"
+msgstr "FransД±zca"
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Bölmə növünü Dəyişdir"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Costa Rica"
+msgstr "Kosta Rika"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#: ../../fsedit.pm:1
#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr ""
+msgid "Error opening %s for writing: %s"
+msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
-msgid "Domain Authentication Required"
-msgstr "TanД±tma"
+#: ../../fsedit.pm:1
+#, c-format
+msgid "Nothing to do"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
-msgid "Another one"
-msgstr "Д°nternet"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid "Not enough free space for auto-allocating"
+msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
-msgid "Which username"
-msgstr "Д°stifadЙ™Г§i adД±"
+#: ../../fsedit.pm:1
+#, 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"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"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"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
-#, 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:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
-#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
+#: ../../fsedit.pm:1
#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s şəkilləndirilməsində %s bölmə xətası"
+msgid "This directory should remain within the root filesystem"
+msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fs.pm_.c:610
+#: ../../fsedit.pm:1
#, 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)"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
+#: ../../fsedit.pm:1
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
+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"
-#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
+#: ../../fsedit.pm:1
#, c-format
-msgid "error unmounting %s: %s"
-msgstr "%s ayrД±lД±rkЙ™n xЙ™ta oldu: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "bЙ™sit"
+msgid "Mount points must begin with a leading /"
+msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+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:30
-msgid "server"
-msgstr "verici"
+#: ../../fsedit.pm:1
+#, c-format
+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:240
+#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
@@ -2450,829 +1210,753 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../fsedit.pm_.c:501
-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:502
-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:521
-msgid "Mount points must begin with a leading /"
-msgstr "Bağlama nöqtələri / ilə başlamalıdır"
+#: ../../fsedit.pm:1
+#, c-format
+msgid "server"
+msgstr "verici"
-#: ../../fsedit.pm_.c:522
+#: ../../fsedit.pm:1
#, 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"
+msgid "with /usr"
+msgstr ""
-#: ../../fsedit.pm_.c:526
+#: ../../fsedit.pm:1
#, 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"
+msgid "simple"
+msgstr "bЙ™sit"
-#: ../../fsedit.pm_.c:528
-msgid "This directory should remain within the root filesystem"
-msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Enabling swap partition %s"
+msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../fsedit.pm_.c:530
-#, fuzzy
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+#: ../../fs.pm:1 ../../partition_table.pm:1
+#, c-format
+msgid "error unmounting %s: %s"
+msgstr "%s ayrД±lД±rkЙ™n xЙ™ta oldu: %s"
+
+#: ../../fs.pm:1
+#, c-format
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
-"ehtiyac vardД±r.\n"
-#: ../../fsedit.pm_.c:532
+#: ../../fs.pm:1
#, 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:599
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
+msgid "Mounting partition %s"
+msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../fsedit.pm_.c:601
-msgid "Nothing to do"
-msgstr ""
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Checking %s"
+msgstr "Rezolyusiya: %s\n"
-#: ../../fsedit.pm_.c:694
+#: ../../fs.pm:1
#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Yazmaq üçün açılan %s'də xəta: %s"
+msgid "Formatting partition %s"
+msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../harddrake/data.pm_.c:71
-msgid "cpu /* "
-msgstr ""
+#: ../../fs.pm:1
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "%s faylД± yaradД±lД±r vЙ™ ЕџЙ™killЙ™ndirilir"
-#: ../../harddrake/sound.pm_.c:170
-msgid "No alternative driver"
-msgstr ""
+#: ../../fs.pm:1
+#, 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)"
-#: ../../harddrake/sound.pm_.c:171
+#: ../../fs.pm:1
#, c-format
+msgid "%s formatting of %s failed"
+msgstr "%s şəkilləndirilməsində %s bölmə xətası"
+
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Click on \"Next ->\" if you want to delete all data and partitions present\n"
+"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
+"be able to recover any data and partitions present on this hard drive,\n"
+"including any Windows data.\n"
+"\n"
+"Click on \"<- Previous\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
+"Sürücüdəki bütün bilgiləri və bölmələri silmək üçün\n"
+"\"Oldu\" dГјymЙ™sinЙ™ basД±n. DiqqЙ™tli olun,\"Oldu\" dГјymЙ™sinЙ™ basdД±qdan sonra\n"
+"Windows bilgiləri də daxil olmaq üzərəbütün bölmə mə'lumatı geri dönməyəcək "
+"ЕџЙ™kildЙ™ silinЙ™cЙ™k.\n"
+"\n"
+"\n"
+"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
+"Й™mЙ™liyyatД± lЙ™Дџv edЙ™ bilЙ™rsiniz."
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
-msgid "Sound configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-
-#: ../../harddrake/sound.pm_.c:174
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"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 ""
+"Linuks Mandrakeni yükləmak üçün sürücüyü seçin.\n"
+"DiqqЙ™tli olun, sГјrГјcГјdЙ™ki bГјtГјn mЙ™'lumatlar silinЙ™cЙ™k\n"
+"vЙ™ geri gЙ™lmЙ™yЙ™cЙ™k."
-#: ../../harddrake/sound.pm_.c:176
+#: ../../help.pm:1
#, c-format
msgid ""
+"As a review, DrakX will present a summary of various information it has\n"
+"about your system. Depending on your installed hardware, you may have some\n"
+"or all of the following entries:\n"
"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:178
-#, fuzzy
-msgid "Driver:"
-msgstr "SГјrГјcГј"
-
-#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
-#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
-#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
-#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
-#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
-#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
-#, fuzzy
-msgid "Help"
-msgstr "/_YardД±m"
-
-#: ../../harddrake/sound.pm_.c:185
-msgid "Switching between ALSA and OSS help"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:186
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
+" * \"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one.\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+"primary language you have chosen. But here, just as in your choice of a\n"
+"keyboard, you may not be in the country for which the chosen language\n"
+"should correspond. You may need to click on the \"Timezone\" button to\n"
+"configure the clock for the correct timezone.\n"
"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:202
-#, c-format
-msgid ""
-"The old \"%s\" driver is blacklisted.\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation.\n"
"\n"
-"It has been reported to oopses the kernel on unloading.\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
-#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
-#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
-#: ../../standalone/service_harddrake_.c:64
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../harddrake/sound.pm_.c:210
-msgid "No known driver"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:211
-#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:214
-msgid "Unkown driver"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:215
-#, c-format
-msgid ""
-"The \"%s\" driver for your sound card is unlisted\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" resolution. If that does not suits you, click on\n"
+"the button to reconfigure your grapical interface.\n"
"\n"
-"Please send the output of the \"lspcidrake -v\" command to\n"
-"<install at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver \"%s\""
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-
-#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Гњmumi"
-
-#: ../../harddrake/v4l.pm_.c:97
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:98
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now, you can by clicking on this button.\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it is\n"
+"displayed here. If you notice the sound card displayed is not the one that\n"
+"is actually present on your system, you can click on the button and choose\n"
+"another driver.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+"here. If you have a TV card and it is not detected, click on the button to\n"
+"try to configure it manually.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated with the card."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:224
+#: ../../help.pm:1
+#, c-format
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:227
-#, fuzzy
-msgid "Card model:"
-msgstr "Kart mem (DMA)"
-
-#: ../../harddrake/v4l.pm_.c:228
-#, fuzzy
-msgid "Tuner type:"
-msgstr "Bölmə növünü Dəyişdir"
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "number of capture buffers for mmap'ed capture"
+"\"Sound card\": if a sound card is detected on your system, it is displayed\n"
+"here. If you notice the sound card displayed is not the one that is\n"
+"actually present on your system, you can click on the button and choose\n"
+"another driver."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:231
-#, fuzzy
-msgid "PLL setting:"
-msgstr "ЕћЙ™killЙ™ndirilir"
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "Radio support:"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "enable radio support"
-msgstr ""
-
-#: ../../help.pm_.c:13
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more this concept. But unlike \"root\", which is the\n"
-"administrator, the users you add here will not be entitled to change\n"
-"anything except their own files and their own configurations. You will have\n"
-"to create at least one regular user for yourself. That account is where you\n"
-"should log in for routine use. Although it is very practical to log in as\n"
-"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
-"could mean that your system would not work any more. If you make a serious\n"
-"mistake as a regular user, you may only lose some information, but not the\n"
-"entire system.\n"
-"\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\n"
-"first 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"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
-"one from a security point of view, but that is no reason to neglect it:\n"
-"after all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of the people meant to use that computer. When you are\n"
-"finish adding all the users you want, select \"Done\".\n"
+"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
+"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
+"detected and installed in the bootloader menu. If this is not the case, you\n"
+"can add an entry by hand in this screen. Be careful to choose the correct\n"
+"parameters.\n"
"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default).\n"
+"Yaboot's main options are:\n"
"\n"
-"When you are finished adding all users, you will be proposed to choose a\n"
-"user which can automatically log into the system when the computer boots\n"
-"up. If you are interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click \"Yes\".\n"
-"If you are not interested in this feature, click \"No\"."
-msgstr ""
-
-#: ../../help.pm_.c:48
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
+" * Init Message: a simple text message displayed before the boot prompt.\n"
"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information.\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt.\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
+msgstr ""
+"Yaboot NewWorld MacIntosh avadalığı üçün açılış idarəcisidir. Ayrıca\n"
+"GNU/Linuks, MacOS, vЙ™ ya MacOSX sistemlЙ™rini kompГјterinizdЙ™ varsa, "
+"açacaqdır.\n"
+"Normalda, bu Й™mЙ™liyyat sistemlЙ™ri dГјzgГјn tapД±lД±b qurula bilirlЙ™r\n"
+"ЖЏgЙ™r belЙ™ olmazsa, bu ekrandan Й™llЙ™ lazД±mi qurДџularД± girЙ™ bilЙ™rsiniz.\n"
+"DГјzgГјn parametrlЙ™ri girib girmЙ™diyinizi yaxЕџД±ca bir yoxlayД±n.\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"Yaboot ana seçənəkləri:\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Yuxarıda sürücünüzdə tapılan Linuks bölmələri sıralanıb\n"
-"Sehirbazın tövsiyələrinə uyun, onlar çox vaxt işə yarayır.\n"
-"Əgər bunu istəməsəniz en azından kök bölməsi (\"/\") seçməlisiniz\n"
-"Çox kiçik bölmə seçməyin. yoxsa çox proqram tə'minatı yükləyə bilməzsəniz.\n"
-"Əgər verilərinizi başqa bölmədə tutmaq istəyirsinizsə, ondabir de \"/home\" "
-"bölməsi də yaratmalısınız (birdən çox Linuks\n"
-"bölməniz var isə).\n"
"\n"
+" - Başlanğıc İsmarıcı: Açılışdan əvvəl çıxan sadə bir ismarıc.\n"
"\n"
-"Xəbəriniz olsun, hər bölmə aşağıdakı kimi sıralanıb: \"Ad\", \"Həcm\".\n"
"\n"
+" - Açılış Avadanlığı: GNU/Linuksu hardan başlatmaq istədiyinizi bildirir."
+"ГњmumiyyЙ™tlЙ™ bu mЙ™'lumatД± daha Й™vvЙ™l \"bootstrap\" quraЕџdД±rД±lmasД± "
+"sД±rasД±ndabildirmiЕџ olacaqsД±nД±z.\n"
"\n"
-"\"Ad\" belə kodlanıb: \"sürücü növü\", \"sürücü mömrəsi\",\n"
-"\"bölmə nömrəsi\" (məsələn \"hda1\").\n"
"\n"
+" - Açıq Firmware Gecikməsi: LILOdan fərqli olaraq, yabootda iki dənə "
+"gecikmЙ™ vardД±r\n"
+"Birinci gecikmə saniyələrlə ölçülür və bu arada siz\n"
+"CD, OF açılışı, MacOS və ya Linuks arasında seçki aparmalısınız.\n"
"\n"
-"\"Sürücü növü\" əgər sürücünüz IDE sürücüdürsə \"hd\"dirvə SCSI sürücü isə "
-"\"sd\"dir.\n"
"\n"
+" - Kernel Açılış Vaxt Dolması: Bu vaxt dolması LILO açılış gecikməsinə "
+"uyДџun gЙ™lir. Linuksu\n"
+"seçdikdən sonra ana kernel parametri olaraq bu gecikmə 0.1 saniyə olaraq "
+"qurulu olacaqdД±r.\n"
"\n"
-"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
-"sürücülər üçün:\n"
"\n"
-"*\"a\" yЙ™ni \"birinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
-"\n"
-"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
+" - CD Açılışı Fəallaşsınmı?: Bu seçənəklə CDdən açılışı timsal edən 'C' "
+"xarakteri ilk açılışda çıxacaqdır.\n"
"\n"
-"*\"c\" yЙ™ni \"ikinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
"\n"
-"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
+" - OF Açılışı Fəallaşsın?: Bu seçənəklə OFdən (Open Firmware) açılışını "
+"timsal edЙ™n 'N' xarakteri\n"
+"ilk açılışda çıxacaqdır.\n"
"\n"
"\n"
-"SCSI sГјrГјcГјlЙ™rindЙ™ \"a\" nД±n mЙ™nasД± \"birinci sГјrГјcГј\",\n"
-"\"b\"nin mЙ™nasД± \"ikinci sГјrГјcГј\"dГјr vs..."
-
-#: ../../help.pm_.c:79
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"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 ""
+" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
+"göstərir."
-#: ../../help.pm_.c:84
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
+"You can add additional entries in yaboot for other operating systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
+"For other OSs, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
+"For Linux, there are a few possible options:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation,\n"
-"select one or more of the corresponding groups;\n"
+" * Label: this is the name you will have to type at the yaboot prompt to\n"
+"select this boot option.\n"
"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
+" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
+"or a variation of vmlinux with an extension.\n"
"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
+" * Append: on Apple hardware, the kernel append option is often used to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button\n"
+"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
+"The following are some examples:\n"
"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you unselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-" * \"With X\": install the fewest packages possible to have a working\n"
-"graphical desktop;\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
+" * Initrd: this option can be used either to load initial modules before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation.\n"
"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
+" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
+"need to allocate a large ramdisk, this option can be used to specify a\n"
+"ramdisk larger than the default.\n"
"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
+" * Read-write: normally the \"root\" partition is initially mounted as\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"You can override the default with this option.\n"
"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful to repair or\n"
-"update an existing system."
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support.\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
+"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
-
-#: ../../help.pm_.c:135
-msgid ""
-"Finally, depending on whether or not you chose to be able to select\n"
-"individual packages, you will be presented a tree containing all packages\n"
-"classified by groups and subgroups. While browsing the tree, you can select\n"
-"entire groups, subgroups, or individual packages.\n"
+"Burada yaboot üçün həm başqa əməliyyat sistemləri, həm alternativ "
+"kernellЙ™r,\n"
+" ya da təcili yardım açılış əksləri əlavə edə bilərsiniz.\n"
"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An installation time estimate is displayed\n"
-"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
-"of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
+"Başqa OSlər üçün girişin mənası ad və kök çığırından ibarətdir.\n"
"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of the previous step on how to\n"
-"create such a floppy disk."
-msgstr ""
-
-#: ../../help.pm_.c:171
-msgid ""
-"You are now able to set up your Internet/network connection. If you wish to\n"
-"connect your computer to the Internet or to a local network, click \"OK\".\n"
-"The autodetection of network devices and modem will be launched. If this\n"
-"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
-"also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"Linuks üçün mühtəməl girişlər bunlar ola bilər: \n"
"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
"\n"
-"You can consult the ``Starter Guide'' chapter about Internet connections\n"
-"for details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
+" - Ad: Bu sadəcə olaraq yaboot üçün açılacaq sistemi timsal edən bir "
+"addД±r.\n"
"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
-msgstr ""
-
-#: ../../help.pm_.c:193
-#, fuzzy
-msgid ""
-"You may now choose which services you wish to start at boot time.\n"
"\n"
-"Here are listed all the services available with the current installation.\n"
-"Review them carefully and uncheck those which are not always needed at boot\n"
-"time.\n"
+" - Əks: Bu isə açılacaq çəkirdəyin, yə'ni kernelin adıdır. Çox vaxt bu "
+"vmlinux vЙ™ ya\n"
+"bunun variasiyalarД±dД±r.\n"
"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"İndi, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
-"seçə bilərsiniz. Siçan bir maddənin üzərina gəldiyində o xidmətin rolunu "
-"açıqlayan\n"
-"kiçik bir baloncuq ortaya çıxacaqdır.\n"
+" - Kök: Linuks qurulumunun kök avadanlığı və ya '/'.\n"
"\n"
-"ЖЏgЙ™r kompГјterinizi bir verici olaraq istifadЙ™ edЙ™cЙ™ksЙ™niz bu addД±mda tam bir "
-"diqqЙ™t ayД±rmalД±sД±nД±z:\n"
-"mühtəməldir ki lazımi heç bir xidməti başlatmaq istəməzsiniz."
-
-#: ../../help.pm_.c:210
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:224
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely.\n"
+" \n"
+" - Əlavə: Apple avadanlıqlarında kernel əlavə seçənəkləri ilə sıxlıqla "
+"baЕџlanДџД±c\n"
+"video avadanlığı və ya sıx sıx xəta verən 2ci və 3cü siçan düymələri üçün "
+"emulyasiya\n"
+"imkanlarД± tanД±na bilir. MЙ™sЙ™lЙ™n bunlar \n"
+"bir neçə nümunədir:\n"
"\n"
-"You will be presented the list of available resolutions and color depth\n"
-"available for your hardware. Choose the one that best suit your needs (you\n"
-"will be able to change that after installation though). When you are\n"
-"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
-"then appear and ask you if you can see it.\n"
"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
+"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen. Refer then to the video\n"
-"configuration section of the user guide for more information on how to\n"
-"configure your display."
-msgstr ""
-
-#: ../../help.pm_.c:246
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-
-#: ../../help.pm_.c:253
-msgid ""
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
-"MBR) of your main disk (unless you are using another boot manager), to\n"
-"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
-"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector, and then you will not be able\n"
-"to start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
-"floppy disk you will insert must be empty or contain data which you do not\n"
-"need. You will not have to format it since DrakX will rewrite the whole\n"
-"disk."
-msgstr ""
-
-#: ../../help.pm_.c:277
-#, fuzzy
-msgid ""
-"You now need to choose where you want to install the Mandrake Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space, you will need\n"
-"to partition it. Basically, partitioning a hard drive consists of logically\n"
-"dividing it to create space to install your new Mandrake Linux system.\n"
+"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
-"Guide''. From the installation interface, you can use the wizards as\n"
-"described here by clicking the dialog's \"Wizard\" button.\n"
+" \n"
+" - Initrd: Açılış avadanlığından əvvəl bə'zi açılış modullarını seçmək\n"
+"üçün işlədilir, ya da təcili yardım açılışlarında ramdisk əksini yükləmək "
+"imkanД± verir.\n"
"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available.\n"
+" - Initrd-size: Ana ramdisk böyüklüyü ümumiyyətlə 4096 baytdır. Əgər daha "
+"geniЕџ ramdisk bildirЙ™\n"
+"bilərsiniz isə bu seçənəyi işlədin.\n"
"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option. You will then be asked to choose the mount points associated to\n"
-"each of the partitions. The legacy mount points are selected by default,\n"
-"and you should generally keep them.\n"
+" - Oxuma-yazma: Normalda sistemin 'dirilmЙ™sindЙ™n' Й™vvЙ™l bЙ™'zi sД±naqlarД±n "
+"aparıla bilməsi üçün\n"
+"'root' fayl sistemi bu moda soxulur. Bu seçənəyi nəzərə almayabilərsiniz.\n"
"\n"
-" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see ``Erase entire disk'' 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"
-"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"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"
+" - NoVideo: BЙ™lkЙ™ Apple video avadanlД±ДџД± problem Г§Д±xarda bilЙ™r.Onda bu "
+"seçənəklə\n"
+"sistemi 'novideo' modda təbii framebuffer dəstəyi ilə aça bilərsiniz.\n"
"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+" - Əsas: Bu seçənəklə Linuks sistemi əsas əməliyyat sistemi halına gətirə "
+"bilЙ™rsiniz.\n"
+"Onda ENTER düyməsinə basmaqla Linuks sistemi açılacaqdır. Bu giriş ayrıca "
+"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
+"'*' iЕџarЙ™tilЙ™ iЕџД±qlandД±rД±lacaqdД±r."
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
+"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
+"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
+"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
+"your machine. If you're not sure, you can check the list of hardware\n"
+"detected in your machine by selecting \"See hardware info \" and clicking\n"
+"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
+"->\" button to return to the SCSI interface question.\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
"\n"
-" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful -- it is a powerful but dangerous option. You\n"
-"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing. To know how to use the DiskDrake utility used\n"
-"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
-"Guide''''"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
msgstr ""
-"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"
-"bütün yeri doldurmuş isə, o zaman diskinizdə Linuks Mandrake üçün\n"
-"yer açmalısınız. Ona görə də diski bölmələndirməlisiniz.\n"
-"Bölmələndirmə əsasən diskinizdə məntiqi sürücülər yaratmaqdan ibarətdir.\n"
+"DrakX PCI SCSI adapterleri axtarmaДџa cЙ™hd edЙ™cЙ™k. ЖЏgЙ™ DrakX SCSI\n"
+"taparsa vЙ™ hansД± sГјrГјcГј iЕџlЙ™dilЙ™cЙ™yini bilЙ™rsЙ™, her Еџey Г¶z Г¶zГјnЙ™\n"
+"qurulacaq.\n"
"\n"
-"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir.Ona görə də\n"
-"bu iЕџ Г§ox gЙ™rgin vЙ™ yorucudur. ЖЏgЙ™r Г¶zГјnГјzЙ™ inanmД±rsД±nД±z isЙ™ bu\n"
-"sehirbaz sizə yardım edər. Başlamadan əvvəl xahiş edirik əl kitabçanıza\n"
-"baxın. Və bu iş üçün bir az vaxt ayırın.\n"
"\n"
+"ЖЏgЙ™r sisteminizdЙ™ SCSI adapteri yoxsa, DrakXin tanД±mayacaДџД± bir\n"
+"ISA SCSI vЙ™ ya PCI SCSI adapteri var isЙ™, sizЙ™ sisteminizdЙ™ SCSI\n"
+"adapteri olub olmadД±ДџД± soruЕџulacaq.\n"
+"ЖЏgЙ™r SCSI adapteriniz yox isЙ™, \"Yox\" tД±qlayД±n. ЖЏgЙ™r \"Var\"Д± "
+"tД±qlayarsanД±z.\n"
+"qarşınıza sürücüləin siyahısı çıxacaq, oradan sizə uyanını seçərsiniz.\n"
"\n"
-"Sizə ən az 2 bölmə lazımdır. Biri sistemin özünü köçürməsi üçün\n"
-"Digəri isə uydurma yaddaş (ya da digər adı ilə Swap) üçün.\n"
"\n"
+"ЖЏgЙ™r Й™llЙ™ qurmaДџД± sЙ™Г§Й™rsЙ™niz, o zaman DrakX sizЙ™ adapterin xГјsusiyyЙ™tlЙ™rini\n"
+"soruЕџacaq. Д°mkan verin ki, DrakX sЙ™rbЙ™stcЙ™ Г¶zГј xГјsusiyyЙ™tlЙ™ri tapsД±n.\n"
+"Г‡oxunda bu iЕџЙ™ yarayД±r.\n"
"\n"
-"Əgər diskiniz onsuz da bölünmüş isə (əvvəlki sistemden ya da\n"
-"başqa bölmələndirmə vasitələri ilə hazırlanmış) quruluşda\n"
-"sadəcə olaraq o yerləri yükləmək üçün seçin.\n"
"\n"
+"Əgər istəmirsəniz isə, o zaman adapter üçün xüsusiyyətləri özünüz\n"
+"göstərməlisiniz. Bunun üçün İstifadəçinin Əl Kitabçasına\n"
+"(başlıq 3, \"Avadanlığınız üçün kollektiv mə'lumat) bölməsinə\n"
+"baxın. Ya da avadanlığınızın əl kitabçasından və ya\n"
+"veb sЙ™hifЙ™sindЙ™n (ЖЏgЙ™r internetЙ™ Г§Д±xД±ЕџД±nД±z var isЙ™)\n"
+"ya da Microsoft Windowsdan (ЖЏgЙ™r sisteminizdЙ™ qurulu isЙ™)\n"
+"mЙ™'lumat alД±n."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other OSs may\n"
+"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
+"is best for a particular type of configuration.\n"
+"\n"
+" * \"pdq\" -- which is an acronym for ``print, don't queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
+"\" will handle only very simple network cases and is somewhat slow when\n"
+"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
+"printing to your local printer or to one halfway around the planet. It is\n"
+"simple to configure and can act as a server or a client for the ancient\n"
+"\"lpd \" printing system, so it compatible with older operating systems\n"
+"that may still need print services. While quite powerful, the basic setup\n"
+"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
+"sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
+"front-ends for printing or choosing printer options and for managing the\n"
+"printer.\n"
+"\n"
+"If you make a choice now, and later find that you don't like your printing\n"
+"system you may change it by running PrinterDrake from the Mandrake Control\n"
+"Center and clicking the expert button."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. DrakX will analyze the disk boot sector and act according to\n"
+"what it finds there:\n"
"\n"
-"Əgər disk bölünməmiş ise, yuxarıdakı sehirbazdan istifadə edə bilərsiniz.\n"
-"Sisteminizin quruluЕџundan asД±lД± olaraq mГјxtЙ™lif imkanlarД±nД±z var:\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. This way you will be able to load either GNU/Linux or another\n"
+"OS.\n"
"\n"
-"* Bütün diski sil: Linuks Mandrake qurmaq üçün bütün diskinizin\n"
-" üzərindəki bölmələri silər. Burada diqqətli olun.\n"
-" SildiklЙ™riniz Й™sla geri gЙ™lmЙ™z.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
"\n"
+"If it cannot make a determination, DrakX will ask you where to place the\n"
+"bootloader.\n"
"\n"
-"* Windows bölməsindəki sahəni istifadə et: Sisteminizdə\n"
-" Microsoft Windows qurulu isЙ™ ve bГјtГјn diski Й™hatЙ™ edir isЙ™\n"
-" Linuks Mandrake üçün bir yer ayırmalısınız. Bunun üçün\n"
-" ya bГјtГјn diski silmЙ™lisiniz (\"BГјtГјn diski sil\" bax ya da\n"
-" \" Usta modu\" tövsiyələri) ya da yenidən bölmələndirməlisiniz.Bu iş heç "
-"bir mЙ™'lumat itkisi olmadan da edilЙ™ bilЙ™r.Bunun baЕџqa adД±\n"
-" eyni kompГјterdЙ™ hЙ™m Linuks Mandrake hЙ™m dЙ™ Windows qurulu olmasД±dД±r.\n"
+"\"Boot device\": in most cases, you will not change the default (\"First\n"
+"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
+"(\"On Floppy\").\n"
"\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
"\n"
-"t Bu seçkiyə getmədən əvvəl bir şeyi başa düşməlisiniz ki, yenidən "
-"bölmələndirmə ilə sizin Windows bölməsi kiçiləcəkdir.\n"
-" YЙ™'ni Windows altД±nda daha az disk sahЙ™sinЙ™ malik olacaqsД±nД±z.\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
"\n"
-"* Usta modu: Əgər əllə diski bölmək istəsəniz, bu modu seçin. Diqqətli "
-"olun.\n"
-" Bu mod gГјГ§lГјdГјr amma bir o qЙ™dЙ™r dЙ™ tЙ™hlГјkЙ™lidir. DiskinizdЙ™ki bГјtГјn "
-"bilgiyi asandlД±qla itirЙ™ bilЙ™rsiniz.\n"
-" Təcrübəsiz isəniz bunu seçməyin."
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
+msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"There you are. Installation is now completed and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options that will be available at boot time will be displayed.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"If there are other operating systems installed on your machine they will\n"
+"automatically be added to the boot menu. You can fine-tune the existing\n"
+"options by clicking \"Add\" to create a new entry; selecting an entry and\n"
+"clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" validates\n"
+"your changes.\n"
"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone who goes to the console and reboots the machine. You can delete the\n"
+"corresponding entries for the operating systems to remove them from the\n"
+"bootloader menu, but you will need a boot disk in order to boot those other\n"
+"operating systems!"
+msgstr ""
+"LILO (Linuks Yükləyici) və Grub açılış sistem yükləyiciləridir: sistemi "
+"Linuks\n"
+"ya da kompüterinizdə olan başqa bir əməliyyatiyle aça bilərlər.\n"
+"ЖЏsasЙ™n bu digЙ™r Й™mЙ™liyyat sistemlЙ™ri doДџru bir ЕџЙ™kilde 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."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"This dialog allows to finely tune your bootloader:\n"
"\n"
-" Note that two different options are available after clicking the button:\n"
+" * \"Bootloader to use\": there are three choices for your bootloader:\n"
"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
+" * \"GRUB\": if you prefer grub (text menu).\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is\n"
-"completely rewritten, all data is lost.\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface.\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"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+" * \"Delay before booting the default image\": after a boot or a reboot of\n"
+"the computer, this is the delay given to the user at the console to select\n"
+"a boot entry other than the default.\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Skip\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"system! Be sure you know what you do before changing any of the options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
+"that are reserved for the expert user."
msgstr ""
-#: ../../help.pm_.c:378
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem on it).\n"
+"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 the password that you chose too easy. As you\n"
+"can see, you are not forced to enter a password, but we strongly advise you\n"
+"against. GNU/Linux is as prone to operator error as any other operating\n"
+"system. Since \"root\" can overcome all limitations and unintentionally\n"
+"erase all data on partitions by carelessly accessing the partitions\n"
+"themselves, it is important that it be difficult to become \"root\".\n"
"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\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"
+"easy to compromise a system.\n"
"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
+"One caveat -- do not make the password too long or complicated because you\n"
+"must be able to remember it!\n"
"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"it.\n"
+"The password will not be displayed on screen as you type it in. To reduce\n"
+"the chance of a blind typing error you will need to enter the password\n"
+"twice. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
+"If you wish access to this computer to be controlled by an authentication\n"
+"server, clisk the \"Advanced\" button.\n"
"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you do not\n"
+"know which to use, ask your network administrator.\n"
"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
+"If you happen to have problems with reminding passwords, you can choose to\n"
+"have \"No password\", if your computer won't be connected to the Internet,\n"
+"and if you trust anybody having access to it."
msgstr ""
-"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\n"
-"(ЕџЙ™killЙ™ndirmЙ™k yЙ™ni fayl sistemi yaratmaq - format).\n"
-"\n"
-"\n"
-"Bu arada var olan hazır bölmələri də üstündəkiləri silmək üçünyenidən "
-"ЕџЙ™killЙ™ndirmЙ™k istЙ™ya\n"
-"bilЙ™rsiniz.\n"
-"Bunu istəyirsinizsə bu bölmələri də seçməlisiniz.\n"
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+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:1
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the provided list.\n"
"\n"
-"Bunu ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
-"mЙ™cburi deyil.\n"
-"İşlətim sistəmini əmələ gətirən bölmələri (yəni\n"
-"\"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
-"seçə bilərsiniz. Verilər olan \"home\"u məsələ toxunulmadan\n"
-"buraxa bilЙ™rsiniz.\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and to\n"
+"go back to the list of choices.\n"
"\n"
+"Wheel mice are occasionally not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"Next ->\" button, a mouse image is displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activated correctly. Once you\n"
+"see the on-screen scroll wheel moving as you scroll your mouse wheel, test\n"
+"the buttons and check that the mouse pointer moves on-screen as you move\n"
+"your mouse."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Your choice of preferred language will affect the language of the\n"
+"documentation, the installer and the system in general. Select first the\n"
+"region you are located in, and then the language you speak.\n"
"\n"
-"Diqqətli olun. şəkilləndirdiyiniz bölmələrdəki verilər\n"
-"geri gЙ™lmЙ™z.\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation, thereby installing the\n"
+"language-specific files for system documentation and applications. For\n"
+"example, if you will host users from Spain on your machine, select English\n"
+"as the default language in the tree view and \"Espanol\" in the Advanced\n"
+"section.\n"
"\n"
+"Note that you're not limited to choosing a single additional language. Once\n"
+"you have selected additional locales, click the \"Next ->\" button to\n"
+"continue.\n"
"\n"
-"ЕћЙ™killЙ™ndirmЙ™yЙ™ hazД±r isЙ™niz \"Oldu\" dГјymЙ™sini tД±qlayД±n.\n"
+"To switch between the various languages installed on the system, you can\n"
+"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+"language used by the entire system. Running the command as a regular user\n"
+"will only change the language settings for that particular user."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Depending on the default language you chose in Section , DrakX will\n"
+"automatically select a particular type of keyboard configuration. However,\n"
+"you might not have a keyboard that corresponds exactly to your language:\n"
+"for example, if you are an English speaking Swiss person, you may have a\n"
+"Swiss keyboard. Or if you speak English but are located in Quebec, you may\n"
+"find yourself in the same situation where your native language and keyboard\n"
+"do not match. In either case, this installation step will allow you to\n"
+"select an appropriate keyboard from a list.\n"
"\n"
+"Click on the \"More \" button to be presented with the complete list of\n"
+"supported keyboards.\n"
"\n"
-"Yeni Linuks Mandrake sisteminizi qurmaq üçün başqa bölmə seçmək\n"
-"istЙ™yirsiniz isЙ™ \"LЙ™Дџv et\" dГјymЙ™sinЙ™ basД±n."
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding that will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
-#: ../../help.pm_.c:404
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
+"This step is activated only if an old GNU/Linux partition has been found on\n"
+"your machine.\n"
"\n"
-"Please be patient."
-msgstr ""
-"Təptəzə Linuks Mandrake sisteminizə qurulacaq. Bu da seçdiyiniz\n"
-"yükləmə böyüklüyünə və sistəminizin qabiliyyətinə görə\n"
-"bir neçə deqiqə alar.\n"
+"DrakX now needs to know if you want to perform a new install or an upgrade\n"
+"of an existing Mandrake Linux system:\n"
"\n"
+" * \"Install\": For the most part, this completely wipes out the old\n"
+"system. If you wish to change how your hard drives are partitioned, or\n"
+"change the file system, you should use this option. However, depending on\n"
+"your partitioning scheme, you can prevent some of your existing data from\n"
+"being over- written.\n"
"\n"
-"XahiЕџ edirik, sЙ™brli olun."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+" * \"Upgrade\": this installation class allows you to update the packages\n"
+"currently installed on your Mandrake Linux system. Your current\n"
+"partitioning scheme and user data is not altered. Most of other\n"
+"configuration steps remain available, similar to a standard installation.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
+"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
+"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-#: ../../help.pm_.c:425
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms included in it, click on the \"Refuse\" button which will\n"
-"immediately terminate the installation. To continue with the installation,\n"
-"click on the \"Accept\" button."
+"\"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one."
msgstr ""
-#: ../../help.pm_.c:432
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
-"get more information about the meaning of these levels.\n"
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-"If you do not know what to choose, keep the default option."
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
+"\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
+"Sürücünüzdə bir və ya daha çox Windows bölməsi tapıldı.\n"
+"Xahiş edirik Linuks Mandrakeni qurmaq üçün onlardan birini "
+"yenidənölçüləndirmək üzərə seçin.\n"
+"\n"
+"\n"
+"Xəbəriniz olsun, her bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows\n"
+"adД±\"\"HЙ™cm\".\n"
+"\n"
+"\"Linuks adı\" bu cür kodlanıb: \"sürücü növü\", \"sürücü nömrəsi\",\"bölmə "
+"nömrəsi\" (məsələn, \"hda\").\n"
+"\n"
+"\n"
+"\"Sürücü növü\" sürücünüz IDE sürücü isə \"hd\"dirSCSI sürücü isə\n"
+"\"sd\"dir.\n"
+"\n"
+"\n"
+"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
+"sürücülər üçün:\n"
+"\n"
+"*\"a\" yЙ™ni \"birinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
+"\n"
+"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
+"\n"
+"*\"c\" yЙ™ni \"ikinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
+"\n"
+"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
+"\n"
+"\n"
+"SCSI sГјrГјcГјlЙ™rindЙ™ \"a\" nД±n mЙ™nasД± \"birinci sГјrГјcГј\",\n"
+"\"b\"nin mЙ™nasД± \"ikinci sГјrГјcГј\"dГјr vs..."
-#: ../../help.pm_.c:442
-#, fuzzy
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3287,59 +1971,63 @@ msgid ""
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
+"drive\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
-"swap partitions on your hard drive's free space;\n"
+" * \"Auto allocate\": this option enables you to automatically create ext3\n"
+"and swap partitions in free space of your hard drive\n"
"\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\n"
-"recommended to perform this step;\n"
+"recommended that you perform this step.\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from a floppy disk;\n"
+" * \"Restore partition table\": allows you to restore a previously saved\n"
+"partition table from a 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"
+"doesn't always work.\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and reloads the\n"
+"partition table that was originally on the hard drive.\n"
"\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\n"
-"your hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
+"your hard drive. This is recommended if you do not have a good\n"
+"understanding of partitioning.\n"
"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
+" * \"Undo\": use this option to cancel your changes.\n"
"\n"
" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
+"partitions (type, options, format) and gives more information about the\n"
+"hard drive.\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-" * Ctrl-d to delete a partition;\n"
+" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point.\n"
+" * Ctrl-m to set the mount point\n"
"\n"
-"To get information about the different filesystem types available, please\n"
+"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
@@ -3413,657 +2101,682 @@ msgstr ""
"ЖЏgЙ™r daha Г§ox yeriniz varsa ; mЙ™sЙ™lЙ™n 50 MB, onda bГјtГјn kernel vЙ™ ramdisk "
"əksini təcili açılış halları üçün saxlaya bilərsiniz."
-#: ../../help.pm_.c:513
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
+"At this point, DrakX will allow you to choose the security level desired\n"
+"for the machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine will contain crucial data, or if it will be a machine\n"
+"directly exposed to the Internet. The trade-off of a higher security level\n"
+"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
+"chapter of the ``Command Line Manual'' to get more information about the\n"
+"meaning of these levels.\n"
"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Bugs may have been\n"
+"fixed, security issues resolved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. A package-selection tree will\n"
+"appear: review the selection, and press \"Install\" to retrieve and install\n"
+"the selected package( s), or \"Cancel\" to abort."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a file system).\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"At this time, you may wish to reformat some already existing partitions to\n"
+"erase any data they contain. If you wish to do that, please select those\n"
+"partitions as well.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Please note that it is not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
+"reformat partitions containing data that you wish to keep (typically\n"
+"\"/home\").\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"Please be careful when selecting partitions. After formatting, all data on\n"
+"the selected partitions will be deleted and you will not be able to recover\n"
+"it.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"Click on \"Next ->\" when you are ready to format partitions.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
+"Click on \"<- Previous\" if you want to choose another partition for your\n"
+"new Mandrake Linux operating system installation.\n"
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Sürücünüzdə bir və ya daha çox Windows bölməsi tapıldı.\n"
-"Xahiş edirik Linuks Mandrakeni qurmaq üçün onlardan birini "
-"yenidənölçüləndirmək üzərə seçin.\n"
-"\n"
-"\n"
-"Xəbəriniz olsun, her bölmə bu cür sıralanıb; \"Linuks adı\",\"Windows\n"
-"adД±\"\"HЙ™cm\".\n"
-"\n"
-"\"Linuks adı\" bu cür kodlanıb: \"sürücü növü\", \"sürücü nömrəsi\",\"bölmə "
-"nömrəsi\" (məsələn, \"hda\").\n"
+"Yeni yaradılan bütün bölmələr şəkilləndirilməlidir\n"
+"(ЕџЙ™killЙ™ndirmЙ™k yЙ™ni fayl sistemi yaratmaq - format).\n"
"\n"
"\n"
-"\"Sürücü növü\" sürücünüz IDE sürücü isə \"hd\"dirSCSI sürücü isə\n"
-"\"sd\"dir.\n"
+"Bu arada var olan hazır bölmələri də üstündəkiləri silmək üçünyenidən "
+"ЕџЙ™killЙ™ndirmЙ™k istЙ™ya\n"
+"bilЙ™rsiniz.\n"
+"Bunu istəyirsinizsə bu bölmələri də seçməlisiniz.\n"
"\n"
"\n"
-"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
-"sürücülər üçün:\n"
+"Bunu ağlınızda tutun ki var olan bütün bölmələri şəkilləndirmək\n"
+"mЙ™cburi deyil.\n"
+"İşlətim sistəmini əmələ gətirən bölmələri (yəni\n"
+"\"/\", \"usr\" və ya \"var\"ı yenidən şəkilləndirmək üçün\n"
+"seçə bilərsiniz. Verilər olan \"home\"u məsələ toxunulmadan\n"
+"buraxa bilЙ™rsiniz.\n"
"\n"
-"*\"a\" yЙ™ni \"birinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
"\n"
-"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
+"Diqqətli olun. şəkilləndirdiyiniz bölmələrdəki verilər\n"
+"geri gЙ™lmЙ™z.\n"
"\n"
-"*\"c\" yЙ™ni \"ikinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
"\n"
-"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
+"ЕћЙ™killЙ™ndirmЙ™yЙ™ hazД±r isЙ™niz \"Oldu\" dГјymЙ™sini tД±qlayД±n.\n"
"\n"
"\n"
-"SCSI sГјrГјcГјlЙ™rindЙ™ \"a\" nД±n mЙ™nasД± \"birinci sГјrГјcГј\",\n"
-"\"b\"nin mЙ™nasД± \"ikinci sГјrГјcГј\"dГјr vs..."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Səbrli olun. Bu əməliyyat bir neçə deqiqə sürə bilər."
+"Yeni Linuks Mandrake sisteminizi qurmaq üçün başqa bölmə seçmək\n"
+"istЙ™yirsiniz isЙ™ \"LЙ™Дџv et\" dГјymЙ™sinЙ™ basД±n."
-#: ../../help.pm_.c:547
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
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\") over your\n"
-"installation. You can also choose to do a new installation or upgrade your\n"
-"existing Mandrake Linux system:\n"
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
+"you should see after your computer has finished doing its hardware tests is\n"
+"the bootloader menu, giving you the choice of which operating system to\n"
+"start.\n"
"\n"
-" * \"Install\": completely wipes out the old system. However, depending on\n"
-"what is currently installed on your machine, you may be able to keep some\n"
-"old partitions (Linux or otherwise) unchanged;\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the\n"
-"packages currently installed on your Mandrake Linux system. It keeps your\n"
-"hard drives' current partitions as well as user configurations. All other\n"
-"configuration steps remain available, similar to a normal installation;\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"that will automatically perform a whole installation without the help of an\n"
+"operator, similar to the installation you just configured.\n"
"\n"
-" * \"Upgrade Packages Only\": this new installation class allows you to\n"
-"upgrade an existing Mandrake Linux system while keeping all system\n"
-"configurations unchanged. Adding new packages to the current installation\n"
-"is also possible.\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation. The\n"
+"partitioning step is the only interactive procedure.\n"
"\n"
-"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
-"or later.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
-"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
+" This feature is very handy when installing a number of similar machines.\n"
+"See the Auto install section on our web site for more information.\n"
"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
+" * \"Save packages selection\"(*): saves a list of the package selected in\n"
+"this installation. To use this selection with another installation, insert\n"
+"the floppy and start the installation. At the prompt, press the [F1] key\n"
+"and type >>linux defcfg=\"floppy\" <<.\n"
"\n"
-" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-"perform a highly customized installation. Some of the decisions you will\n"
-"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
-"so it is not recommended that those without a fair amount of experience\n"
-"select this installation class."
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"XahiЕџ edirik Linuks Mandrakenin daha Й™vvЙ™lki buraxД±lД±ЕџlarД± qurulu deyilsЙ™ vЙ™ "
-"ya mГјxtЙ™lif Й™mЙ™liyyat sistemlЙ™rindЙ™n istifadЙ™ etmЙ™k istЙ™yirsinizsЙ™ \"YГјklЙ™\" "
-"seçin.\n"
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"At this point, you need to decide where you want to install the Mandrake\n"
+"Linux operating system on your hard drive. If your hard drive is empty or\n"
+"if an existing operating system is using all the available space you will\n"
+"have to partition the drive. Basically, partitioning a hard drive consists\n"
+"of logically dividing it to create the space needed to install your new\n"
+"Mandrake Linux system.\n"
"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to lost data if there is an existing operating system already\n"
+"installed on the drive, partitioning can be intimidating and stressful if\n"
+"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-"XahiЕџ edirik qurulu olan Linuks Mandrakenin Й™vvЙ™lki buraxД±lД±ЕџД±nД± gГјncЙ™llЙ™mЙ™k "
-"istəyirsinizsə \"Güncəllə\" seçin.\n"
+"Depending on your hard drive configuration, several options are available:\n"
"\n"
+" * \"Use free space\": this option will perform an automatic partitioning\n"
+"of your blank drive(s). If you use this option there will be no further\n"
+"prompts.\n"
"\n"
-"Sizin GNU/Linuks biliyinizdən asılı olaraq yükləmək və ya güncəlləmək üçün "
-"Linuks Mandrakenin aşağıdakı səviyyələrini seçə bilərsiniz:\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated with\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and for the most part it's a good idea to keep them.\n"
"\n"
-"* Tövsiyə edilən: Əgər əvvəlcə heç GNU/Linuks ilə tanış olmadınız isə seçin. "
-"YГјklЙ™mЙ™ Г§ox asand olacaq vЙ™ Г§ox az sual soruЕџulacaq.\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
+"without the loss of any data, provided you previously defragment the\n"
+"Windows partition and that it uses the FAT format. Backing up your data is\n"
+"strongly recommended.. Using this option is recommended if you want to use\n"
+"both Mandrake Linux and Microsoft Windows on the same computer.\n"
"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"then when you started. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software.\n"
"\n"
-"* Xüsusi: Əgə əvvəlcə GNU/Linuksa bir az aşina isəniz, seçin. Onda siz "
-"istədiyiniz sistem növünü (Masa üstü, Verici, Təcrübi) seçə biləcəksiniz.\n"
-" Əlbətdə sizə \"Tövsiyə edilən\" seçkidən daha çox sual soruşulacaq.\n"
-" Ona görə də GNU/Linuksa bir az aşina olmalısınız.\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful, because you will not be able to\n"
+"undo your choice after you confirm.\n"
"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"* Usta: Əgər yaxşı bir GNU/Linuks biliyinə sahibsəniz, bu sinifi seçin.\n"
-" \"XГјsusi\" sinifindЙ™ki kimi iЕџlЙ™dЙ™cЙ™yiniz sistemi (Masa ГјstГј, Verici, "
-"TЙ™crГјbi)\n"
-" seçə biləcəksiniz. Amma sizi çox çətin suallar gözləyir. Bəzən bu sualların "
-"içindən\n"
-" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
-"sinifi seçin."
-
-#: ../../help.pm_.c:582
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen). However, you might not have a keyboard that\n"
-"corresponds exactly to your language: for example, if you are an English\n"
-"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
-"keyboard. Or if you speak English but are located in Quebec, you may find\n"
-"yourself in the same situation. In both cases, you will have to go back to\n"
-"this installation step and select an appropriate keyboard from the list.\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost.\n"
"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards.\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
-"asked in the next dialog to choose the key binding that will switch the\n"
-"keyboard layout between the latin and non-latin layouts."
+" * \"Custom disk partitionning\": choose this option if you want to\n"
+"manually partition your hard drive. Be careful -- it is a powerful but\n"
+"dangerous choice and you can very easily lose all your data. That's why\n"
+"this option is really only recommended if you have done something like this\n"
+"before and have some experience. For more instructions on how to use the\n"
+"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
+"the ``Starter Guide''."
msgstr ""
-
-#: ../../help.pm_.c:598
-msgid ""
-"The first step is to choose your preferred language.\n"
+"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"
+"bütün yeri doldurmuş isə, o zaman diskinizdə Linuks Mandrake üçün\n"
+"yer açmalısınız. Ona görə də diski bölmələndirməlisiniz.\n"
+"Bölmələndirmə əsasən diskinizdə məntiqi sürücülər yaratmaqdan ibarətdir.\n"
"\n"
-"Please choose your preferred language for installation and system usage.\n"
+"Ümumiyyətlə bölmələndirmənin təsiri geri dönülməzdir.Ona görə də\n"
+"bu iЕџ Г§ox gЙ™rgin vЙ™ yorucudur. ЖЏgЙ™r Г¶zГјnГјzЙ™ inanmД±rsД±nД±z isЙ™ bu\n"
+"sehirbaz sizə yardım edər. Başlamadan əvvəl xahiş edirik əl kitabçanıza\n"
+"baxın. Və bu iş üçün bir az vaxt ayırın.\n"
"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you host users from Spain on your machine,\n"
-"select English as the main language in the tree view and in the Advanced\n"
-"section, click on the box corresponding to \"Spanish|Spain\".\n"
"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue.\n"
+"Sizə ən az 2 bölmə lazımdır. Biri sistemin özünü köçürməsi üçün\n"
+"Digəri isə uydurma yaddaş (ya da digər adı ilə Swap) üçün.\n"
"\n"
-"To switch from one language to the other, you can launch the\n"
-"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
-"language, or as a simple user to only change that user's default language."
-msgstr ""
-
-#: ../../help.pm_.c:617
-msgid ""
-"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
-"it assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
"\n"
-"If you wish to specify a different type of mouse, select the appropriate\n"
-"type from the provided list.\n"
+"Əgər diskiniz onsuz da bölünmüş isə (əvvəlki sistemden ya da\n"
+"başqa bölmələndirmə vasitələri ilə hazırlanmış) quruluşda\n"
+"sadəcə olaraq o yerləri yükləmək üçün seçin.\n"
"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again.\n"
"\n"
-"Sometimes, wheel mouses are not automatically detected. You will need to\n"
-"manually select it in the list. Be sure to select the one corresponding to\n"
-"the correct port it is attached to. After you have pressed the \"OK\"\n"
-"button, a mouse image will be displayed. You then need to move the wheel of\n"
-"your mouse to activate it correctly. Then test that all buttons and\n"
-"movements are correct."
-msgstr ""
-
-#: ../../help.pm_.c:638
-#, fuzzy
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-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:642
-msgid ""
-"This is the most crucial decision in regards with the security of your\n"
-"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
-"system administrator and is the only one authorized to make updates, add\n"
-"users, change the overall system configuration, and so on. In short,\n"
-"\"root\" can do everything! That is why you must choose a password that is\n"
-"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
-"see, you can choose not to enter a password, but we strongly advise you\n"
-"against this if only for one reason: do not think that because you booted\n"
-"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
-"\"root\" can overcome all limitations and unintentionally erase all data on\n"
-"partitions by carelessly accessing the partitions themselves, it is\n"
-"important for it to be difficult to become \"root\".\n"
+"Əgər disk bölünməmiş ise, yuxarıdakı sehirbazdan istifadə edə bilərsiniz.\n"
+"Sisteminizin quruluЕџundan asД±lД± olaraq mГјxtЙ™lif imkanlarД±nД±z var:\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"
-"easy to compromise a system.\n"
+"* Bütün diski sil: Linuks Mandrake qurmaq üçün bütün diskinizin\n"
+" üzərindəki bölmələri silər. Burada diqqətli olun.\n"
+" SildiklЙ™riniz Й™sla geri gЙ™lmЙ™z.\n"
"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
+"* Windows bölməsindəki sahəni istifadə et: Sisteminizdə\n"
+" Microsoft Windows qurulu isЙ™ ve bГјtГјn diski Й™hatЙ™ edir isЙ™\n"
+" Linuks Mandrake üçün bir yer ayırmalısınız. Bunun üçün\n"
+" ya bГјtГјn diski silmЙ™lisiniz (\"BГјtГјn diski sil\" bax ya da\n"
+" \" Usta modu\" tövsiyələri) ya da yenidən bölmələndirməlisiniz.Bu iş heç "
+"bir mЙ™'lumat itkisi olmadan da edilЙ™ bilЙ™r.Bunun baЕџqa adД±\n"
+" eyni kompГјterdЙ™ hЙ™m Linuks Mandrake hЙ™m dЙ™ Windows qurulu olmasД±dД±r.\n"
"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one as \"authentication\". If you have no\n"
-"clue, ask your network administrator.\n"
+"t Bu seçkiyə getmədən əvvəl bir şeyi başa düşməlisiniz ki, yenidən "
+"bölmələndirmə ilə sizin Windows bölməsi kiçiləcəkdir.\n"
+" YЙ™'ni Windows altД±nda daha az disk sahЙ™sinЙ™ malik olacaqsД±nД±z.\n"
"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
-msgstr ""
+"\n"
+"* Usta modu: Əgər əllə diski bölmək istəsəniz, bu modu seçin. Diqqətli "
+"olun.\n"
+" Bu mod gГјГ§lГјdГјr amma bir o qЙ™dЙ™r dЙ™ tЙ™hlГјkЙ™lidir. DiskinizdЙ™ki bГјtГјn "
+"bilgiyi asandlД±qla itirЙ™ bilЙ™rsiniz.\n"
+" Təcrübəsiz isəniz bunu seçməyin."
-#: ../../help.pm_.c:678
+#: ../../help.pm:1
+#, c-format
msgid ""
-"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"if in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu);\n"
-"\n"
-" * \"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\n"
-"interface.\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
"\n"
-" * \"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"
-"another boot entry than the default one.\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved for the expert user."
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
-#: ../../help.pm_.c:718
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
-"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
-"installation step.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"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!"
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"LILO (Linuks Yükləyici) və Grub açılış sistem yükləyiciləridir: sistemi "
-"Linuks\n"
-"ya da kompüterinizdə olan başqa bir əməliyyatiyle aça bilərlər.\n"
-"ЖЏsasЙ™n bu digЙ™r Й™mЙ™liyyat sistemlЙ™ri doДџru bir ЕџЙ™kilde 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."
-#: ../../help.pm_.c:732
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
+"In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
msgstr ""
-"Linuksu açmaq üçün lazımi bilgilərin harada saxlanılacağına qərar verin.\n"
-"\n"
-"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../help.pm_.c:739
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Here, we select a printing system for your computer. Other OSes may offer\n"
-"you one, but Mandrake Linux offers two.\n"
-"\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 first 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"
+"Resolution\n"
"\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."
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor."
msgstr ""
-#: ../../help.pm_.c:759
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
-"have no SCSI hardware. If you are unsure, you can check the list of\n"
-"hardware detected in your machine by selecting \"See hardware info\" and\n"
-"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
-"button to return to the SCSI interface question.\n"
+"Monitor\n"
"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to manually provide options to the driver."
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own."
msgstr ""
-"DrakX PCI SCSI adapterleri axtarmaДџa cЙ™hd edЙ™cЙ™k. ЖЏgЙ™ DrakX SCSI\n"
-"taparsa vЙ™ hansД± sГјrГјcГј iЕџlЙ™dilЙ™cЙ™yini bilЙ™rsЙ™, her Еџey Г¶z Г¶zГјnЙ™\n"
-"qurulacaq.\n"
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
+"You will be presented the list of different parameters to change to get an\n"
+"optimal graphical display: Graphic Card\n"
"\n"
-"ЖЏgЙ™r sisteminizdЙ™ SCSI adapteri yoxsa, DrakXin tanД±mayacaДџД± bir\n"
-"ISA SCSI vЙ™ ya PCI SCSI adapteri var isЙ™, sizЙ™ sisteminizdЙ™ SCSI\n"
-"adapteri olub olmadД±ДџД± soruЕџulacaq.\n"
-"ЖЏgЙ™r SCSI adapteriniz yox isЙ™, \"Yox\" tД±qlayД±n. ЖЏgЙ™r \"Var\"Д± "
-"tД±qlayarsanД±z.\n"
-"qarşınıza sürücüləin siyahısı çıxacaq, oradan sizə uyanını seçərsiniz.\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs.\n"
"\n"
-"ЖЏgЙ™r Й™llЙ™ qurmaДџД± sЙ™Г§Й™rsЙ™niz, o zaman DrakX sizЙ™ adapterin xГјsusiyyЙ™tlЙ™rini\n"
-"soruЕџacaq. Д°mkan verin ki, DrakX sЙ™rbЙ™stcЙ™ Г¶zГј xГјsusiyyЙ™tlЙ™ri tapsД±n.\n"
-"Г‡oxunda bu iЕџЙ™ yarayД±r.\n"
"\n"
"\n"
-"Əgər istəmirsəniz isə, o zaman adapter üçün xüsusiyyətləri özünüz\n"
-"göstərməlisiniz. Bunun üçün İstifadəçinin Əl Kitabçasına\n"
-"(başlıq 3, \"Avadanlığınız üçün kollektiv mə'lumat) bölməsinə\n"
-"baxın. Ya da avadanlığınızın əl kitabçasından və ya\n"
-"veb sЙ™hifЙ™sindЙ™n (ЖЏgЙ™r internetЙ™ Г§Д±xД±ЕџД±nД±z var isЙ™)\n"
-"ya da Microsoft Windowsdan (ЖЏgЙ™r sisteminizdЙ™ qurulu isЙ™)\n"
-"mЙ™'lumat alД±n."
-
-#: ../../help.pm_.c:781
-#, fuzzy
-msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
+"Monitor\n"
"\n"
-"For other OSes, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own.\n"
"\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\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"
+"Resolution\n"
"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor.\n"
"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"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\n"
-"hda=autotune\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"Test\n"
"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"Yes\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a filesystem check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
+"Options\n"
"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
+" You can here choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"No\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-"Burada yaboot üçün həm başqa əməliyyat sistemləri, həm alternativ "
-"kernellЙ™r,\n"
-" ya da təcili yardım açılış əksləri əlavə edə bilərsiniz.\n"
-"\n"
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Graphic Card\n"
"\n"
-"Başqa OSlər üçün girişin mənası ad və kök çığırından ibarətdir.\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
+"system clock and the hardware clock are in the same timezone. This is\n"
+"useful when the machine also hosts another operating system like Windows.\n"
"\n"
-"Linuks üçün mühtəməl girişlər bunlar ola bilər: \n"
+"The \"Automatic time synchronization \" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. For this\n"
+"feature to work, you must have a working Internet connection. It is best to\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server that can used by other machines on your local network."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"This step is used to choose which services you wish to start at boot time.\n"
"\n"
+"DrakX will list all the services available on the current installation.\n"
+"Review each one carefully and uncheck those which are not always needed at\n"
+"boot time.\n"
"\n"
-" - Ad: Bu sadəcə olaraq yaboot üçün açılacaq sistemi timsal edən bir "
-"addД±r.\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you are not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services that you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
+msgstr ""
+"İndi, açılışda avtomatik olaraq başlamasını istədiyiniz xidmətləri \n"
+"seçə bilərsiniz. Siçan bir maddənin üzərina gəldiyində o xidmətin rolunu "
+"açıqlayan\n"
+"kiçik bir baloncuq ortaya çıxacaqdır.\n"
"\n"
-" - Əks: Bu isə açılacaq çəkirdəyin, yə'ni kernelin adıdır. Çox vaxt bu "
-"vmlinux vЙ™ ya\n"
-"bunun variasiyalarД±dД±r.\n"
+"ЖЏgЙ™r kompГјterinizi bir verici olaraq istifadЙ™ edЙ™cЙ™ksЙ™niz bu addД±mda tam bir "
+"diqqЙ™t ayД±rmalД±sД±nД±z:\n"
+"mühtəməldir ki lazımi heç bir xidməti başlatmaq istəməzsiniz."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"You will now set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"Next\n"
+"->\". Mandrake Linux will attempt to autodetect network devices and modems.\n"
+"If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
+"also choose not to configure the network, or to do it later, in which case\n"
+"clicking the \"Cancel\" button will take you to the next step.\n"
"\n"
+"When configuring your network, the available connections options are:\n"
+"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
+"simple LAN connection (Ethernet).\n"
"\n"
-" - Kök: Linuks qurulumunun kök avadanlığı və ya '/'.\n"
+"We will not detail each configuration option - just make sure that you have\n"
+"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
+"from your Internet Service Provider or system administrator.\n"
"\n"
+"You can consult the ``Starter Guide'' chapter about Internet connections\n"
+"for details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
"\n"
-" \n"
-" - Əlavə: Apple avadanlıqlarında kernel əlavə seçənəkləri ilə sıxlıqla "
-"baЕџlanДџД±c\n"
-"video avadanlığı və ya sıx sıx xəta verən 2ci və 3cü siçan düymələri üçün "
-"emulyasiya\n"
-"imkanlarД± tanД±na bilir. MЙ™sЙ™lЙ™n bunlar \n"
-"bir neçə nümunədir:\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes are discovered after this version of Mandrake Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
"\n"
+"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
+"which appears whenever the installer automatically selects a package to\n"
+"resolve a dependency issue. Some packages have relationships between each\n"
+"other such that installation of a package requires that some other program\n"
+"is already installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
-"hda=autotune\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"It is now time to specify which programs you wish to install on your\n"
+"system. There are thousands of packages available for Mandrake Linux, and\n"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various containers, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' container installed.\n"
"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the applications that are in the workstation\n"
+"container.\n"
"\n"
-" \n"
-" - Initrd: Açılış avadanlığından əvvəl bə'zi açılış modullarını seçmək\n"
-"üçün işlədilir, ya da təcili yardım açılışlarında ramdisk əksini yükləmək "
-"imkanД± verir.\n"
+" * \"Development\": if plan on using your machine for programming, choose\n"
+"the appropriate packages from the container.\n"
"\n"
+" * \"Server\": if your machine is intended to be a server, select which of\n"
+"the more common services you wish to install on your machine.\n"
"\n"
-" - Initrd-size: Ana ramdisk böyüklüyü ümumiyyətlə 4096 baytdır. Əgər daha "
-"geniЕџ ramdisk bildirЙ™\n"
-"bilərsiniz isə bu seçənəyi işlədin.\n"
+" * \"Graphical Environment\": this is where you will choose your preferred\n"
+"graphical environment. At least one must be selected if you want to have a\n"
+"graphical interface available.\n"
"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-" - Oxuma-yazma: Normalda sistemin 'dirilmЙ™sindЙ™n' Й™vvЙ™l bЙ™'zi sД±naqlarД±n "
-"aparıla bilməsi üçün\n"
-"'root' fayl sistemi bu moda soxulur. Bu seçənəyi nəzərə almayabilərsiniz.\n"
+" * \"With X\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server.\n"
"\n"
-" - NoVideo: BЙ™lkЙ™ Apple video avadanlД±ДџД± problem Г§Д±xarda bilЙ™r.Onda bu "
-"seçənəklə\n"
-"sistemi 'novideo' modda təbii framebuffer dəstəyi ilə aça bilərsiniz.\n"
+" * \"Truly minimal install\": will install the absolute minimum number of\n"
+"packages necessary to get a working Linux system. With this installation\n"
+"you will only have a command line interface. The total size of this\n"
+"installation is 65 megabytes.\n"
"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
"\n"
-" - Əsas: Bu seçənəklə Linuks sistemi əsas əməliyyat sistemi halına gətirə "
-"bilЙ™rsiniz.\n"
-"Onda ENTER düyməsinə basmaqla Linuks sistemi açılacaqdır. Bu giriş ayrıca "
-"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
-"'*' iЕџarЙ™tilЙ™ iЕџД±qlandД±rД±lacaqdД±r."
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
+msgstr ""
-#: ../../help.pm_.c:828
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
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"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
+"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM so it will eject\n"
+"the current CD and ask you to insert the correct CD as required."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Here are Listed the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
-msgstr ""
-"Yaboot NewWorld MacIntosh avadalığı üçün açılış idarəcisidir. Ayrıca\n"
-"GNU/Linuks, MacOS, vЙ™ ya MacOSX sistemlЙ™rini kompГјterinizdЙ™ varsa, "
-"açacaqdır.\n"
-"Normalda, bu Й™mЙ™liyyat sistemlЙ™ri dГјzgГјn tapД±lД±b qurula bilirlЙ™r\n"
-"ЖЏgЙ™r belЙ™ olmazsa, bu ekrandan Й™llЙ™ lazД±mi qurДџularД± girЙ™ bilЙ™rsiniz.\n"
-"DГјzgГјn parametrlЙ™ri girib girmЙ™diyinizi yaxЕџД±ca bir yoxlayД±n.\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"Yaboot ana seçənəkləri:\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
+msgstr ""
+"Yuxarıda sürücünüzdə tapılan Linuks bölmələri sıralanıb\n"
+"Sehirbazın tövsiyələrinə uyun, onlar çox vaxt işə yarayır.\n"
+"Əgər bunu istəməsəniz en azından kök bölməsi (\"/\") seçməlisiniz\n"
+"Çox kiçik bölmə seçməyin. yoxsa çox proqram tə'minatı yükləyə bilməzsəniz.\n"
+"Əgər verilərinizi başqa bölmədə tutmaq istəyirsinizsə, ondabir de \"/home\" "
+"bölməsi də yaratmalısınız (birdən çox Linuks\n"
+"bölməniz var isə).\n"
"\n"
"\n"
-" - Başlanğıc İsmarıcı: Açılışdan əvvəl çıxan sadə bir ismarıc.\n"
+"Xəbəriniz olsun, hər bölmə aşağıdakı kimi sıralanıb: \"Ad\", \"Həcm\".\n"
"\n"
"\n"
-" - Açılış Avadanlığı: GNU/Linuksu hardan başlatmaq istədiyinizi bildirir."
-"ГњmumiyyЙ™tlЙ™ bu mЙ™'lumatД± daha Й™vvЙ™l \"bootstrap\" quraЕџdД±rД±lmasД± "
-"sД±rasД±ndabildirmiЕџ olacaqsД±nД±z.\n"
+"\"Ad\" belə kodlanıb: \"sürücü növü\", \"sürücü mömrəsi\",\n"
+"\"bölmə nömrəsi\" (məsələn \"hda1\").\n"
"\n"
"\n"
-" - Açıq Firmware Gecikməsi: LILOdan fərqli olaraq, yabootda iki dənə "
-"gecikmЙ™ vardД±r\n"
-"Birinci gecikmə saniyələrlə ölçülür və bu arada siz\n"
-"CD, OF açılışı, MacOS və ya Linuks arasında seçki aparmalısınız.\n"
+"\"Sürücü növü\" əgər sürücünüz IDE sürücüdürsə \"hd\"dirvə SCSI sürücü isə "
+"\"sd\"dir.\n"
"\n"
"\n"
-" - Kernel Açılış Vaxt Dolması: Bu vaxt dolması LILO açılış gecikməsinə "
-"uyДџun gЙ™lir. Linuksu\n"
-"seçdikdən sonra ana kernel parametri olaraq bu gecikmə 0.1 saniyə olaraq "
-"qurulu olacaqdД±r.\n"
+"\"Sürücü nömrəsi\" həmişə \"hd\" və ya \"sd\"dən sonrakı rəqəmdir.IDE "
+"sürücülər üçün:\n"
"\n"
+"*\"a\" yЙ™ni \"birinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
"\n"
-" - CD Açılışı Fəallaşsınmı?: Bu seçənəklə CDdən açılışı timsal edən 'C' "
-"xarakteri ilk açılışda çıxacaqdır.\n"
+"*\"b\" yəni \"birinci IDE idarəcisində kölə sürücü\",\n"
"\n"
+"*\"c\" yЙ™ni \"ikinci IDE idarЙ™cisindЙ™ ali sГјrГјcГј\",\n"
"\n"
-" - OF Açılışı Fəallaşsın?: Bu seçənəklə OFdən (Open Firmware) açılışını "
-"timsal edЙ™n 'N' xarakteri\n"
-"ilk açılışda çıxacaqdır.\n"
+"*\"d\" yəni \"ikinci IDE idarəcisində kölə sürücü\".\n"
"\n"
"\n"
-" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
-"göstərir."
+"SCSI sГјrГјcГјlЙ™rindЙ™ \"a\" nД±n mЙ™nasД± \"birinci sГјrГјcГј\",\n"
+"\"b\"nin mЙ™nasД± \"ikinci sГјrГјcГј\"dГјr vs..."
-#: ../../help.pm_.c:860
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may (or may not), see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the\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. Consult the correpsonding chapter of the ``Starter\n"
-"Guide'' for more information on how to setup a new printer. The interface\n"
-"presented there is similar to the one used at installation time;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it will be\n"
-"displayed here.\n"
+"GNU/Linux is a multi-user system, meaning each user can have their own\n"
+"preferences, their own files and so on. You can read the ``Starter Guide''\n"
+"to learn more about multi-user systems. But unlike \"root\", which is the\n"
+"system administrator, the users you add at this point will not be\n"
+"authorized to change anything except their own files and their own\n"
+"configuration, protecting the system from unintentional or malicious\n"
+"changes that impact the system as a whole. You will have to create at least\n"
+"one regular user for yourself -- this is the account which you should use\n"
+"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
+"to do anything and everything, it may also be very dangerous! A mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, the worst that will happen is that you will lose\n"
+"some information, but not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you typed in and copy it to the \"User name\" field, which is the name this\n"
+"user will enter to log onto the system. If you like, you may override the\n"
+"default and change the username. The next step is to enter a password. From\n"
+"a security point of view, a non-privileged (regular) user password is not\n"
+"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
+"making it blank or too simple: after all, your files could be the ones at\n"
+"risk.\n"
+"\n"
+"Once you click on \"Accept user\", you can add other users. Add a user for\n"
+"each one of your friends: your father or your sister, for example. Click\n"
+"\"Next ->\" when you have finished adding users.\n"
"\n"
-" * \"TV card\": if a TV card is detected on your system, it will be\n"
-"displayed here.\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
+"When you are finished adding all users, you will be asked to choose a user\n"
+"that can automatically log into the system when the computer boots up. If\n"
+"you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Next\n"
+"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
+"to use this feature?\" box."
msgstr ""
-#: ../../help.pm_.c:891
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
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!"
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
+"computer."
msgstr ""
-"Linuks Mandrakeni yükləmak üçün sürücüyü seçin.\n"
-"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
-#, fuzzy
-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"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../install2.pm:1
+#, c-format
+msgid "You must also format %s"
msgstr ""
-"Sürücüdəki bütün bilgiləri və bölmələri silmək üçün\n"
-"\"Oldu\" dГјymЙ™sinЙ™ basД±n. DiqqЙ™tli olun,\"Oldu\" dГјymЙ™sinЙ™ basdД±qdan sonra\n"
-"Windows bilgiləri də daxil olmaq üzərəbütün bölmə mə'lumatı geri dönməyəcək "
-"ЕџЙ™kildЙ™ silinЙ™cЙ™k.\n"
-"\n"
-"\n"
-"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
-"Й™mЙ™liyyatД± lЙ™Дџv edЙ™ bilЙ™rsiniz."
-#: ../../install2.pm_.c:111
+#: ../../install2.pm:1
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4071,21 +2784,74 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:167
+#: ../../install_any.pm:1
#, c-format
-msgid "You must also format %s"
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"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"
+
+#: ../../install_any.pm:1 ../../partition_table.pm:1
+#, c-format
+msgid "Error reading file %s"
+msgstr "%s faylД± oxunurkan xЙ™ta oldu"
+
+#: ../../install_any.pm:1
+#, c-format
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
+"defcfg=floppy''ilЙ™ baЕџladД±n."
+
+#: ../../install_any.pm:1
+#, c-format
+msgid "This floppy is not FAT formatted"
+msgstr "Bu floppi FAT ЕџЙ™klindЙ™ deyildir"
+
+#: ../../install_any.pm:1
+#, 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:1
+#, c-format
+msgid "Can't use broadcast with no NIS domain"
+msgstr "NД°S domeyni olmadan translasiya iЕџlЙ™dilЙ™ bilmЙ™z"
+
+#: ../../install_any.pm:1
+#, c-format
+msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
+msgstr ""
+
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
+#, c-format
+msgid "No"
+msgstr "Xeyr"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
#, c-format
+msgid "Yes"
+msgstr "BЙ™li"
+
+#: ../../install_any.pm:1
+#, fuzzy, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't have any known security\n"
-"issues, but some new could be found. In that case, you must make sure to "
-"upgrade\n"
-"as soon as possible.\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
@@ -4100,156 +2866,116 @@ msgstr ""
"\n"
"Bu vericilЙ™ri qurmaq istЙ™yirsiniz?\n"
-#: ../../install_any.pm_.c:441
-#, c-format
-msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
-msgstr ""
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System configuration"
+msgstr "QuraЕџdД±rma"
-#: ../../install_any.pm_.c:471
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NД°S domeyni olmadan translasiya iЕџlЙ™dilЙ™ bilmЙ™z"
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System installation"
+msgstr "SILO Qurulumu"
-#: ../../install_any.pm_.c:879
+#: ../../install_interactive.pm:1
#, 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"
+msgid "Bringing down the network"
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-#: ../../install_any.pm_.c:883
-msgid "This floppy is not FAT formatted"
-msgstr "Bu floppi FAT ЕџЙ™klindЙ™ deyildir"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing up the network"
+msgstr "ЕћЙ™bЙ™kЙ™ fЙ™allaЕџdД±rД±lД±r"
-#: ../../install_any.pm_.c:895
-msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
-msgstr ""
-"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
-"defcfg=floppy''ilЙ™ baЕџladД±n."
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Bölmə cədvəli növü: %s"
-#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Error reading file %s"
-msgstr "%s faylД± oxunurkan xЙ™ta oldu"
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_any.pm_.c:1040
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"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"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "I can't find any room for installing"
+msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../install_interactive.pm_.c:21
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
-"duyar.\n"
-"Bunun haqqД±nda %s dЙ™/a lazД±mi malumatlarД± tapa bilЙ™rsiniz"
+"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
+"Д°Еџinizi bitirdiyinizdЙ™ `w' ilЙ™ qeyd etmЙ™yi unutmayД±n"
-#: ../../install_interactive.pm_.c:56
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Bir root disk bölümüna ehtiyacınız var.\n"
-"Bunun üçün istər mövcud bir disk bölümü üzərina tıqlayın, \n"
-"ya da yeni birini baЕџdan yaradД±n. Sonra \"BaДџlama \n"
-"Nöqtəsi\"nə gəlin va burayı '/' olaraq dəyişdirin."
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use fdisk"
+msgstr "Fdisk istifadЙ™ et"
-#: ../../install_interactive.pm_.c:61
-msgid "You must have a swap partition"
-msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:62
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-"Bir swap sahЙ™niz yoxdur\n"
-"Davam edim?"
-
-#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
-#, 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
-msgid "Use free space"
-msgstr "BoЕџ sahЙ™ni istifadЙ™ et"
-
-#: ../../install_interactive.pm_.c:92
-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 partitions"
-msgstr "Var olan bölmələri işlədimmi"
-
-#: ../../install_interactive.pm_.c:102
-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
-msgid "Use the Windows partition for loopback"
-msgstr "Loopback üçün Windows bölməsini işlət"
-
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
+"%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:114
-msgid "Choose the sizes"
-msgstr "Böyüklüklərini seçin"
+#: ../../install_interactive.pm:1
+#, c-format
+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:115
-msgid "Root partition size in MB: "
-msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Erase entire disk"
+msgstr "BГјtГјn diski sil"
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Swap sahəsi böyüklüyü (Mb): "
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Remove Windows(TM)"
+msgstr "\"Windows\"u sil"
-#: ../../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:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to resize (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: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:1
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm:1
+#, c-format
msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi uclarД± hesaplanД±r"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
-"bu xЙ™ta oldu: %s"
+msgid "Resizing"
+msgstr "Böyüklüyü dəyişdirilir"
-#: ../../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:1
+#, c-format
+msgid "partition %s"
+msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:138
-#, fuzzy
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which size do you want to keep for Windows on"
+msgstr "HansД± sektora daЕџД±maq istЙ™yirsiniz?"
+
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
@@ -4268,320 +2994,160 @@ msgstr ""
"ArdД±ndan quruluma \n"
"davam edin. VerilЙ™rinizin yedЙ™yini almaДџД± da unutmayД±n!"
-#: ../../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:149
-#, c-format
-msgid "partition %s"
-msgstr "bölmə %s"
-
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm:1
#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-
-#: ../../install_interactive.pm_.c:171
msgid ""
-"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:177
-msgid "Erase entire disk"
-msgstr "BГјtГјn diski sil"
-
-#: ../../install_interactive.pm_.c:177
-msgid "Remove Windows(TM)"
-msgstr "\"Windows\"u sil"
-
-#: ../../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:183
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
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:191
-msgid "Custom disk partitioning"
-msgstr "Hazırkı disk bölmələndirməsi"
+"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
+"(defraq)"
-#: ../../install_interactive.pm_.c:195
-msgid "Use fdisk"
-msgstr "Fdisk istifadЙ™ et"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Computing the size of the Windows partition"
+msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
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: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:243
-msgid "I can't find any room for installing"
-msgstr "Artıq bölmə əlavə edilə bilməz"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
+"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
+"bu xЙ™ta oldu: %s"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Bölmə cədvəli növü: %s"
-
-#: ../../install_interactive.pm_.c:260
-msgid "Bringing up the network"
-msgstr "ЕћЙ™bЙ™kЙ™ fЙ™allaЕџdД±rД±lД±r"
-
-#: ../../install_interactive.pm_.c:265
-msgid "Bringing down the network"
-msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Bir xЙ™ta oldu, fЙ™qЙ™t necЙ™ dГјzЙ™ldilЙ™cЙ™yini bilmirЙ™m.\n"
-"Davam edin, riski sizЙ™ aitdir!"
+msgid "Which partition do you want to resize?"
+msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-#: ../../install_steps.pm_.c:211
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s bağlama nöqtəsini çoxalt"
+msgid "Use the free space on the Windows partition"
+msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_steps.pm_.c:380
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
-"BЙ™zi paketlЙ™r doДџru olaraq qurulumu bitirmЙ™di.\n"
-"cdrom sГјrГјcГјnГјz ya da cdromunuz dГјzgГјn iЕџlЙ™mir.\n"
-"ЖЏ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_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition 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_steps.pm_.c:450
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Welcome to %s"
-msgstr "%s SisteminЙ™ XoЕџgЙ™lmiЕџsiniz"
-
-#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
-msgid "No floppy drive available"
-msgstr "Disket sГјrГјcГј yoxdur"
+msgid "Swap partition size in MB: "
+msgstr "Swap sahəsi böyüklüyü (Mb): "
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "BaЕџlanДџД±c addД±mД± `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:146
-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 "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Sizin sisteminizin qaynaqlarД± Г§atД±ЕџmД±r. Qurulum Й™rzindЙ™ problem yaЕџaya "
-"bilЙ™rsiniz\n"
-"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
-"dЙ™CDROMdan baЕџlatdД±ДџД±nД±z zaman,\n"
-" 'F1'Й™ basД±n vЙ™ 'text' yazaraq enter'Й™ basД±n."
-
-#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
-msgid "Install Class"
-msgstr "Qurulum Sinifi"
-
-#: ../../install_steps_gtk.pm_.c:160
-#, 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:236 ../../install_steps_interactive.pm_.c:683
-msgid "Package Group Selection"
-msgstr "Paket Qrup Seçkisi"
-
-#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
-msgid "Individual package selection"
-msgstr "Fərdi paket seçkisi"
+msgid "Root partition size in MB: "
+msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Ümumi böyüklük: %d / %d Mb"
-
-#: ../../install_steps_gtk.pm_.c:334
-msgid "Bad package"
-msgstr "XЙ™talД± paket"
+msgid "Choose the sizes"
+msgstr "Böyüklüklərini seçin"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Name: %s\n"
-msgstr "Ad: %s\n"
+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_steps_gtk.pm_.c:336
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Version: %s\n"
-msgstr "BuraxД±lД±Еџ: %s\n"
+msgid "Use the Windows partition for loopback"
+msgstr "Loopback üçün Windows bölməsini işlət"
-#: ../../install_steps_gtk.pm_.c:337
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Böyüklüyü: %d KB\n"
+msgid "There is no existing partition to use"
+msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../install_steps_gtk.pm_.c:338
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Importance: %s\n"
-msgstr "ЖЏhЙ™miyyЙ™t: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:360
-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:365
-msgid "The following packages are going to be installed"
-msgstr "AЕџaДџД±dakД± paketlЙ™r qurulacaqdД±r"
-
-#: ../../install_steps_gtk.pm_.c:366
-msgid "The following packages are going to be removed"
-msgstr "AЕџaДџД±dakД± paketlЙ™r sistemdЙ™n silinЙ™cЙ™klЙ™r"
+msgid "Use existing partitions"
+msgstr "Var olan bölmələri işlədimmi"
-#: ../../install_steps_gtk.pm_.c:378
-msgid "You can't select/unselect this package"
-msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../install_steps_gtk.pm_.c:390
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Bu lazД±mlД± bir paketdir, sistemdЙ™n Г§Д±xardД±la bilmЙ™z"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use free space"
+msgstr "BoЕџ sahЙ™ni istifadЙ™ et"
-#: ../../install_steps_gtk.pm_.c:392
-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_interactive.pm:1 ../../install_steps.pm:1
+#, fuzzy, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Bir swap sahЙ™sinЙ™ ehtiyacД±nД±z var"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Bu paket yenilЙ™nmЙ™lidir\n"
-"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-
-#: ../../install_steps_gtk.pm_.c:398
-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:403
-msgid "Show automatically selected packages"
-msgstr "Avtomatik seçili paketləri göstər"
-
-#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#: ../../standalone/drakbackup_.c:4211
-msgid "Install"
-msgstr "Qurulum"
-
-#: ../../install_steps_gtk.pm_.c:407
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "DisketЙ™ qeyd et"
-
-#: ../../install_steps_gtk.pm_.c:408
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Paket seçkilərini saxla"
-
-#: ../../install_steps_gtk.pm_.c:413
-#, fuzzy
-msgid "Minimal install"
-msgstr "Qurulumdan Г§Д±x"
-
-#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
-msgid "Choose the packages you want to install"
-msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
-msgid "Installing"
-msgstr "Qurulur"
-
-#: ../../install_steps_gtk.pm_.c:450
-msgid "Estimating"
-msgstr "TЙ™xmini olaraq hesaplanД±r"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "Time remaining "
-msgstr "Qalan mГјddЙ™t"
-
-#: ../../install_steps_gtk.pm_.c:469
-msgid "Please wait, preparing installation..."
-msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
+"Bir swap sahЙ™niz yoxdur\n"
+"Davam edim?"
-#: ../../install_steps_gtk.pm_.c:551
+#: ../../install_interactive.pm:1
#, c-format
-msgid "%d packages"
-msgstr "%d paket"
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Bir root disk bölümüna ehtiyacınız var.\n"
+"Bunun üçün istər mövcud bir disk bölümü üzərina tıqlayın, \n"
+"ya da yeni birini baЕџdan yaradД±n. Sonra \"BaДџlama \n"
+"Nöqtəsi\"nə gəlin va burayı '/' olaraq dəyişdirin."
-#: ../../install_steps_gtk.pm_.c:556
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Installing package %s"
-msgstr "%s paketi qurulur"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-#: ../../standalone/drakautoinst_.c:197
-msgid "Accept"
-msgstr "QЙ™bul Et"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-msgid "Refuse"
-msgstr "RЙ™dd Et"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Sisteminizdaki bə'zi avadanlıqlar işləməsi üçün düzgün sürücülərə ehtiyac "
+"duyar.\n"
+"Bunun haqqД±nda %s dЙ™/a lazД±mi malumatlarД± tapa bilЙ™rsiniz"
-#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
-#, c-format
+#: ../../install_messages.pm:1
+#, fuzzy, c-format
msgid ""
-"Change your Cd-Rom!\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-"Cd-Romu dЙ™yiЕџdirin!\n"
"\n"
-"\"%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:608 ../../install_steps_gtk.pm_.c:612
-#: ../../install_steps_interactive.pm_.c:804
-#: ../../install_steps_interactive.pm_.c:808
-msgid "Go on anyway?"
-msgstr "YenЙ™ dЙ™ davam edЙ™k?"
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
-msgid "There was an error ordering packages:"
-msgstr "PaketlЙ™ri istЙ™rkЙ™n bir xЙ™ta oldu:"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
+msgstr ""
+"TЙ™briklЙ™r, quruluЕџ bitdi.\n"
+"Cdrom vЙ™ disketi Г§Д±xartdД±qtan sonra Enter'Й™ basaraq kompГјterinizi \n"
+"yenidЙ™n baЕџladД±n. Linuks Mandrake'nin bu buraxД±lД±ЕџД±ndakД± yamaqlar haqqД±nda \n"
+"mə'lumat almaq üçün http://www.mandrakelinux.com ünvanından Errata'ya "
+"baxД±n.\n"
+"Sisteminizin qurДџularД± haqqД±nda daha geniЕџ bilgiyi Linuks Mandrake \n"
+"Д°stifadЙ™Г§i KitabcД±ДџД±nda tapa bilЙ™rsiniz."
-#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
-msgid "There was an error installing packages:"
-msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:10
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"\n"
"Warning\n"
@@ -4641,20 +3207,8 @@ msgstr ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Bir xЙ™ta oldu"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "ЕћЙ™bЙ™kЙ™ni yenidЙ™n baЕџlatmaq istЙ™yirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:112
-msgid "License agreement"
-msgstr "Lisenziya sözləşməsi"
-
-#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"Introduction\n"
"\n"
@@ -4892,4699 +3446,9226 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:197
-msgid "Are you sure you refuse the licence?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:217
-#: ../../install_steps_interactive.pm_.c:995
-#: ../../standalone/keyboarddrake_.c:25
-msgid "Keyboard"
-msgstr "Klaviatura"
+#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "BaЕџlanДџД±c addД±mД± `%s'\n"
-#: ../../install_steps_interactive.pm_.c:218
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Klaviatura quruluşunu seçiniz."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Go on anyway?"
+msgstr "YenЙ™ dЙ™ davam edЙ™k?"
-#: ../../install_steps_interactive.pm_.c:219
-msgid "Here is the full list of keyboards available"
-msgstr "Bütün mövcud klaviaturaların siyahısı"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error installing packages:"
+msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
-#: ../../install_steps_interactive.pm_.c:237
-msgid "Which installation class do you want?"
-msgstr "HansД± qurulum sinifini istЙ™yirsiniz?"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "PaketlЙ™ri istЙ™rkЙ™n bir xЙ™ta oldu:"
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Install/Update"
-msgstr "Qurulum/GГјncЙ™llЙ™mЙ™"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+msgstr ""
+"Cd-Romu dЙ™yiЕџdirin!\n"
+"\n"
+"\"%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_interactive.pm_.c:241
-msgid "Is this an install or an update?"
-msgstr "Bu bir qurulum mu, yoxsa gГјncЙ™llЙ™mЙ™midir?"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Refuse"
+msgstr "RЙ™dd Et"
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Recommended"
-msgstr "Tövsiyə edilən"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Accept"
+msgstr "QЙ™bul Et"
-#: ../../install_steps_interactive.pm_.c:253
-#: ../../install_steps_interactive.pm_.c:256
-msgid "Expert"
-msgstr "Usta"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Installing package %s"
+msgstr "%s paketi qurulur"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade"
-msgstr "GГјncЙ™llЙ™mЙ™"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "%d packages"
+msgstr "%d paket"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Paket seçkilərini saxla"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "No details"
+msgstr "ЖЏtraflД±"
-#: ../../install_steps_interactive.pm_.c:282
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Xahiş edirik siçanınızın növünü seçin."
+#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Details"
+msgstr "ЖЏtraflД±"
-#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
-msgid "Mouse Port"
-msgstr "Siçan Qapısı"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Please wait, preparing installation..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
-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_gtk.pm:1
+#, c-format
+msgid "Time remaining "
+msgstr "Qalan mГјddЙ™t"
-#: ../../install_steps_interactive.pm_.c:297
-msgid "Buttons emulation"
-msgstr "DГјymЙ™ emulyasiyasД±"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Estimating"
+msgstr "TЙ™xmini olaraq hesaplanД±r"
-#: ../../install_steps_interactive.pm_.c:299
-msgid "Button 2 Emulation"
-msgstr "DГјymЙ™ 2 emulyasiyasД±"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing"
+msgstr "Qurulur"
-#: ../../install_steps_interactive.pm_.c:300
-msgid "Button 3 Emulation"
-msgstr "DГјymЙ™ 3 emulyasiyasД±"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kartlar qurulur..."
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "Qurulumdan Г§Д±x"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Updating package selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "Configuring IDE"
-msgstr "IDE qapД±larД± qurulur"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Load/Save on floppy"
+msgstr "DisketЙ™ qeyd et"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "IDE"
-msgstr "IDE"
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "<- Previous"
+msgstr "<- ЖЏvvЙ™lki"
-#: ../../install_steps_interactive.pm_.c:345
-msgid "No partition available"
-msgstr "uyğun bölmə tapılmadı"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Install"
+msgstr "Qurulum"
-#: ../../install_steps_interactive.pm_.c:348
-msgid "Scanning partitions to find mount points"
-msgstr "Bağlama nöqtələri üçün bölmələr daranır"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_interactive.pm_.c:356
-msgid "Choose the mount points"
-msgstr "Bağlama nöqtələrini seçin"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Bu paketi sistemdЙ™n Г§Д±xarda bilmЙ™zsiniz. YenilЙ™nmЙ™lidir"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_gtk.pm:1
+#, c-format
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"
+"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_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+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:1
+#, c-format
+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_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Kök (root) Bölməsi"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't select/unselect this package"
+msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "AЕџaДџД±dakД± paketlЙ™r sistemdЙ™n silinЙ™cЙ™klЙ™r"
-#: ../../install_steps_interactive.pm_.c:411
-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_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "AЕџaДџД±dakД± paketlЙ™r qurulacaqdД±r"
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "XЙ™talД± bloklar sД±nansД±nmД±?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Importance: %s\n"
+msgstr "ЖЏhЙ™miyyЙ™t: %s\n"
-#: ../../install_steps_interactive.pm_.c:463
-msgid "Formatting partitions"
-msgstr "Bölmələr şəkilləndirilir"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Böyüklüyü: %d KB\n"
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "%s faylД± yaradД±lД±r vЙ™ ЕџЙ™killЙ™ndirilir"
+msgid "Version: %s\n"
+msgstr "BuraxД±lД±Еџ: %s\n"
-#: ../../install_steps_interactive.pm_.c:470
+#: ../../install_steps_gtk.pm:1
#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
+msgid "Name: %s\n"
+msgstr "Ad: %s\n"
-#: ../../install_steps_interactive.pm_.c:472
-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_gtk.pm:1
+#, c-format
+msgid "Bad package"
+msgstr "XЙ™talД± paket"
-#: ../../install_steps_interactive.pm_.c:479
-#, fuzzy
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Mövcud olan paketlər axtarılır."
+#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Other"
+msgstr "DigЙ™r"
-#: ../../install_steps_interactive.pm_.c:480
-msgid "Looking for available packages..."
-msgstr "Mövcud olan paketlər axtarılır."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_interactive.pm_.c:483
-#, fuzzy
-msgid "Looking at packages already installed..."
-msgstr "Bu paketi sistemdЙ™n Г§Д±xarda bilmЙ™zsД±nД±z. ArtД±q qurulmuЕџdur."
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Next ->"
+msgstr "SonrakД± ->"
-#: ../../install_steps_interactive.pm_.c:487
-msgid "Finding packages to upgrade..."
-msgstr "GГјncЙ™llЙ™nЙ™cЙ™k paketlar tapД±lД±r"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Individual package selection"
+msgstr "Fərdi paket seçkisi"
+
+#: ../../install_steps_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Help"
+msgstr "/_YardД±m"
-#: ../../install_steps_interactive.pm_.c:505
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"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)"
+msgid "Package Group Selection"
+msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_gtk.pm:1
+#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"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 ""
+"Sizin sisteminizin qaynaqlarД± Г§atД±ЕџmД±r. Qurulum Й™rzindЙ™ problem yaЕџaya "
+"bilЙ™rsiniz\n"
+"Bu baş verərsə mətn aracılığı ilə qurulumu sınamalısınız. Bunun üçün "
+"dЙ™CDROMdan baЕџlatdД±ДџД±nД±z zaman,\n"
+" 'F1'Й™ basД±n vЙ™ 'text' yazaraq enter'Й™ basД±n."
-#: ../../install_steps_interactive.pm_.c:543
-#, fuzzy
-msgid "Load from floppy"
-msgstr "DisketdЙ™n geri Г§aДџД±r"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save packages selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Save on floppy"
-msgstr "DisketЙ™ qeyd et"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automated"
+msgstr "AvtomatlaЕџdД±rД±lmД±Еџ"
-#: ../../install_steps_interactive.pm_.c:547
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "DisketdЙ™n geri Г§aДџД±r"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Replay"
+msgstr "TЙ™krarla"
-#: ../../install_steps_interactive.pm_.c:547
-#, fuzzy
-msgid "Package selection"
-msgstr "Paket Qrup Seçkisi"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Avtomatik qurulum disketi hazırlanması seçilərsə,\n"
+"bГјtГјn sabit disk mЙ™'lumatД± daxil edilЙ™cЙ™kdir!!\n"
+"(yə'ni başqa sistemi də qura bilmək üçün).\n"
+"\n"
+"Bu qurulumu takrar etmЙ™k istЙ™yЙ™ bilЙ™rsiniz axД±.\n"
-#: ../../install_steps_interactive.pm_.c:552
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:634
-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:1
+#, fuzzy, c-format
+msgid "Reboot"
+msgstr "Kök"
-#: ../../install_steps_interactive.pm_.c:649
-msgid "Type of install"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
+"Bə'zi bölmələr bitdi.\n"
+"\n"
+"HЙ™qiqЙ™tЙ™n dЙ™ Г§Д±xmaq istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:650
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#, 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:1
+#, c-format
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
msgstr ""
+"Siz Open Fİrmware açılış avadanlığınızı açılış yükləyicisini\n"
+"fəallaşdırmaq üçün dəyişdirməli ola bilərsiniz. Əmr-Seçənək-O-F düymələrini\n"
+" yenidЙ™n baЕџlarkЙ™n basД±n vЙ™ bunlarД± girin:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" 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:653
-msgid "With X"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:655
-msgid "With basic documentation (recommended!)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Installing bootloader"
+msgstr "Sistem yГјklЙ™yicini qur"
-#: ../../install_steps_interactive.pm_.c:656
-msgid "Truly minimal install (especially no urpmi)"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
+"aboot qurulumunda xata, \n"
+"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:741
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
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."
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
msgstr ""
-"AЕџaДџД±dakД± siyahД±dakД± bГјtГјn CD'lЙ™rЙ™ sahib isЙ™niz, OLDU'ya basД±n.\n"
-"CD'lərin heç birinə sahib deyilsəniz, İMTİNA ET'ə basın.\n"
-"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:746
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" adlД± Cd-Rom"
-
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Preparing installation"
-msgstr "Qurulum hazД±rlanД±r"
+msgid "Preparing bootloader..."
+msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
+msgid "Domain Admin Password"
msgstr ""
-"%s paketi qurulur\n"
-"%d%%"
-#: ../../install_steps_interactive.pm_.c:822
-msgid "Post-install configuration"
-msgstr "Qurulum sonrasД± qurДџular"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Domain Admin User Name"
+msgstr "SahЙ™(domain) adД±"
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
+msgid "Windows Domain"
+msgstr "NIS sahЙ™si"
-#: ../../install_steps_interactive.pm_.c:834
+#: ../../install_steps_interactive.pm:1
#, 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"
+msgid "Authentication Windows Domain"
+msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:861
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"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"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:876
-#, fuzzy
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Server"
+msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:881
-msgid "Choose a mirror from which to get the packages"
-msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Domain"
+msgstr "NIS sahЙ™si"
-#: ../../install_steps_interactive.pm_.c:890
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication NIS"
+msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:918
-msgid "Which is your timezone?"
-msgstr "Sisteminiz hansД± mЙ™qsЙ™dlЙ™ istifadЙ™ edilЙ™cЙ™k?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "NIS"
+msgstr "NIS istifadЙ™ et"
-#: ../../install_steps_interactive.pm_.c:923
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "LDAP Server"
+msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:924
-msgid "Automatic time synchronization (using NTP)"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS Verici"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication LDAP"
+msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:965
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:966
-msgid "No printer"
-msgstr "Г‡ap Edicisiz"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Local files"
+msgstr "Yerli Г‡ap Edici"
-#: ../../install_steps_interactive.pm_.c:982
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "BaЕџqa var?"
+#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#, c-format
+msgid "Authentication"
+msgstr "TanД±tma"
-#: ../../install_steps_interactive.pm_.c:984
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:1
+#, c-format
+msgid "No password"
+msgstr "Parolsuz"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Set root password"
+msgstr "Root parolunu qur"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:986
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "MГјndЙ™ricat"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, fuzzy, c-format
+msgid "Services"
+msgstr "avadanlД±q"
-#: ../../install_steps_interactive.pm_.c:994
-msgid "Mouse"
-msgstr "Siçan"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "System"
+msgstr "Sistem modu"
-#: ../../install_steps_interactive.pm_.c:996
-msgid "Timezone"
-msgstr "Vaxt Dilimi"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Bootloader"
+msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../install_steps_interactive.pm_.c:997
-#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
-msgid "Printer"
-msgstr "Г‡ap Edici"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Boot"
+msgstr "Kök"
-#: ../../install_steps_interactive.pm_.c:999
-msgid "ISDN card"
-msgstr "ISDN kartД±"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "disabled"
+msgstr "passivlЙ™Еџdir"
-#: ../../install_steps_interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:1009
-msgid "Sound card"
-msgstr "SЙ™s kartД±"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "activated"
+msgstr "FЙ™al"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Firewall"
+msgstr "Verici, Firewall/Ruter"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Security"
+msgstr "TЙ™hlГјkЙ™sizlik"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Security Level"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "yenidЙ™n quraЕџdД±r"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Network"
+msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
-#: ../../install_steps_interactive.pm_.c:1012
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "X ilə Açılış"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "TV card"
msgstr "TV kartД±"
-#: ../../install_steps_interactive.pm_.c:1055
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1084
-msgid "LDAP"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1093
-#, fuzzy
-msgid "NIS"
-msgstr "NIS istifadЙ™ et"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1057
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1107
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS sahЙ™si"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "BaЕџqa var?"
-#: ../../install_steps_interactive.pm_.c:1058
-#: ../../install_steps_interactive.pm_.c:1080
-#, fuzzy
-msgid "Local files"
-msgstr "Yerli Г‡ap Edici"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Sound card"
+msgstr "SЙ™s kartД±"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Root parolunu qur"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Remote CUPS server"
+msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1069
-msgid "No password"
-msgstr "Parolsuz"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No printer"
+msgstr "Г‡ap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-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)"
+msgid "Printer"
+msgstr "Г‡ap Edici"
-#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
-#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
-msgid "Authentication"
-msgstr "TanД±tma"
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#, c-format
+msgid "Mouse"
+msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1088
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "TanД±tma"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Timezone"
+msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1089
-msgid "LDAP Base dn"
+#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Keyboard"
+msgstr "Klaviatura"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Summary"
+msgstr "MГјndЙ™ricat"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "NTP Server"
+msgstr "NIS Verici"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#, fuzzy
-msgid "LDAP Server"
-msgstr "Verici"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Hardware clock set to GMT"
+msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:1096
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "NIS"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Sisteminiz hansД± mЙ™qsЙ™dlЙ™ istifadЙ™ edilЙ™cЙ™k?"
-#: ../../install_steps_interactive.pm_.c:1097
-msgid "NIS Domain"
-msgstr "NIS sahЙ™si"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "NIS Server"
-msgstr "NIS Verici"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "ЖЏks ГјnvanД±na baДџlantД± qurulur"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\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:1106
-#, fuzzy
-msgid "Authentication Windows Domain"
-msgstr "TanД±tma"
+#: ../../install_steps_interactive.pm:1
+#, 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:1108
-#, fuzzy
-msgid "Domain Admin User Name"
-msgstr "SahЙ™(domain) adД±"
+#: ../../install_steps_interactive.pm:1
+#, 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:1109
-msgid "Domain Admin Password"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Post-install configuration"
+msgstr "Qurulum sonrasД± qurДџular"
-#: ../../install_steps_interactive.pm_.c:1144
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
+"Installing package %s\n"
+"%d%%"
msgstr ""
-"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
-"lГјzГјm\n"
-"olmadan açılmasına imkan verər. Əgə sisteminizə lilo (ya da grub) "
-"qurmayacaqsanД±z,\n"
-"ya da baЕџqa bir Й™mЙ™liyyat sistemi liloyu silЙ™rsa ya da lilo "
-"avadanlД±ДџД±nД±zlaiЕџlЙ™mЙ™zsЙ™\n"
-"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
-"rЙ™smini\n"
-"istifadЙ™ edЙ™rЙ™k dЙ™ bu disket yaradД±la bilЙ™r.\n"
-"Açılış disketi yaratmaq istəyirsiniz?\n"
-"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyə disket "
-"yerlЙ™Еџdirin\n"
-"vЙ™ \"OLDU\" basД±n."
-
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "First floppy drive"
-msgstr "Д°lk disket sГјrГјcГј"
+"%s paketi qurulur\n"
+"%d%%"
-#: ../../install_steps_interactive.pm_.c:1161
-msgid "Second floppy drive"
-msgstr "Д°kinci disket sГјrГјcГј"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing installation"
+msgstr "Qurulum hazД±rlanД±r"
-#: ../../install_steps_interactive.pm_.c:1162
-#: ../../printer/printerdrake.pm_.c:2397
-msgid "Skip"
-msgstr "NЙ™zЙ™rЙ™ Alma"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "\"%s\" adlД± Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:1167
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
+"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 ""
+"AЕџaДџД±dakД± siyahД±dakД± bГјtГјn CD'lЙ™rЙ™ sahib isЙ™niz, OLDU'ya basД±n.\n"
+"CD'lərin heç birinə sahib deyilsəniz, İMTİNA ET'ə basın.\n"
+"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:1
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With basic documentation (recommended!)"
msgstr ""
-"Xüsusi bir açılış disketi, Linuks sisteminizin normal bir sistem yükləyiciyə "
-"lГјzГјm\n"
-"olmadan açılmasına imkan verər. Əgə sisteminizə lilo (ya da grub) "
-"qurmayacaqsanД±z,\n"
-"ya da baЕџqa bir Й™mЙ™liyyat sistemi liloyu silЙ™rsa ya da lilo "
-"avadanlД±ДџД±nД±zlaiЕџlЙ™mЙ™zsЙ™\n"
-"bu disket sizə yardımçi olacaqdır. Sonradan Mandrake qurtarma disketi "
-"rЙ™smini\n"
-"istifadЙ™ edЙ™rЙ™k dЙ™ bu disket yaradД±la bilЙ™r.\n"
-"Açılış disketi yaratmaq istəyirsiniz?\n"
-"Açılış disketi yaratmaq istəyirsinizsə, birinci disket sürücüyədisklet "
-"yerlЙ™Еџdirin\n"
-"vЙ™ \"OLDU\" basД±n.\n"
-"%s"
-#: ../../install_steps_interactive.pm_.c:1173
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With X"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Sorry, no floppy drive available"
-msgstr "BaДџД±ЕџlayД±n, disket sГјrГјcГј yoxdur"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Type of install"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1185
-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:1
+#, c-format
+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:1189
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Insert a floppy in %s"
+msgid "Insert a floppy containing package selection"
msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../install_steps_interactive.pm_.c:1192
-msgid "Creating bootdisk..."
-msgstr "Açılış disketi yaradılır"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Loading from floppy"
+msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../install_steps_interactive.pm_.c:1199
-msgid "Preparing bootloader..."
-msgstr "Açılış yükləyici hazırlanır"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Package selection"
+msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save on floppy"
+msgstr "DisketЙ™ qeyd et"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Load from floppy"
+msgstr "DisketdЙ™n geri Г§aДџД±r"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
+"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:1216
-msgid "Do you want to use aboot?"
-msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-"aboot qurulumunda xata, \n"
-"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
+"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:1226
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Sistem yГјklЙ™yicini qur"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "GГјncЙ™llЙ™nЙ™cЙ™k paketlar tapД±lД±r"
-#: ../../install_steps_interactive.pm_.c:1232
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "Bu paketi sistemdЙ™n Г§Д±xarda bilmЙ™zsД±nД±z. ArtД±q qurulmuЕџdur."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:1240
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"Siz Open Fİrmware açılış avadanlığınızı açılış yükləyicisini\n"
-"fəallaşdırmaq üçün dəyişdirməli ola bilərsiniz. Əmr-Seçənək-O-F düymələrini\n"
-" yenidЙ™n baЕџlarkЙ™n basД±n vЙ™ bunlarД± girin:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" 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:1274
-#: ../../standalone/drakautoinst_.c:76
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "%s sГјrГјcГјsГјnЙ™ boЕџ bir disket yerlЙ™Еџdirin"
+msgid "Check bad blocks?"
+msgstr "XЙ™talД± bloklar sД±nansД±nmД±?"
-#: ../../install_steps_interactive.pm_.c:1278
-msgid "Creating auto install floppy..."
-msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:1289
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"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 ""
-"Bə'zi bölmələr bitdi.\n"
-"\n"
-"HЙ™qiqЙ™tЙ™n dЙ™ Г§Д±xmaq istЙ™yirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1300
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the mount points"
+msgstr "Bağlama nöqtələrini seçin"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:1
+#, c-format
+msgid "No partition available"
+msgstr "uyğun bölmə tapılmadı"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring IDE"
+msgstr "IDE qapД±larД± qurulur"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA kartlar qurulur..."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 3 Emulation"
+msgstr "DГјymЙ™ 3 emulyasiyasД±"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 2 Emulation"
+msgstr "DГјymЙ™ 2 emulyasiyasД±"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Buttons emulation"
+msgstr "DГјymЙ™ emulyasiyasД±"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose 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:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Mouse Port"
+msgstr "Siçan Qapısı"
+
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Please choose your type of mouse."
+msgstr "Xahiş edirik siçanınızın növünü seçin."
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade"
+msgstr "GГјncЙ™llЙ™mЙ™"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "GГјncЙ™llЙ™mЙ™"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Bu bir qurulum mu, yoxsa gГјncЙ™llЙ™mЙ™midir?"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Qurulum/GГјncЙ™llЙ™mЙ™"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Here is the full list of keyboards available"
+msgstr "Bütün mövcud klaviaturaların siyahısı"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Klaviatura quruluşunu seçiniz."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "License agreement"
+msgstr "Lisenziya sözləşməsi"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "default:LTR"
+msgstr "Й™sas"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "An error occurred"
+msgstr "Bir xЙ™ta oldu"
+
+#: ../../install_steps_newt.pm:1
+#, c-format
msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"TЙ™briklЙ™r, quruluЕџ bitdi.\n"
-"Cdrom vЙ™ disketi Г§Д±xartdД±qtan sonra Enter'Й™ basaraq kompГјterinizi \n"
-"yenidЙ™n baЕџladД±n. Linuks Mandrake'nin bu buraxД±lД±ЕџД±ndakД± yamaqlar haqqД±nda \n"
-"mə'lumat almaq üçün http://www.mandrakelinux.com ünvanından Errata'ya "
-"baxД±n.\n"
-"Sisteminizin qurДџularД± haqqД±nda daha geniЕџ bilgiyi Linuks Mandrake \n"
-"Д°stifadЙ™Г§i KitabcД±ДџД±nda tapa bilЙ™rsiniz."
+" <Tab>/<Alt-Tab> irЙ™li/geri | <BoЕџluq> iЕџarЙ™tlЙ™ | <F12> sonrakД± ekran"
+
+#: ../../install_steps_newt.pm:1
+#, c-format
+msgid "Mandrake Linux Installation %s"
+msgstr "Linuks-Mandrake Qurulumu %s"
+
+#: ../../install_steps.pm:1
+#, c-format
+msgid "No floppy drive available"
+msgstr "Disket sГјrГјcГј yoxdur"
+
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Welcome to %s"
+msgstr "%s SisteminЙ™ XoЕџgЙ™lmiЕџsiniz"
-#: ../../install_steps_interactive.pm_.c:1313
-msgid "http://www.mandrakelinux.com/en/90errata.php3"
+#: ../../install_steps.pm:1
+#, c-format
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
+"\"\n"
msgstr ""
+"BЙ™zi paketlЙ™r doДџru olaraq qurulumu bitirmЙ™di.\n"
+"cdrom sГјrГјcГјnГјz ya da cdromunuz dГјzgГјn iЕџlЙ™mir.\n"
+"ЖЏ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_interactive.pm_.c:1318
-msgid "Generate auto install floppy"
-msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps_interactive.pm_.c:1320
+#: ../../install_steps.pm:1
+#, c-format
msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Avtomatik qurulum disketi hazırlanması seçilərsə,\n"
-"bГјtГјn sabit disk mЙ™'lumatД± daxil edilЙ™cЙ™kdir!!\n"
-"(yə'ni başqa sistemi də qura bilmək üçün).\n"
-"\n"
-"Bu qurulumu takrar etmЙ™k istЙ™yЙ™ bilЙ™rsiniz axД±.\n"
+"Bir xЙ™ta oldu, fЙ™qЙ™t necЙ™ dГјzЙ™ldilЙ™cЙ™yini bilmirЙ™m.\n"
+"Davam edin, riski sizЙ™ aitdir!"
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Automated"
-msgstr "AvtomatlaЕџdД±rД±lmД±Еџ"
+#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Replay"
-msgstr "TЙ™krarla"
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
+#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
+#, c-format
+msgid "Ok"
+msgstr "Oldu"
-#: ../../install_steps_interactive.pm_.c:1328
-msgid "Save packages selection"
-msgstr "Paket seçkilərini saxla"
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive/newt.pm:1
+#, c-format
+msgid "Finish"
+msgstr "Qurtar"
-#: ../../install_steps_newt.pm_.c:20
+#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Linuks-Mandrake Qurulumu %s"
+msgid "Basic"
+msgstr ""
-#. -PO This string must fit in a 80-char wide text screen
-#: ../../install_steps_newt.pm_.c:33
+#: ../../interactive.pm:1
+#, c-format
+msgid "Advanced"
+msgstr "ЖЏtraflД±"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, fuzzy, c-format
+msgid "Remove"
+msgstr "Uzaq Г‡ap Edici"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, c-format
+msgid "Modify"
+msgstr "TЙ™kmillЙ™Еџdir"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "Add"
+msgstr "ЖЏlavЙ™ et"
+
+#: ../../interactive.pm:1
+#, fuzzy, c-format
+msgid "Choose a file"
+msgstr "Monitorunuzu seçin"
+
+#: ../../keyboard.pm:1
+#, c-format
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-" <Tab>/<Alt-Tab> irЙ™li/geri | <BoЕџluq> iЕџarЙ™tlЙ™ | <F12> sonrakД± ekran"
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu Й™ksikdir"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Left \"Windows\" key"
msgstr ""
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Monitorunuzu seçin"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../interactive.pm_.c:318
-msgid "Advanced"
-msgstr "ЖЏtraflД±"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Alt and Shift keys simultaneously"
+msgstr ""
-#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
-msgid "Basic"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
-#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
-msgid "<- Previous"
-msgstr "<- ЖЏvvЙ™lki"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "CapsLock key"
+msgstr ""
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
-#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
-#, fuzzy
-msgid "Next"
-msgstr "SonrakД± ->"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
-msgid "Bad choice, try again\n"
-msgstr "XЙ™talД± tЙ™rcih, tЙ™krar sД±nayД±n\n"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
+#: ../../keyboard.pm:1
#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Seçkiniz? (əsas %s) "
+msgid "Right Alt key"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:54
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Yugoslavian (latin)"
+msgstr "Yugoslavca (latД±n/kiril)"
+
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vyetnam dili \"numeric row\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard (international)"
+msgstr "Amerikan (US) klaviaturasД± (beynЙ™lmilЙ™l)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard"
+msgstr "Amerikan (US) klaviaturasД±"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "UK keyboard"
+msgstr "Д°ngiliz (UK) klaviaturasД±"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ukrainian"
+msgstr "Ukrayna dili"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (modern \"Q\" model)"
+msgstr "TГјrkcЙ™ (mГјasir \"Q\" klaviatura)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (traditional \"F\" model)"
+msgstr "TГјrkcЙ™ (Й™nЙ™nЙ™vi \"F\" klaviatura)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Tajik keyboard"
+msgstr "Thai klaviatura"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Thai keyboard"
+msgstr "Thai klaviatura"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Tamil (Typewriter-layout)"
+msgstr "ErmenicЙ™ (yazД± maЕџД±nД±)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tamil (ISCII-layout)"
msgstr ""
-#: ../../interactive/stdio.pm_.c:70
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Seçkiniz? (əsas %s) "
+msgid "Serbian (cyrillic)"
+msgstr "AzЙ™rbaycanca (kiril)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTY)"
+msgstr "Slovakca (QWERTY)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTZ)"
+msgstr "Slovakca (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovenian"
+msgstr "SlovencЙ™"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swedish"
+msgstr "İsveçcə"
-#: ../../interactive/stdio.pm_.c:95
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian (Yawerty)"
+msgstr "Rusca (Yawerty)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian"
+msgstr "Rusca"
+
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Seçənəklər: %s"
+msgid "Romanian (qwerty)"
+msgstr "Rusca (Yawerty)"
-#: ../../interactive/stdio.pm_.c:96
-#, fuzzy
-msgid "Do you want to click on this button?"
-msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Romanian (qwertz)"
+msgstr "Rusca (Yawerty)"
-#: ../../interactive/stdio.pm_.c:105
-msgid " enter `void' for void entry"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Canadian (Quebec)"
+msgstr "FransД±zca (Kanada/Quebec)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Portuguese"
+msgstr "Portuqalca"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwertz layout)"
+msgstr "Polyakca (QWERTZ sД±rasД±)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwerty layout)"
+msgstr "Polyakca (QWERTY sД±rasД±)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Norwegian"
+msgstr "Norveçcə"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dutch"
+msgstr "Hollandiya dili"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (US)"
msgstr ""
-#: ../../interactive/stdio.pm_.c:105
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Seçkiniz? (əsas %s) "
+msgid "Mongolian (cyrillic)"
+msgstr "AzЙ™rbaycanca (kiril)"
-#: ../../interactive/stdio.pm_.c:123
+#: ../../keyboard.pm:1
#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../interactive/stdio.pm_.c:126
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Macedonian"
+msgstr "Makedoniya dili"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Malayalam"
msgstr ""
-#: ../../interactive/stdio.pm_.c:139
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Latvian"
+msgstr "Yeri"
+
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Litvanya dili \"Fonetik\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Litvanya dili \"number row\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (new)"
+msgstr "Litvanya dili AZERTY (yeni)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (old)"
+msgstr "Litvaniya dili AZERTY (köhnə)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Laotian"
+msgstr "Yeri"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Latin American"
+msgstr "LatД±n Amerika dili"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Korean keyboard"
+msgstr "Koreya klaviaturasД±"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Japanese 106 keys"
+msgstr "Yaponca 106 dГјymЙ™li"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Inuktitut"
msgstr ""
-#: ../../interactive/stdio.pm_.c:146
-msgid "Re-submit"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Italian"
+msgstr "Д°talyanca"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Icelandic"
+msgstr "Д°zlandiya dili"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Iranian"
+msgstr "Farsca"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli (Phonetic)"
+msgstr "Д°srail (Fonetik)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli"
+msgstr "Д°srail"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Croatian"
+msgstr "XД±rvatca"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Hungarian"
+msgstr "Macarca"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gurmukhi"
msgstr ""
-#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
-msgid "Czech (QWERTZ)"
-msgstr "Г‡ex dili (QWERTZ)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gujarati"
+msgstr ""
-#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
-msgid "German"
-msgstr "Almanca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Greek"
+msgstr "Yunanca"
-#: ../../keyboard.pm_.c:155
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Latin\" layout)"
+msgstr "GГјrcГј dili (\"LatД±n\" sД±rasД±)"
-#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
-msgid "Spanish"
-msgstr "Д°spanca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Russian\" layout)"
+msgstr "GГјrcГј dili (\"Rus\" sД±rasД±)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "French"
+msgstr "FransД±zca"
-#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+#: ../../keyboard.pm:1
+#, c-format
msgid "Finnish"
msgstr "FincЙ™"
-#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
-msgid "French"
-msgstr "FransД±zca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Spanish"
+msgstr "Д°spanca"
-#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
-msgid "Norwegian"
-msgstr "Norveçcə"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Estonian"
+msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:160
-msgid "Polish"
-msgstr "Polyakca"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
-msgid "Russian"
-msgstr "Rusca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
-msgid "Swedish"
-msgstr "İsveçcə"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
-msgid "UK keyboard"
-msgstr "Д°ngiliz (UK) klaviaturasД±"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Danish"
+msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
-msgid "US keyboard"
-msgstr "Amerikan (US) klaviaturasД±"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Devanagari"
+msgstr ""
-#: ../../keyboard.pm_.c:167
-#, fuzzy
-msgid "Albanian"
-msgstr "Farsca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German (no dead keys)"
+msgstr "Almanca (Г¶lГј dГјymЙ™lЙ™r olmasД±n)"
-#: ../../keyboard.pm_.c:168
-msgid "Armenian (old)"
-msgstr "Ermenicə (köhnə) "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German"
+msgstr "Almanca"
-#: ../../keyboard.pm_.c:169
-msgid "Armenian (typewriter)"
-msgstr "ErmenicЙ™ (yazД± maЕџД±nД±)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTY)"
+msgstr "Г‡ex dili (QWERTY)"
-#: ../../keyboard.pm_.c:170
-msgid "Armenian (phonetic)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTZ)"
+msgstr "Г‡ex dili (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (French layout)"
+msgstr "İsveçcə (Fransız sırası)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (German layout)"
+msgstr "İsveçcə (Alman sırası)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belarusian"
+msgstr "Belarusca"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bosnian"
+msgstr "Estoniya dili"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Brazilian (ABNT-2)"
+msgstr "Brazilya dili (ABNT-2)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (BDS)"
+msgstr "Bulqarca"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (phonetic)"
msgstr "ErmenicЙ™ (fonetik)"
-#: ../../keyboard.pm_.c:175
-msgid "Azerbaidjani (latin)"
-msgstr "AzЙ™rbaycanca (latД±n)"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bengali"
+msgstr "fЙ™allaЕџdД±r"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm:1
+#, c-format
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:178
-#, fuzzy
-msgid "Bengali"
-msgstr "fЙ™allaЕџdД±r"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Azerbaidjani (latin)"
+msgstr "AzЙ™rbaycanca (latД±n)"
-#: ../../keyboard.pm_.c:179
-#, fuzzy
-msgid "Bulgarian (phonetic)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (phonetic)"
msgstr "ErmenicЙ™ (fonetik)"
-#: ../../keyboard.pm_.c:180
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Bulqarca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (typewriter)"
+msgstr "ErmenicЙ™ (yazД± maЕџД±nД±)"
-#: ../../keyboard.pm_.c:181
-msgid "Brazilian (ABNT-2)"
-msgstr "Brazilya dili (ABNT-2)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (old)"
+msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:184
-#, fuzzy
-msgid "Bosnian"
-msgstr "Estoniya dili"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Albanian"
+msgstr "Farsca"
-#: ../../keyboard.pm_.c:185
-msgid "Belarusian"
-msgstr "Belarusca"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish"
+msgstr "Polyakca"
-#: ../../keyboard.pm_.c:186
-msgid "Swiss (German layout)"
-msgstr "İsveçcə (Alman sırası)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:187
-msgid "Swiss (French layout)"
-msgstr "İsveçcə (Fransız sırası)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zimbabwe"
+msgstr "Zimbabve"
-#: ../../keyboard.pm_.c:189
-msgid "Czech (QWERTY)"
-msgstr "Г‡ex dili (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zambia"
+msgstr "Zambiya"
-#: ../../keyboard.pm_.c:191
-msgid "German (no dead keys)"
-msgstr "Almanca (Г¶lГј dГјymЙ™lЙ™r olmasД±n)"
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "South Africa"
+msgstr "CЙ™nubi Afrika"
-#: ../../keyboard.pm_.c:192
-msgid "Devanagari"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Serbia"
+msgstr "serial"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mayotte"
+msgstr "Mayot"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Yemen"
+msgstr "YЙ™mЙ™n"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Samoa"
+msgstr "Samoa"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Wallis and Futuna"
+msgstr "Vallis vЙ™ Futuna AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Vanuatu"
+msgstr "Vanuatu"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Vietnam"
+msgstr "Vyetnam"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (U.S.)"
+msgstr "Virgin AdalarД± (ABЕћ)"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (British)"
+msgstr "Virgin AdalarД± (Britaniya)"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Venezuela"
+msgstr "Venezuela"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Vincent and the Grenadines"
+msgstr "MГјqЙ™ddЙ™s Vinsent vЙ™ Qrenadin"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Vatican"
+msgstr "Yeri"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uzbekistan"
+msgstr "Г–zbЙ™kistan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uruguay"
+msgstr "Uruqvay"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "United States Minor Outlying Islands"
+msgstr "Birləşmiş Ştatlar yanı Kiçik Adalar"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uganda"
+msgstr "Uqanda"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ukraine"
+msgstr "Ukrayna"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tanzania"
msgstr ""
-#: ../../keyboard.pm_.c:193
-msgid "Danish"
-msgstr "Danimarka dili"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Taiwan"
+msgstr "Tayland"
-#: ../../keyboard.pm_.c:194
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tuvalu"
+msgstr "Tuvalu"
-#: ../../keyboard.pm_.c:195
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Norveçcə)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Trinidad and Tobago"
+msgstr "Trinidad vЙ™ Tobaqo"
-#: ../../keyboard.pm_.c:196
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkey"
+msgstr "TГјrkiyЙ™"
-#: ../../keyboard.pm_.c:197
-msgid "Estonian"
-msgstr "Estoniya dili"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tonga"
+msgstr "Tonqa"
-#: ../../keyboard.pm_.c:201
-msgid "Georgian (\"Russian\" layout)"
-msgstr "GГјrcГј dili (\"Rus\" sД±rasД±)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tunisia"
+msgstr "Tunis"
-#: ../../keyboard.pm_.c:202
-msgid "Georgian (\"Latin\" layout)"
-msgstr "GГјrcГј dili (\"LatД±n\" sД±rasД±)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkmenistan"
+msgstr "TГјrkmЙ™nistan"
-#: ../../keyboard.pm_.c:203
-msgid "Greek"
-msgstr "Yunanca"
+#: ../../lang.pm:1
+#, c-format
+msgid "East Timor"
+msgstr "ЕћЙ™rqi Timor"
-#: ../../keyboard.pm_.c:204
-msgid "Gujarati"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tokelau"
+msgstr "Tokelo"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tajikistan"
+msgstr "Tacikistan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Thailand"
+msgstr "Tayland"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Togo"
+msgstr "Toqo"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Southern Territories"
+msgstr "CЙ™nubi FransД±z SahЙ™lЙ™ri"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Chad"
+msgstr "Г‡ad"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Turks and Caicos Islands"
+msgstr "TГјrk vЙ™ Kaykos AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Swaziland"
+msgstr "Svaziland"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Syria"
+msgstr "Surinam"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "El Salvador"
+msgstr "Elsalvador"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sao Tome and Principe"
+msgstr "Sao Tome vЙ™ Prinsip"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Suriname"
+msgstr "Surinam"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Somalia"
+msgstr "Somali"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Senegal"
+msgstr "Seneqal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "San Marino"
+msgstr "San Marino"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sierra Leone"
+msgstr "Siera Lione"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovakia"
+msgstr "Slovakiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Svalbard and Jan Mayen Islands"
+msgstr "Svalbard vЙ™ Jan Mayen AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovenia"
+msgstr "Sloveniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Helena"
+msgstr "MГјqЙ™ddЙ™s Helena"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Singapore"
+msgstr "Sinqapur"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sudan"
+msgstr "Sudan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Seychelles"
+msgstr "SeyЕџel"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Solomon Islands"
+msgstr "Solomon AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saudi Arabia"
+msgstr "SЙ™udiyyЙ™ ЖЏrЙ™bistan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Rwanda"
+msgstr "Rvanda"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Russia"
+msgstr "Rusca"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Romania"
+msgstr "RuminД±ya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Reunion"
+msgstr "Reyunion"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Qatar"
+msgstr "Katar"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Palau"
+msgstr "Palau"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Paraguay"
+msgstr "Paraqvay"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Portugal"
+msgstr "Portuqaliya"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Palestine"
+msgstr "Paket seçkilərini saxla"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Puerto Rico"
+msgstr "Porto Riko"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Pitcairn"
+msgstr "Pitkairn"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Pierre and Miquelon"
+msgstr "MГјqЙ™ddЙ™s Pyer vЙ™ Migelion"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Poland"
+msgstr "PolЕџa"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Philippines"
+msgstr "Filippin"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Papua New Guinea"
+msgstr "Papua Yeni Qvineya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Polynesia"
+msgstr "FransД±z PoloneziyasД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Peru"
+msgstr "Peru"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Panama"
+msgstr "Panama"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Oman"
+msgstr "Oman"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "New Zealand"
+msgstr "Yeni Zellandiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Niue"
+msgstr "Niu"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nauru"
+msgstr "Nauru"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nepal"
+msgstr "Nepal"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nicaragua"
+msgstr "Nikaraqua"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nigeria"
+msgstr "Nigeriya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Norfolk Island"
+msgstr "Norfolk AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Niger"
+msgstr "Niger"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "New Caledonia"
+msgstr "Yeni Kaledoniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Namibia"
+msgstr "Namibiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mozambique"
+msgstr "Mozambiq"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malaysia"
+msgstr "Malayziya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mexico"
+msgstr "Meksika"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malawi"
+msgstr "Malavi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Maldives"
+msgstr "Maldiv"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritius"
+msgstr "Maurit"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malta"
+msgstr "Malta"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Montserrat"
+msgstr "Montserrat"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritania"
+msgstr "Mavritaniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Martinique"
+msgstr "Martiniq"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Northern Mariana Islands"
+msgstr "Ећimali Marian AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mongolia"
+msgstr "Monqolustan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mali"
+msgstr "Mali"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Macedonia"
+msgstr "Makedoniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Marshall Islands"
+msgstr "MarЕџal AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Madagascar"
+msgstr "Madaqaskar"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Moldova"
+msgstr "Moldova"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Monaco"
+msgstr "Monako"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Morocco"
+msgstr "MЙ™rakeЕџ"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Libya"
+msgstr "Liberiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Latvia"
+msgstr "Latviya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Luxembourg"
+msgstr "LГјksemburq"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lithuania"
+msgstr "Litvaniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lesotho"
+msgstr "Lesoto"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liberia"
+msgstr "Liberiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sri Lanka"
+msgstr "Ећri Lanka"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liechtenstein"
+msgstr "LixtenЕџteyn"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Lucia"
+msgstr "MГјqЙ™ddЙ™s Lusiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lebanon"
+msgstr "Livan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Laos"
msgstr ""
-#: ../../keyboard.pm_.c:205
-msgid "Gurmukhi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kazakhstan"
+msgstr "Qazaxstan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cayman Islands"
+msgstr "Kayman AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kuwait"
+msgstr "KГјveyt"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Korea"
+msgstr "Daha Г‡ox"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Korea (North)"
msgstr ""
-#: ../../keyboard.pm_.c:206
-msgid "Hungarian"
-msgstr "Macarca"
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Kitts and Nevis"
+msgstr "MГјqЙ™ddЙ™s Kit vЙ™ Nevis"
-#: ../../keyboard.pm_.c:207
-msgid "Croatian"
-msgstr "XД±rvatca"
+#: ../../lang.pm:1
+#, c-format
+msgid "Comoros"
+msgstr "Komor"
-#: ../../keyboard.pm_.c:208
-msgid "Israeli"
-msgstr "Д°srail"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kiribati"
+msgstr "Kiribati"
-#: ../../keyboard.pm_.c:209
-msgid "Israeli (Phonetic)"
-msgstr "Д°srail (Fonetik)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cambodia"
+msgstr "Kambodiya"
-#: ../../keyboard.pm_.c:210
-msgid "Iranian"
-msgstr "Farsca"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kyrgyzstan"
+msgstr "QД±rДџД±zД±stan"
-#: ../../keyboard.pm_.c:211
-msgid "Icelandic"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kenya"
+msgstr "Kenya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Japan"
+msgstr "Yaponiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jordan"
+msgstr "Д°ordaniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jamaica"
+msgstr "Yamayka"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iceland"
+msgstr "Д°slandiya"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Iran"
+msgstr "Д°raq"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iraq"
+msgstr "Д°raq"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "British Indian Ocean Territory"
+msgstr "Britaniya Hind OkeanД± SahЙ™si"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "India"
+msgstr "Hindistan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Israel"
+msgstr "Д°srail"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Ireland"
msgstr "Д°zlandiya dili"
-#: ../../keyboard.pm_.c:212
-msgid "Italian"
-msgstr "Д°talyanca"
+#: ../../lang.pm:1
+#, c-format
+msgid "Indonesia"
+msgstr "Д°ndoneziya"
-#: ../../keyboard.pm_.c:213
-msgid "Inuktitut"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Hungary"
+msgstr "MacarД±stan"
-#: ../../keyboard.pm_.c:214
-msgid "Japanese 106 keys"
-msgstr "Yaponca 106 dГјymЙ™li"
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr "Haiti"
-#: ../../keyboard.pm_.c:217
-msgid "Korean keyboard"
-msgstr "Koreya klaviaturasД±"
+#: ../../lang.pm:1
+#, c-format
+msgid "Croatia"
+msgstr "XД±rvatД±stan"
-#: ../../keyboard.pm_.c:218
-msgid "Latin American"
-msgstr "LatД±n Amerika dili"
+#: ../../lang.pm:1
+#, c-format
+msgid "Honduras"
+msgstr "Honduras"
-#: ../../keyboard.pm_.c:219
-#, fuzzy
-msgid "Laotian"
-msgstr "Yeri"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Heard and McDonald Islands"
+msgstr "Hird AdasД± vЙ™ Mkdonald AdalarД±"
-#: ../../keyboard.pm_.c:220
-msgid "Lithuanian AZERTY (old)"
-msgstr "Litvaniya dili AZERTY (köhnə)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Hong Kong"
+msgstr "Honq Konq"
-#: ../../keyboard.pm_.c:222
-msgid "Lithuanian AZERTY (new)"
-msgstr "Litvanya dili AZERTY (yeni)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr "Quyana"
-#: ../../keyboard.pm_.c:223
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Litvanya dili \"number row\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea-Bissau"
+msgstr "Qvineya Bissau"
-#: ../../keyboard.pm_.c:224
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litvanya dili \"Fonetik\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guam"
+msgstr "Quam"
-#: ../../keyboard.pm_.c:225
-#, fuzzy
-msgid "Latvian"
-msgstr "Yeri"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guatemala"
+msgstr "Quatemala"
-#: ../../keyboard.pm_.c:226
-msgid "Malayalam"
-msgstr ""
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Cinubi Georgiya və Cənubi Sandviç Adası"
-#: ../../keyboard.pm_.c:227
-msgid "Macedonian"
-msgstr "Makedoniya dili"
+#: ../../lang.pm:1
+#, c-format
+msgid "Equatorial Guinea"
+msgstr "Ekvatorial Qvineya"
-#: ../../keyboard.pm_.c:228
-msgid "Myanmar (Burmese)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Guadeloupe"
+msgstr "Quadelup"
-#: ../../keyboard.pm_.c:229
-#, fuzzy
-msgid "Mongolian (cyrillic)"
-msgstr "AzЙ™rbaycanca (kiril)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea"
+msgstr "Qvineya"
-#: ../../keyboard.pm_.c:230
-msgid "Maltese (UK)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Gambia"
+msgstr "Qambiya"
-#: ../../keyboard.pm_.c:231
-msgid "Maltese (US)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Greenland"
+msgstr "Qrinland"
-#: ../../keyboard.pm_.c:232
-msgid "Dutch"
-msgstr "Hollandiya dili"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gibraltar"
+msgstr "Gibraltar"
-#: ../../keyboard.pm_.c:234
-msgid "Polish (qwerty layout)"
-msgstr "Polyakca (QWERTY sД±rasД±)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ghana"
+msgstr "Qana"
-#: ../../keyboard.pm_.c:235
-msgid "Polish (qwertz layout)"
-msgstr "Polyakca (QWERTZ sД±rasД±)"
+#: ../../lang.pm:1
+#, c-format
+msgid "French Guiana"
+msgstr "FransД±z GvineyasД±"
-#: ../../keyboard.pm_.c:236
-msgid "Portuguese"
-msgstr "Portuqalca"
+#: ../../lang.pm:1
+#, c-format
+msgid "Georgia"
+msgstr "GГјrcГјstan"
-#: ../../keyboard.pm_.c:237
-msgid "Canadian (Quebec)"
-msgstr "FransД±zca (Kanada/Quebec)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Grenada"
+msgstr "Qrenada"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Rusca (Yawerty)"
+#: ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "United Kingdom"
+msgstr "BirlЙ™ЕџmiЕџ KrallД±q"
-#: ../../keyboard.pm_.c:240
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Rusca (Yawerty)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gabon"
+msgstr "Qabon"
-#: ../../keyboard.pm_.c:242
-msgid "Russian (Yawerty)"
-msgstr "Rusca (Yawerty)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Faroe Islands"
+msgstr "Faro AdalarД±"
-#: ../../keyboard.pm_.c:244
-msgid "Slovenian"
-msgstr "SlovencЙ™"
+#: ../../lang.pm:1
+#, c-format
+msgid "Micronesia"
+msgstr "Mikroneziya"
-#: ../../keyboard.pm_.c:245
-msgid "Slovakian (QWERTZ)"
-msgstr "Slovakca (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Falkland Islands (Malvinas)"
+msgstr "Fokland AdalarД± (Malvin)"
-#: ../../keyboard.pm_.c:246
-msgid "Slovakian (QWERTY)"
-msgstr "Slovakca (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Fiji"
+msgstr "Fici"
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "AzЙ™rbaycanca (kiril)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Finland"
+msgstr "Finlandiya"
-#: ../../keyboard.pm_.c:250
-msgid "Tamil (Unicode)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Ethiopia"
+msgstr "Efiopiya"
-#: ../../keyboard.pm_.c:251
-msgid "Tamil (TSCII)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Spain"
+msgstr "Д°spaniya"
-#: ../../keyboard.pm_.c:252
-msgid "Thai keyboard"
-msgstr "Thai klaviatura"
+#: ../../lang.pm:1
+#, c-format
+msgid "Eritrea"
+msgstr "Eritre"
-#: ../../keyboard.pm_.c:254
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Thai klaviatura"
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
+msgstr "QЙ™rbi Saxara"
-#: ../../keyboard.pm_.c:255
-msgid "Turkish (traditional \"F\" model)"
-msgstr "TГјrkcЙ™ (Й™nЙ™nЙ™vi \"F\" klaviatura)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Egypt"
+msgstr "Misir"
-#: ../../keyboard.pm_.c:256
-msgid "Turkish (modern \"Q\" model)"
-msgstr "TГјrkcЙ™ (mГјasir \"Q\" klaviatura)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Estonia"
+msgstr "Estoniya"
-#: ../../keyboard.pm_.c:258
-msgid "Ukrainian"
-msgstr "Ukrayna dili"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ecuador"
+msgstr "Ekvador"
-#: ../../keyboard.pm_.c:261
-msgid "US keyboard (international)"
-msgstr "Amerikan (US) klaviaturasД± (beynЙ™lmilЙ™l)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Algeria"
+msgstr "ЖЏlcЙ™zair"
-#: ../../keyboard.pm_.c:262
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vyetnam dili \"numeric row\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
+msgstr "Dominikan RespublikasД±"
-#: ../../keyboard.pm_.c:263
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Yugoslavca (latД±n/kiril)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominica"
+msgstr "Dominik"
-#: ../../keyboard.pm_.c:270
-msgid "Right Alt key"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Denmark"
+msgstr "Danimarka"
-#: ../../keyboard.pm_.c:271
-msgid "Both Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Djibouti"
+msgstr "Cibuti"
-#: ../../keyboard.pm_.c:272
-msgid "Control and Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cyprus"
+msgstr "Kipr (Yunan vЙ™ TГјrk) "
-#: ../../keyboard.pm_.c:273
-msgid "CapsLock key"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Christmas Island"
+msgstr "Kristmas AdasД±"
-#: ../../keyboard.pm_.c:274
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cape Verde"
+msgstr "Keyp Verde"
-#: ../../keyboard.pm_.c:275
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cuba"
+msgstr "Kuba"
-#: ../../keyboard.pm_.c:276
-msgid "\"Menu\" key"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Colombia"
+msgstr "Kolumbiya"
-#: ../../keyboard.pm_.c:277
-msgid "Left \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "China"
+msgstr "Г‡in"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cameroon"
+msgstr "Kamerun"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Chile"
+msgstr "Г‡ili"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr "Kuku AdalarД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr "Kot Divuar"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Switzerland"
+msgstr "İsveçrə"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Brazzaville)"
msgstr ""
-#: ../../keyboard.pm_.c:278
-msgid "Right \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Central African Republic"
+msgstr "MЙ™rkЙ™zi Afrika RespublikasД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Kinshasa)"
msgstr ""
-#: ../../loopback.pm_.c:32
+#: ../../lang.pm:1
+#, c-format
+msgid "Cocos (Keeling) Islands"
+msgstr "Kokos AdasД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Canada"
+msgstr "Kanada"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Belize"
+msgstr "Beliz"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Belarus"
+msgstr "Belarusiya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Botswana"
+msgstr "Botsvana"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bouvet Island"
+msgstr "Buvet AdasД±"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bhutan"
+msgstr "Butan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahamas"
+msgstr "Bahama"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Brazil"
+msgstr "Braziliya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bolivia"
+msgstr "Boliviya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Brunei Darussalam"
+msgstr "Bruney DarГјssЙ™lim"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bermuda"
+msgstr "Bermuda"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Benin"
+msgstr "Benin"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
+msgstr "Burundi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahrain"
+msgstr "Bahreyn"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bulgaria"
+msgstr "BolqarД±stan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bangladesh"
+msgstr "BanqladeЕџ"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr "Barbados"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bosnia and Herzegovina"
+msgstr "Bosniya vЙ™ Herzoqovina"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Azerbaijan"
+msgstr "AzЙ™rbaycan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Aruba"
+msgstr "Aruba"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Australia"
+msgstr "serial"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "American Samoa"
+msgstr "Amerikan Samoa"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Argentina"
+msgstr "Argentina"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
+msgstr "Antarktika"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Angola"
+msgstr "Anqola"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
+msgstr "Holland AntillЙ™ri"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Armenia"
+msgstr "ErmЙ™nistan"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Albania"
+msgstr "Albaniya"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Anguilla"
+msgstr "Anquilla"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Antigua and Barbuda"
+msgstr "Antiq vЙ™ Barbuda"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
+msgstr "BirlЙ™ЕџmiЕџ ЖЏrЙ™b ЖЏmirliklЙ™ri"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Andorra"
+msgstr "Andorra"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Afghanistan"
+msgstr "ЖЏfqanД±stan"
+
+#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "DairЙ™vi baДџlama %s\n"
-#: ../../lvm.pm_.c:103
+#: ../../lvm.pm:1
+#, c-format
msgid "Remove the logical volumes first\n"
msgstr "MЙ™ntiqi ciltlЙ™ri birinci olaraq sil\n"
-#: ../../modules.pm_.c:290
+#: ../../modules.pm:1
+#, c-format
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../modules/interactive.pm_.c:16
-msgid "You can configure each parameter of the module here."
-msgstr ""
-
-#: ../../modules/parameters.pm_.c:18
-#, fuzzy
-msgid "modinfo is not available"
-msgstr "Disket sГјrГјcГј yoxdur"
-
-#: ../../modules/parameters.pm_.c:50
-#, fuzzy
-msgid "a number"
-msgstr "Telefon nömrəsi"
+#: ../../mouse.pm:1
+#, c-format
+msgid "MOVE YOUR WHEEL!"
+msgstr "TЖЏKЖЏRД° OYNADIN!"
-#: ../../modules/parameters.pm_.c:52
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+msgid "To activate the mouse,"
+msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../modules/parameters.pm_.c:52
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+msgid "Please test the mouse"
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../modules/parameters.pm_.c:54
-msgid "comma separated numbers"
-msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "Siçansızs"
-#: ../../modules/parameters.pm_.c:54
-#, fuzzy
-msgid "comma separated strings"
-msgstr "Bölmə şəkilləndirilməsi"
+#: ../../mouse.pm:1
+#, c-format
+msgid "none"
+msgstr "heç biri"
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Siçan"
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons"
+msgstr "3 dГјymЙ™li"
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "2 buttons"
+msgstr "2 dГјymЙ™li"
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Sıravi PS2 Çərxli Siçan"
+#: ../../mouse.pm:1
+#, c-format
+msgid "1 button"
+msgstr "1 dГјymЙ™"
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
+#: ../../mouse.pm:1
+#, c-format
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+#: ../../mouse.pm:1
+#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech mouse (serial ya da köhnə C7 növü)"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
-msgid "Microsoft Explorer"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
-msgid "1 button"
-msgstr "1 dГјymЙ™"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Sıravi 3 Düyməli Siçan"
-#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+#: ../../mouse.pm:1
+#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 Düyməli Siçan"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm:1
+#, c-format
+msgid "serial"
+msgstr "serial"
+
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Wheel"
msgstr "Г‡Й™rx"
-#: ../../mouse.pm_.c:51
-msgid "serial"
-msgstr "serial"
+#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Generic"
+msgstr "Гњmumi"
-#: ../../mouse.pm_.c:54
-msgid "Generic 3 Button Mouse"
-msgstr "Sıravi 3 Düyməli Siçan"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:55
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../mouse.pm_.c:56
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Sıravi PS2 Çərxli Siçan"
-#: ../../mouse.pm_.c:57
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../mouse.pm_.c:59
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
+#: ../../mouse.pm:1 ../../security/level.pm:1
+#, c-format
+msgid "Standard"
+msgstr "Standart"
-#: ../../mouse.pm_.c:60
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Sun - Mouse"
+msgstr "Sun - Siçan"
-#: ../../mouse.pm_.c:62
-msgid "MM Series"
-msgstr "MM Series"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Toggle between flat and group sorted"
+msgstr "Otaq vЙ™ grup sД±ralamasД± arasД±nda gЙ™z"
-#: ../../mouse.pm_.c:63
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Collapse Tree"
+msgstr "AДџacД± Qapat"
-#: ../../mouse.pm_.c:64
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mouse (serial ya da köhnə C7 növü)"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Expand Tree"
+msgstr "Ağacı Aç"
-#: ../../mouse.pm_.c:68
-msgid "busmouse"
-msgstr "busmouse"
+#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Info"
+msgstr "MЙ™'lumat"
-#: ../../mouse.pm_.c:71
-msgid "2 buttons"
-msgstr "2 dГјymЙ™li"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Is this correct?"
+msgstr "DoДџrudur?"
-#: ../../mouse.pm_.c:72
-msgid "3 buttons"
-msgstr "3 dГјymЙ™li"
+#: ../../my_gtk.pm:1
+#, c-format
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
-#: ../../mouse.pm_.c:75
-msgid "none"
-msgstr "heç biri"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Error writing to file %s"
+msgstr "%s faylД±na yazarkЙ™n xЙ™ta oldu"
-#: ../../mouse.pm_.c:77
-msgid "No mouse"
-msgstr "Siçansızs"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Bad backup file"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../mouse.pm_.c:490
-msgid "Please test the mouse"
-msgstr "Xahiş edirik siçanınızı seçin"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Restoring from file %s failed: %s"
+msgstr "%s faylД±ndan qurtarД±lД±Еџda xЙ™ta: %s"
-#: ../../mouse.pm_.c:491
-msgid "To activate the mouse,"
-msgstr "Siçanınızı işə salmaq üçün,"
+#: ../../partition_table.pm:1
+#, c-format
+msgid ""
+"You have a hole in your partition table but I can't use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
+msgstr ""
+"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."
-#: ../../mouse.pm_.c:492
-msgid "MOVE YOUR WHEEL!"
-msgstr "TЖЏKЖЏRД° OYNADIN!"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Extended partition not supported on this platform"
+msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../my_gtk.pm_.c:65
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "mount failed: "
+msgstr "baДџlama iflas etdi: "
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "maybe"
+msgstr "bЙ™lkЙ™"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "nice"
+msgstr "gözəl"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "very nice"
+msgstr "Й™la"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "important"
+msgstr "vacib"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "must have"
+msgstr "alД±nmalД±"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed"
+msgstr "mkraid iflas etdi"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid iflas etdi (raidtools Й™ksik ola bilЙ™r mi?)"
+
+#: ../../raid.pm:1
+#, c-format
+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"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Stop"
+msgstr "Sektor"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Start"
+msgstr "Hal:"
+
+#: ../../services.pm:1
+#, c-format
+msgid "On boot"
+msgstr "Açılışda"
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
+"Bu xidmЙ™t haqqД±nda tЙ™Й™sГјf ki,\n"
+"Й™lavЙ™ mЙ™'lumat yoxdur."
-#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
-msgid "Finish"
-msgstr "Qurtar"
+#: ../../services.pm:1
+#, c-format
+msgid "Services and deamons"
+msgstr "XidmЙ™tlЙ™r vЙ™ vasitЙ™lЙ™r"
-#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
-#: ../../ugtk2.pm_.c:435
-msgid "Next ->"
-msgstr "SonrakД± ->"
+#: ../../services.pm:1
+#, c-format
+msgid "stopped"
+msgstr "dayandД±rД±lД±b"
-#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
-msgid "Is this correct?"
-msgstr "DoДџrudur?"
+#: ../../services.pm:1
+#, c-format
+msgid "running"
+msgstr "iЕџlЙ™mir"
-#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
-msgid "Info"
-msgstr "MЙ™'lumat"
+#: ../../services.pm:1
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
-#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Database Server"
+msgstr "Databeyz"
-#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
-msgid "Collapse Tree"
-msgstr "AДџacД± Qapat"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Remote Administration"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq vЙ™ grup sД±ralamasД± arasД±nda gЙ™z"
+#: ../../services.pm:1
+#, c-format
+msgid "File sharing"
+msgstr ""
-#: ../../network/adsl.pm_.c:23
-msgid "use pppoe"
-msgstr "pppoe istifadЙ™ et"
+#: ../../services.pm:1
+#, c-format
+msgid "Internet"
+msgstr "Д°nternet"
-#: ../../network/adsl.pm_.c:24
-msgid "use pptp"
-msgstr "pptpe istifadЙ™ et"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Printing"
+msgstr "Г‡ap Edici"
-#: ../../network/adsl.pm_.c:25
-msgid "use dhcp"
-msgstr "dhcp istifadЙ™ et"
+#: ../../services.pm:1
+#, c-format
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr ""
+"X Font Vericisini açılışda işə salar (Bu, XFree icrası üçün məcburidir)."
-#: ../../network/adsl.pm_.c:26
-msgid "Alcatel speedtouch usb"
+#: ../../services.pm:1
+#, c-format
+msgid "Load the drivers for your usb devices."
+msgstr "USB avadanlığınız üçün sürücüləri yükləyin."
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
+"Syslog, bir Г§ox vasitЙ™nin ismarД±clarД±nД± mГјxtЙ™lif sistem qeydlЙ™rindЙ™\n"
+"tutmalarД±na imkan verЙ™r. Syslog'un hЙ™r zaman iЕџlЙ™mЙ™si\n"
+"yaxЕџД± fikirdir."
-#: ../../network/adsl.pm_.c:27
-msgid "Sagem (using pppoe) usb"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the sound system on your machine"
+msgstr "KompГјterinizdЙ™ sЙ™s sistemД± baЕџladД±n"
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
+"rwho protokolu, uzaq istifadЙ™Г§ilЙ™rin, rwho vasitЙ™si iЕџlЙ™dЙ™n bir kompГјterdЙ™\n"
+"olan bütün istifadəçiləri görmələrina imkan verər."
-#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Д°nternetЙ™ baДџlan"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers protokolu bir ЕџЙ™bЙ™kЙ™dЙ™kД± istifadЙ™Г§ilЙ™rin o ЕџЙ™bЙ™kЙ™dЙ™kД± kompГјterlЙ™rdЙ™\n"
+"işləyən istifadəçiləri görməsinə imkan verər."
-#: ../../network/adsl.pm_.c:30
+#: ../../services.pm:1
+#, c-format
msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few ones use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-"ADSL ilЙ™ internetЙ™ baДџlanmanД±n Й™n yaxЕџД± yolu pppoe'dur.\n"
-"BЙ™zi baДџlantД±lar pptp istifadЙ™ edir, Г§ox azД± isЙ™ dhcp iЕџlЙ™dir.\n"
-"Bilmirsiniz isə 'pppop istifadə et'i seçin"
+"rstat protokolu bir ЕџЙ™bЙ™kЙ™dЙ™kД± istifadЙ™Г§ilЙ™rin o ЕџЙ™bЙ™kЙ™dЙ™kД± hЙ™r hansД± bir\n"
+"kompüter haqqındakı qabiliyyət ölçüləri ala bilmələrinə imkan verər."
-#: ../../network/adsl.pm_.c:166
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
msgstr ""
+"routed vasitЙ™si avtomatik IP router cЙ™dvЙ™linin RIP protokolu tЙ™rЙ™findЙ™n\n"
+"yenilənməsinə imkan verər. RIP əsasən kiçik şəbəkələrdə istifadə edilir, "
+"daha böyük\n"
+"ЕџЙ™bЙ™kЙ™lЙ™rdЙ™ daha qarД±ЕџД±q routing protokollarД±na ehtiyacД± vardД±r."
-#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "Verici"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
-#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "SahЙ™(domain) adД±"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"YГјksЙ™k keyfiyyЙ™t tЙ™sadГјfi rЙ™qЙ™m istehsal edЙ™n sistem entropi hovuzunun \n"
+"saxlanması və yenidən köhnə halına gətirilməsinə imkan verər."
-#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "Databeyz"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Posfix, elektronik mЙ™ktublarД±n bir kompГјterdЙ™n digЙ™rinЙ™ yollayan \n"
+"Elektronik MЙ™ktub Yollama VasitЙ™sidir."
-#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "Verici"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+"portmapper, NFS ve NIS kimi protokollar tЙ™rЙ™findЙ™n istifadЙ™ edilЙ™n RPC \n"
+"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."
-#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
+msgstr ""
+"PCMCIA dЙ™stЙ™yi, laptoplarda eternet vЙ™ modem kimi avadanlД±qlarД±n "
+"dЙ™stЙ™klЙ™nmЙ™sinЙ™ imkan verЙ™r.\n"
+"Qurulmadığı vaxtda açılışda işləməz, işləməsinə ehtiyac olmayan\n"
+"kompГјterlЙ™rdЙ™ qurulu olmasД± problem yaratmaz."
-#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
+#: ../../services.pm:1
+#, c-format
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "OKI 4w vЙ™ uyДџun Windows Г§ap edicilЙ™rini dЙ™stЙ™klЙ™."
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-"tinyfirewall configurator\n"
-"\n"
-"Bu, Linuks Mandrake sisteminiz üçün şəxsi bir firewall quraşdıracaqdır.\n"
-"Daha güclü və e'tibarlı sistem üçün xahiş edirik xüsusi MandrakeSecurity "
-"Firewall\n"
-"buraxД±lД±ЕџД±nД± tЙ™dqiq edin."
+"Açılışda XFree və konsolda numlock düyməsini\n"
+"avtomatik olaraq aç."
-#: ../../network/drakfirewall.pm_.c:135
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir \n"
+"protokoldur. Bu xidmЙ™t NFS fayl qД±fД±lД± istifadЙ™sinЙ™ imkan verЙ™r."
-#: ../../network/drakfirewall.pm_.c:152
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
msgstr ""
+"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir "
+"protokoldur.\n"
+"Bu xidmЙ™t, /etc/exports faylД±nda qurДџularД± olan NFS vericisinin\n"
+"istifadЙ™sinЙ™ imkan verЙ™r."
-#: ../../network/drakfirewall.pm_.c:153
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
+"Açılış sırasında başlamaq üçün qurulmuş bütün şəbəkə axtar üzlərini "
+"fЙ™allaЕџdД±rД±r ya da qapatД±r."
-#: ../../network/drakfirewall.pm_.c:159
+#: ../../services.pm:1
#, c-format
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"BГјtГјn ЕћЙ™bЙ™kЙ™ Fayl SistemlЙ™rini (NFS), SMB (Lan Manager/Windows), vЙ™ \n"
+"NCP (NetWare) bağlama nöqtələrini bağlar və ayırır."
-#: ../../network/drakfirewall.pm_.c:167
-msgid "Everything (no firewall)"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
+"named (BIND) verici adlarД±nД± IP ГјnvanlarД±na Г§evirЙ™n\n"
+"SahЙ™ AdД± Vericisidir(DNS)."
-#: ../../network/drakfirewall.pm_.c:169
-#, fuzzy
-msgid "Other ports"
-msgstr "QapД±larД± sД±na"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../network/ethernet.pm_.c:37
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcp-client"
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-"HansД± dhcp alД±cД±sД±nД± istifadЙ™ edЙ™cЙ™ksiniz?\n"
-"ЖЏsasД± dhcp-client dir"
+"lpd, lpr'nin düzgün olaraq işləməsi üçün lazımi çap edici vasitəsidir.\n"
+"lpd əsasən, çap vəzifələrini idarə edən və onları çap ediciyə göndərən "
+"vericidir."
-#: ../../network/ethernet.pm_.c:88
+#: ../../services.pm:1
+#, c-format
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
-"Bu baДџlantД± ЕџЙ™klini qura bilmЙ™rЙ™m."
+"Linuxconf sistem qurДџularД±nД±zД± idarЙ™ edЙ™n proqramlarД±\n"
+"müxtəlif vəzifələri açılışda icra edər."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
-msgid "Choose the network interface"
-msgstr "Şəbəkə ara üzünü seçin"
+#: ../../services.pm:1
+#, c-format
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Texniki avadanlığın açılışda avtomatik təsbiti və qurulması."
-#: ../../network/ethernet.pm_.c:93
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"/usr/include/linux/{autoconf,version}.h üçün \n"
+"/boot-da avtomatik Г§Й™kirdЙ™k baЕџlД±ДџД± yaradД±lmasД±."
-#: ../../network/ethernet.pm_.c:176
-msgid "no network card found"
-msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Bu paket /etc/sysconfig/keyboard'dakı seçili klaviatura düzülüşünü yüklər.\n"
+"Hansı klaviatura düzülüşü istifadə ediləcəyi kbdconfig ilə seçilir.\n"
+"Bu, mandrake qurulan bir Г§ox kompГјterdЙ™ fЙ™al buraxД±lmalД±dД±r."
-#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
-msgid "Configuring network"
-msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Linuks 2.2 seriyasД± Г§Й™kirdЙ™klЙ™rindЙ™ firewall\n"
+"qurmaq üçün üçün paket süzülməsini başlat."
-#: ../../network/ethernet.pm_.c:201
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please enter your host name if you know it.\n"
-"Some DHCP servers require the hostname to work.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''."
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
msgstr ""
-"XahiЕџ edirik kompГјterinizД±n adД±nД± girin.\n"
-"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."
+"Internet superserver daemon (qД±saca inetd ) bir Г§ox \n"
+"baЕџqa internet xidmЙ™tcisini lazД±m gЙ™ldiyi zaman iЕџa salД±r. Д°Г§indЙ™ telnet, "
+"ftp, rsh vЙ™ rlogin kimi proqramД±n olduДџu xidmЙ™tlЙ™ri iЕџЙ™ salmaqla mЙ™s'uldur.\n"
+"inetd-ni sistemden Г§Д±xarmaq, onun mЙ™s'ul olduДџu bГјtГјn xidmЙ™tlЙ™ri\n"
+"rЙ™dd etmЙ™k mЙ™nasД±nД± daЕџД±yД±r."
-#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
-msgid "Host name"
-msgstr "Ev sahibi adД±"
+#: ../../services.pm:1
+#, c-format
+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."
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
-#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
-#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
-#: ../../network/netconnect.pm_.c:253
-msgid "Network Configuration Wizard"
-msgstr "ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД± SehirbazД±"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+"HardDrake texniki tЙ™'minat sД±naДџД± aparar vЙ™ onlarД± bir Г¶n quraЕџdД±rmadan "
+"keçirər."
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Xarici ISDN kart"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM, Midnight Commander kimi mətn əsaslı tə'minatlara siçan dəstəyi əlavə "
+"edЙ™r.\n"
+"Ayrıca konsolda siçanla kəsmə və yapışdırma əməliyyatlarına da imkan verər.\n"
+"Konsolda pop-up menyu dЙ™stЙ™yi verЙ™r."
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Daxili ISDN kart"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"cron, istifadЙ™Г§ilЙ™rЙ™ xГјsusi Й™mrlЙ™ri periodik olaraq iЕџЙ™ sala bilЙ™n\n"
+"standart bir UNIX proqramД±dД±r. vixie cron, standart cron'a Й™lavЙ™ edilmiЕџ bir "
+"Г§ox\n"
+"yeni xГјsusiyyЙ™t daxildir."
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "ISDN bağlantınızın növü nədir?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+"at Й™mri, zamanlanan Й™mrlЙ™ri iЕџlЙ™mЙ™lЙ™ri lazД±m gЙ™lЙ™n vaxtda iЕџlЙ™dir.\n"
+"Sistem yükü lazımi qədər alçaq olduğunda yığma əmrləri işlədilir."
-#: ../../network/isdn.pm_.c:45
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerful\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
+"apmd is used for monitoring battery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"apmd batareya vəziyyətini izləmək üçün və syslog aracılığıyla bunun qeydini "
+"tutmaq üçün istifadə edilir.\n"
+"Ayrıca batareya azaldığında sistemi qapatmaq üçün də istifadə edilir."
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
+#: ../../services.pm:1
+#, c-format
+msgid "Anacron is a periodic command scheduler."
+msgstr "Anakron, periodik Й™mr zamanlayД±cД±sД±"
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "ALSA sЙ™s sistemini (Advanced Linux Sound Architecture) baЕџlat"
-#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
-#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
-#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
-msgid "ISDN Configuration"
-msgstr "ISDN quraЕџdД±rД±lmasД±"
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "Installing packages..."
+msgstr "%s paketi qurulur"
-#: ../../network/isdn.pm_.c:166
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"İnternet xidmət vericinizi seçin.\n"
-"Siyahıda deyilsə Siyahıda deyil'i seçin."
-#: ../../network/isdn.pm_.c:179
-#, fuzzy
-msgid "Europe protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../network/isdn.pm_.c:179
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Avropa (EDSS1)"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../network/isdn.pm_.c:181
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "BГјtГјn dГјnya"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../network/isdn.pm_.c:181
-#, fuzzy
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-"BГјtГјn dГјnya \n"
-" D-Channel'lЙ™ xaric (kiralД±q xЙ™tlЙ™r)"
-#: ../../network/isdn.pm_.c:185
-msgid "Which protocol do you want to use?"
-msgstr "HansД± protokolu istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+#: ../../standalone.pm:1
+#, c-format
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../network/isdn.pm_.c:196
+#: ../../standalone.pm:1
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+msgid ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
-#: ../../network/isdn.pm_.c:203
-msgid "What kind of card do you have?"
-msgstr "Hansı növ kartınız var?"
+#: ../../standalone.pm:1
+#, c-format
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "I don't know"
-msgstr "BilmirЙ™m"
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "[keyboard]"
+msgstr "Klaviatura"
-#: ../../network/isdn.pm_.c:204
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
+msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../standalone.pm:1
+#, c-format
msgid ""
+"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
"\n"
-"ISA kartД±nД±z var isЙ™ sonrakД± ekrandakД± qiymЙ™tlЙ™r doДџru olmalД±dД±r.\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
"\n"
-"PCMCIA kartД±nД±z var isЙ™ kartД±nД±zД±n irq vЙ™ ya io'sunu bilmЙ™lisiniz.\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+msgstr ""
-#: ../../network/isdn.pm_.c:214
-msgid "Abort"
-msgstr "DayandД±r"
+#: ../../steps.pm:1
+#, c-format
+msgid "Exit install"
+msgstr "Qurulumdan Г§Д±x"
-#: ../../network/isdn.pm_.c:214
-msgid "Continue"
-msgstr "Davam et"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Install system updates"
+msgstr "Sistemi qur"
-#: ../../network/isdn.pm_.c:220
-msgid "Which is your ISDN card?"
-msgstr "HansД±sД± sizin ISDN kartД±nД±zdД±r?"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure services"
+msgstr "XidmЙ™tlЙ™ri qur"
-#: ../../network/isdn.pm_.c:239
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
-"kartlardan birini seçin."
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure X"
+msgstr "X qur"
-#: ../../network/isdn.pm_.c:248
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Heç bir ISDN PCI kart tapılmaı. Sonrakı ekrandakılardan seçin."
+#: ../../steps.pm:1
+#, c-format
+msgid "Install bootloader"
+msgstr "Sistem yГјklЙ™yicini qur"
-#: ../../network/modem.pm_.c:57
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure networking"
+msgstr "ЕћЙ™bЙ™kЙ™ni qur"
-#: ../../network/modem.pm_.c:67
-msgid "Dialup options"
-msgstr "Çevirməli şəbəkə seçənəkləri"
+#: ../../steps.pm:1
+#, c-format
+msgid "Add a user"
+msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
-msgid "Connection name"
-msgstr "BaДџlantД± adД±"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install system"
+msgstr "Sistemi qur"
-#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
-msgid "Phone number"
-msgstr "Telefon nömrəsi"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose packages to install"
+msgstr "Qurulacaq paketləri seçin"
-#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
-msgid "Login ID"
-msgstr "GiriЕџ adД±"
+#: ../../steps.pm:1
+#, c-format
+msgid "Format partitions"
+msgstr "Bölmə şəkilləndirilməsi"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "CHAP"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Partitioning"
+msgstr "Г‡ap Edici"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your keyboard"
+msgstr "Klaviaturanızı seçin"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Select installation class"
+msgstr "Quruluş sinifini seçin"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Hard drive detection"
+msgstr "Sabit disk seçkisi"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure mouse"
+msgstr "Siçan qurğuları"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "License"
msgstr ""
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "PAP"
-msgstr "PAP"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your language"
+msgstr "İşlətdiyiniz dili seçin"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Script-based"
-msgstr "Skript Й™saslД±"
+#: ../../ugtk2.pm:1
+#, c-format
+msgid "utopia 25"
+msgstr ""
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Terminal-based"
-msgstr "Terminal Й™saslД±"
+#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
+#, c-format
+msgid "logdrake"
+msgstr "logdrake"
-#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
-msgid "Domain name"
-msgstr "SahЙ™(domain) adД±"
+#: ../../ugtk.pm:1
+#, c-format
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
-msgid "First DNS Server (optional)"
-msgstr "Birinci DNS Vericisi (arzuya görə)"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
-msgid "Second DNS Server (optional)"
-msgstr "İkinci DNS Vericisi (arzuya görə)"
+#: ../../Xconfig/card.pm:1
+#, 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."
+
+#: ../../Xconfig/card.pm:1
+#, 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"
+
+#: ../../Xconfig/card.pm:1
+#, 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."
+
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlД±q sГјr'Й™tlЙ™ndirmЙ™si ilЙ™ XFree %s"
-#: ../../network/modem.pm_.c:95
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"Sizin kartД±nД±zД±n 3D sГјr'Й™tlЙ™ndirmЙ™ dЙ™stЙ™yi ola bilЙ™r, amma sadecЙ™ olaraq "
+"XFree %s\n"
+"ilЙ™ dГјzgГјn iЕџlЙ™yЙ™r.\n"
+"DД°QQЖЏT! BU SINAQ MЖЏRHЖЏLЖЏSINDЖЏDIR VЖЏ KOMPГњTERД°NД°Z DONDURA BILЖЏR.\n"
+"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
+"bir seçki olar."
-#: ../../network/modem.pm_.c:97
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"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 ""
+"Sizin kartД±nД±zД±n 3D sГјr'Й™tlЙ™ndirmЙ™ dЙ™stЙ™yi ola bilЙ™r, amma sadecЙ™ olaraq "
+"XFree %s\n"
+"ilЙ™ dГјzgГјn iЕџlЙ™yЙ™r.\n"
+"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
+"bir fikir olar."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Do nothing"
-msgstr "amma oxЕџamД±r"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Install rpm"
-msgstr "Qurulum"
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "TЙ™kcЙ™ \"%s\" kartД±nД± qur (%s)"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Title"
-msgstr "CЙ™dvЙ™l"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Use Xinerama extension"
+msgstr "Xinerama ifadЙ™lЙ™rini iЕџlЙ™t"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Configure all heads independently"
+msgstr "BГјtГјn baЕџlД±qlarД± ayrД± ayrД± quraЕџdД±r"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Which configuration of XFree do you want to have?"
+msgstr "NecЙ™ bir XFree qurДџusunu istЙ™yirsiniz?"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree configuration"
+msgstr "XFree quraЕџdД±rД±lmasД±"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Select the memory size of your graphics card"
+msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../network/netconnect.pm_.c:29
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
+"Your system supports multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"\n"
-"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
-"bilЙ™rsiniz."
+"Sizin sisteminiz Г§oxlu baЕџlД±q quraЕџdД±rmasД±nД± dЙ™stЙ™klЙ™yir.\n"
+"NЙ™ etmЙ™k istЙ™yirsiniz?"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Multi-head configuration"
+msgstr "Г‡oxlu BaЕџlД±q quraЕџdД±rД±lmasД±"
+
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Choose an X server"
+msgstr "Bir X vericisi seçin"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "X server"
+msgstr "X verici"
-#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "64 MB or more"
+msgstr "64 MB vЙ™ ya daha Г§ox"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "512 kB"
+msgstr "512 kB"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "256 kB"
+msgstr "256 kB"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"You can reconfigure your connection."
+"%s"
msgstr ""
+"Mövcud qurğuları saxlayım?\n"
+"Hal-hazД±rkД± qurДџular:\n"
"\n"
-"BaДџlantД±nД±zД± yenidЙ™n quraЕџdД±ra bilЙ™rsiniz."
+"%s"
-#: ../../network/netconnect.pm_.c:29
-msgid "You are currently connected to internet."
-msgstr "ArtД±q Д°nternetЙ™ baДџlД±sД±nД±z."
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Options"
+msgstr "Seçənəklər"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
+msgid "Test"
+msgstr ""
-#: ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolution"
+msgstr "Rezolyusiya"
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm:1
+#, fuzzy, c-format
+msgid "Graphic Card"
+msgstr "Ekran kartД±"
+
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakperm:1
+#: ../../standalone/draksplash:1 ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
+#, c-format
+msgid "Quit"
+msgstr "Г‡Д±x"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Vertical refresh rate"
+msgstr "Ећaquli yenilЙ™mЙ™ sГјr'Й™ti"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Horizontal refresh rate"
+msgstr "ГњfГјqi yenilЙ™mЙ™ sГјr'Й™ti"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"You can connect to Internet or reconfigure your connection."
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
-"\n"
-"Д°stЙ™sЙ™niz Д°nternetЙ™ baДџlana bilЙ™rsiniz ya da yeniden quraЕџdД±ra bilЙ™rsiniz."
+"Buradaki iki vacib parametr ГјfГјqi ve Еџaquli yenilЙ™mЙ™ sГјr'Й™tlЙ™ridir.\n"
+"Seçərkən monitorunuzun qabiliyyətinin üstündə bir parametr\n"
+"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."
-#: ../../network/netconnect.pm_.c:32
-msgid "You are not currently connected to Internet."
-msgstr "HЙ™lЙ™ Д°nternetЙ™ baДџlД± deyilsiniz."
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgstr ""
-#: ../../network/netconnect.pm_.c:36
-msgid "Connect"
-msgstr "BaДџlan"
+#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Vendor"
+msgstr "Geri al"
-#: ../../network/netconnect.pm_.c:37
-msgid "Disconnect"
-msgstr "BaДџlantД±nД± kЙ™s"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play"
+msgstr ""
-#: ../../network/netconnect.pm_.c:38
-#, fuzzy
-msgid "Configure the connection"
-msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Choose a monitor"
+msgstr "Monitorunuzu seçin"
-#: ../../network/netconnect.pm_.c:41
-msgid "Internet connection & configuration"
-msgstr "Д°nternet baДџlantД±sД± & quraЕџdД±rД±lmasД±"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Graphics card: %s"
+msgstr "Ekran kartД±: %s"
-#: ../../network/netconnect.pm_.c:94
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Choose the resolution and the color depth"
+msgstr "Rezolyusiya və rəng dərinliyini seçin"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolutions"
+msgstr "Rezolyusiyalar"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rЙ™ng (32 bits)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "16 million colors (24 bits)"
+msgstr "16 milyon rЙ™ng (24 bits)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "65 thousand colors (16 bits)"
+msgstr "65 min rЙ™ng (16 bits)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "32 thousand colors (15 bits)"
+msgstr "32 min rЙ™ng (15 bits)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "256 colors (8 bits)"
+msgstr "256 rЙ™ng (8 bits)"
+
+#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
+msgid "Is this the correct setting?"
+msgstr "DoДџrudur?"
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Leaving in %d seconds"
+msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid ""
+"An error occurred:\n"
+"%s\n"
+"Try to change some parameters"
msgstr ""
-"\n"
-"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:103
+#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
+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"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Do you want to test the configuration?"
+msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Test of the configuration"
+msgstr "QurДџularД±n sД±naДџД±"
+
+#: ../../Xconfig/various.pm:1
+#, fuzzy, c-format
+msgid "What norm is your TV using?"
+msgstr "ISDN bağlantınızın növü nədir?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
+"Do you have this feature?"
msgstr ""
-"\n"
-"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:132 ../../network/netconnect.pm_.c:272
-#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
-msgid "Network Configuration"
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../network/netconnect.pm_.c:133
+#: ../../Xconfig/various.pm:1
+#, c-format
msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
+"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 ""
-"Şəbəkədən quraşdırması apardığınız üçün şəbəkəniz artıq qurulmuş olmalıdır.\n"
-"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
-"et'Й™ basД±n.\n"
+"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
+"Açılışda X Window ilə başlamaq istəyirsiniz?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphical interface at startup"
+msgstr "X ilə Açılış"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 sГјrГјcГј: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 verici: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Rezolyusiya: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "RЙ™ng dЙ™rinliyi: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics memory: %s kB\n"
+msgstr "Ekran kartД± yaddaЕџД±: %s KB\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics card: %s\n"
+msgstr "Ekran kartД±: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Monitorun ГњfГјqi YenilЙ™mЙ™si: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor HorizSync: %s\n"
+msgstr "Monitorun Ећaquli DaramasД±: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor: %s\n"
+msgstr "Monitor: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse device: %s\n"
+msgstr "Siçan avadanlığı: %s\n"
-#: ../../network/netconnect.pm_.c:157
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse type: %s\n"
+msgstr "Siçan növü: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Keyboard layout: %s\n"
+msgstr "Klavatura dГјzГјlГјЕџГј: %s\n"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Options: %s"
+msgstr "Seçənəklər: %s"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount point: "
+msgstr "Bağlama nöqtəsi: "
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Server: "
+msgstr "Verici"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Please enter the WebDAV server URL"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount point"
+msgstr "Bağlama nöqtəsi"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "Server"
+msgstr "Verici"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount"
+msgstr "BaДџla"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Unmount"
+msgstr "AyД±r"
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "New"
+msgstr "yeni"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
msgid ""
-"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"
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
msgstr ""
-"Şəbəkə Quraşdırma Sehirbazına Xoç Gəldiniz\n"
-"\n"
-"Д°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:163
-msgid "Choose the profile to configure"
-msgstr "Qurulacaq profili seçin"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``%s'' instead"
+msgstr "YerinЙ™ ``%s'' iЕџlЙ™t"
-#: ../../network/netconnect.pm_.c:164
-msgid "Use auto detection"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Type"
+msgstr "Növ"
-#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
-#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
-#: ../../standalone/drakfloppy_.c:118
-msgid "Expert Mode"
-msgstr "Usta Modu"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``Unmount'' first"
+msgstr "ЖЏvvЙ™lcЙ™ ``AyД±r'-Д± iЕџlЙ™t"
-#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
-msgid "Detecting devices..."
-msgstr "AvadanlД±qlar tanД±nД±r..."
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Delete"
+msgstr "Sil"
-#: ../../network/netconnect.pm_.c:214
-msgid "Normal modem connection"
-msgstr "Normal modem tЙ™sbiti"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create"
+msgstr "Yarat"
-#: ../../network/netconnect.pm_.c:214
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected on port %s"
-msgstr "%s qapД±sД±nda tapД±ldД±"
+msgid "Filesystem types:"
+msgstr "Fayl sistemi növü:"
-#: ../../network/netconnect.pm_.c:215
-#, fuzzy
-msgid "Winmodem connection"
-msgstr "Normal modem tЙ™sbiti"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Empty"
+msgstr "BoЕџ"
-#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "detected"
-msgstr "%s tapД±ldД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Windows"
+msgstr "NIS sahЙ™si"
-#: ../../network/netconnect.pm_.c:216
-msgid "ISDN connection"
-msgstr "ISDN BaДџlantД±sД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "HFS"
+msgstr "HFS"
-#: ../../network/netconnect.pm_.c:216
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected %s"
-msgstr "%s tapД±ldД±"
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/netconnect.pm_.c:218
-msgid "Cable connection"
-msgstr "Kabel baДџlantД±sД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Journalised FS"
+msgstr "baДџlama iflas etdi"
-#: ../../network/netconnect.pm_.c:218
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Kabel baДџlantД±sД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../network/netconnect.pm_.c:219
-msgid "LAN connection"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "No hard drives found"
+msgstr "Yerli Г‡ap Edici"
-#: ../../network/netconnect.pm_.c:219
-msgid "ethernet card(s) detected"
-msgstr "eternet kart tapД±ldД±"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please click on a partition"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../network/netconnect.pm_.c:222
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "İstifadə edəcəyiniz vasitəni seçin"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid ""
+"You have one big MicroSoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
+msgstr ""
+"Tək bir böyük disk bölməniz var\n"
+"(Й™sasЙ™n MS DOS/Windows istifadЙ™ edЙ™r).\n"
+"Əvvəlcə bu disk bölməsinin böyüklüyünü dəyişdirməyinizi\n"
+"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"
-#: ../../network/netconnect.pm_.c:246
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Choose action"
+msgstr "Monitorunuzu seçin"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Wizard"
+msgstr "Sehirbaz"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
msgstr ""
+"Aboot istifadЙ™ etmЙ™yi istЙ™yirsinizsЙ™, boЕџ disk sahЙ™si (2048 sektor bЙ™sdir.)\n"
+"buraxmayД± unutmayД±n."
-#: ../../network/netconnect.pm_.c:247
-#, fuzzy
-msgid "Internet connection"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please make a backup of your data first"
+msgstr "ЖЏvvЙ™lcЙ™ datanД±zД±n yedЙ™yini alД±n"
-#: ../../network/netconnect.pm_.c:253
-msgid "Do you want to start the connection at boot?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read carefully!"
+msgstr "DiqqЙ™tlЙ™ Oxuyun!"
-#: ../../network/netconnect.pm_.c:267
-msgid "Network configuration"
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key (again)"
+msgstr ""
-#: ../../network/netconnect.pm_.c:268
-msgid "The network needs to be restarted"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key"
msgstr ""
-#: ../../network/netconnect.pm_.c:272
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "The encryption keys do not match"
+msgstr "Parollar uyДџun gЙ™lmir"
+
+#: ../../diskdrake/interactive.pm:1
+#, 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:1
+#, c-format
+msgid "Choose your filesystem encryption key"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Filesystem encryption key"
+msgstr "Fayl sistemi növü: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Type: "
+msgstr "Növ: "
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "%d data yolunda, %d nö'li\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Bölmə cədvəli növü: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-disklЙ™ri %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Info: "
+msgstr "MЙ™'lumat: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "GeometriyasД±: %s silindr, %s baЕџ, %s sektor\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s\n"
+msgstr "Böyüklük: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read-only"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Device: "
+msgstr "AvadanlД±q: "
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"ЕћЙ™bЙ™kЙ™nin yenidЙ™n baЕџladД±lmasД± sД±rasД±nda xЙ™ta oldu: \n"
"\n"
-"%s"
+"Bu, ikili açılış üçün xüsusi\n"
+"Bootstrap-dД±r.\n"
-#: ../../network/netconnect.pm_.c:282
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
msgstr ""
-"TЙ™brik edirik, internet vЙ™ ЕџЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД± qurtardД±.\n"
"\n"
-"QurДџular indi sisteminizЙ™ Й™lavЙ™ edilЙ™cЙ™k.\n"
+"Bəlkə də bu bir Sürücü bölməsidir.\n"
+"Onda bunu ele belЙ™cЙ™ buraxД±n.\n"
-#: ../../network/netconnect.pm_.c:286
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-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."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "Loopback faylД± adД±: %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID-disks %s\n"
+msgstr "RAID-disklЙ™ri %s\n"
-#: ../../network/netconnect.pm_.c:287
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Chunk size %s\n"
+msgstr "Parça böyüklüyü %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Level %s\n"
+msgstr "SЙ™viyyЙ™ %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
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."
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Ana açılma bölməsi\n"
+" (MS-DOS açılışı üçün)\n"
-#: ../../network/network.pm_.c:278
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"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."
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"DİQQƏT: Bu avadanlıq daha əvvəl İntenetə bağlanmaq üçün qurulmuşdur.\n"
-"AvadanlД±ДџД±n qurДџularД±nД± dЙ™yiЕџdirmaЙ™k istЙ™mirsiniz isЙ™,\n"
-"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."
+"Loopback faylД±:\n"
+" %s\n"
-#: ../../network/network.pm_.c:283
-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"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Configuring network device %s"
-msgstr "%s ЕџЙ™bЙ™kЙ™ avadanlД±ДџД± qurulur"
+msgid "Mounted\n"
+msgstr "BaДџlД±\n"
-#: ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid " (driver %s)"
-msgstr " (sГјrГјcГј %s)"
+msgid "Not formatted\n"
+msgstr "ЕћЙ™killЙ™ndirilmЙ™miЕџ\n"
-#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
-#: ../../standalone/drakconnect_.c:464
-msgid "IP address"
-msgstr "IP ГјnvanД±"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Formatted\n"
+msgstr "ЕћЙ™killЙ™ndirilmiЕџ\n"
-#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
-#: ../../standalone/drakgw_.c:291
-msgid "Netmask"
-msgstr "Netmask"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "Silindr %d -dЙ™n silindr %d-yЙ™\n"
-#: ../../network/network.pm_.c:298
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ", %s sectors"
+msgstr ", %s sektor"
-#: ../../network/network.pm_.c:298
-msgid "Automatic IP"
-msgstr "AvtomatlaЕџdД±rД±lmД±Еџ IP"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s"
+msgstr "Böyüklüyü: %s"
-#: ../../network/network.pm_.c:299
-#, fuzzy
-msgid "Start at boot"
-msgstr "Açılışda başladılır"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start: sector %s\n"
+msgstr "BaЕџlanДџД±c: sektor %s\n"
-#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Name: "
+msgstr "Ad: "
+
+#: ../../diskdrake/interactive.pm:1
+#, 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:1
+#, c-format
+msgid "partition %s is now known as %s"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "Rezolyusiya: %s\n"
-#: ../../network/network.pm_.c:326
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Copying %s"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Moving files to the new partition"
+msgstr "Yeni bölmələr üçün boş sahə yoxdur"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0'."
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../network/network.pm_.c:330
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Hide files"
+msgstr "mkraid iflas etdi"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Move files to the new partition"
+msgstr "Yeni bölmələr üçün boş sahə yoxdur"
+
+#: ../../diskdrake/interactive.pm:1
+#, 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:1
+#, c-format
+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:1
+#, 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:1
+#, fuzzy, c-format
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0'."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
msgstr ""
+"Bir proqram tə'minatlı RAID bölməsini kök qovluğu (/) olaraq tə'yin "
+"etdiniz.\n"
+"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
+"Й™lavЙ™ etmЙ™yi unutmayД±n"
-#: ../../network/network.pm_.c:350
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one"
+"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 ""
-"XahiЕџ edirik kompГјterinizn adД±nД± girin.\n"
-"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."
+"Seçdiyiniz bölüm fiziki sahənin üstündə (1024. silindrin xaricində)\n"
+"/boot bölümünüz yoxdur. Lilo açılış idarəcisindən istifadə etmək "
+"istЙ™yirsinizsЙ™, \n"
+"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../network/network.pm_.c:355
-msgid "DNS server"
-msgstr "DNS verici"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
+msgstr ""
+"Bağışlayın, /boot bölməsini bu sürücüdə yarada bilməyəcəm.\n"
+"Onda ya LILO istifadə edə bilməyəcəksiniz ve /boot bölümünə \n"
+"ehtiyacД±nД±z yoxdur vЙ™ ya LILO istifadЙ™sini sД±nayarsД±nД±z, ancaq LILO iЕџlЙ™mЙ™yЙ™ "
+"bilЙ™r."
-#: ../../network/network.pm_.c:356
+#: ../../diskdrake/interactive.pm:1
+#, 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:1
#, c-format
-msgid "Gateway (e.g. %s)"
+msgid "What type of partitioning?"
+msgstr "Nəcə bölməlandirmə istəyirsən?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Be careful: this operation is dangerous."
+msgstr "DiqqЙ™tlД± olun: bu Й™mЙ™liyyat tЙ™hlГјkЙ™lidir."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "chunk size"
+msgstr "parça böyüklüyü"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "level"
+msgstr "sЙ™viyyЙ™"
+
+#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "device"
+msgstr "avadanlД±q"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Various"
msgstr ""
-#: ../../network/network.pm_.c:358
-msgid "Gateway device"
-msgstr "Keçit avadanlığı"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Mount options"
+msgstr "Modul seçənəkləri:"
-#: ../../network/network.pm_.c:363
-#, fuzzy
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "File already exists. Use it?"
+msgstr "Fayl onsuz da vardД±r. Д°ЕџlЙ™dilsin?"
-#: ../../network/network.pm_.c:367
-#, fuzzy
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "File is 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"
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "VЙ™kil vericilЙ™r quraЕџdД±rД±lmasД±"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Give a file name"
+msgstr "HЙ™qiqi adД±"
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP vЙ™kil verici"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Filesystem type: "
+msgstr "Fayl sistemi növü: "
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP vЙ™kil verici"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size in MB: "
+msgstr "MB cinsindən böyüklük: "
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (useful for laptops)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: "
+msgstr "Loopback fayl adД±: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback"
+msgstr "Loopback"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition can't be used for loopback"
+msgstr "Bu disk bölməsi loopback üçün işlədilməz"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM name?"
+msgstr "LVM adД±?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "new"
+msgstr "yeni"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing LVM to add to"
+msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing RAID to add to"
+msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving partition..."
+msgstr "Bölmə daşınır..."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving"
+msgstr "DaЕџД±nД±r"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which sector do you want to move it to?"
+msgstr "HansД± sektora daЕџД±maq istЙ™yirsiniz?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Sector"
+msgstr "Sektor"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which disk do you want to move it to?"
+msgstr "HansД± diskЙ™ daЕџД±maq istЙ™yirsiniz?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move"
+msgstr "DaЕџД±"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "New size in MB: "
+msgstr "MB cinsindən böyüklük: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose the new size"
+msgstr "Yeni böyüklük seçin"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "Böyüklüyünü Dəyişdir"
+
+#: ../../diskdrake/interactive.pm:1
+#, 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"
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+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"
-#: ../../network/network.pm_.c:388
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition is not resizeable"
+msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../network/shorewall.pm_.c:26
-msgid "Firewalling configuration detected!"
-msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Computing FAT filesystem bounds"
+msgstr "Fat fayl sistemi uclarД± hesaplanД±r"
-#: ../../network/shorewall.pm_.c:27
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "%s avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"DiqqЙ™t! Var olan Firewall qurДџusu tapД±ldД±. YГјklЙ™mЙ™dЙ™n sonra bir az Й™l "
-"gЙ™zdirЙ™ bilЙ™rsiniz."
+"Bu disk bölməsi loopback üçün istifadə edildiyindən ötrü bağlanma "
+"nöqtəsindən ayrıla bilinmir.\n"
+"ЖЏvvЙ™lcЙ™ loopback-Д± lЙ™Дџv edin."
-#: ../../network/tools.pm_.c:57
-msgid "Internet configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount device %s?"
+msgstr "%s avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
-#: ../../network/tools.pm_.c:58
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Д°nternete giriЕџi indi sД±namaq istЙ™yirsiniz?"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount the loopback file %s?"
+msgstr "%s loopback avadanlД±ДџД±nД± haraya baДџlamaq istЙ™yirsiniz?"
-#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
-msgid "Testing your connection..."
-msgstr "BaДџlantД±nД±z sД±nanД±r..."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Switching from ext2 to ext3"
+msgstr ""
-#: ../../network/tools.pm_.c:70
-msgid "The system is now connected to Internet."
-msgstr "Д°nternetЙ™ artД±q baДџlД±sД±nД±z"
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Which filesystem do you want?"
+msgstr "HansД± dili istЙ™yirsiniz?"
-#: ../../network/tools.pm_.c:71
-msgid "For security reason, it will be disconnected now."
-msgstr "TЙ™hlГјkЙ™sizlik sЙ™bЙ™bi ilЙ™ indi baДџlantД± qopacaqdД±r."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Change partition type"
+msgstr "Bölmə növünü Dəyişdir"
-#: ../../network/tools.pm_.c:72
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
+"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Sisteminiz Д°nternetЙ™ baДџlД± deyil.\n"
-"BaДџlantД±nД± yenidЙ™n quraЕџdД±rД±n"
-
-#: ../../network/tools.pm_.c:96
-msgid "Connection Configuration"
-msgstr "BaДџlantД± quraЕџdД±rД±lmasД±"
+"%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"
-#: ../../network/tools.pm_.c:97
-msgid "Please fill or check the field below"
-msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Remove the loopback file?"
+msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
-msgid "Card IRQ"
-msgstr "Kart IRQ"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+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 ""
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
-msgid "Card mem (DMA)"
-msgstr "Kart mem (DMA)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Preference: "
+msgstr "XГјsusiyyЙ™tlЙ™r: "
-#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
-msgid "Card IO"
-msgstr "Kart IO"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start sector: "
+msgstr "BaЕџlanДџД±Г§ sektoru: "
-#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
-msgid "Card IO_0"
-msgstr "Kart IO_0"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create a new partition"
+msgstr "Yeni bölmə yarat"
-#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
-msgid "Card IO_1"
-msgstr "Kart IO_1"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Use for loopback"
+msgstr "Loopback üçün istifadə et"
-#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
-msgid "Your personal phone number"
-msgstr "Sizin şəxsi telefon nömrəniz"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Modify RAID"
+msgstr "RAIDi dЙ™yiЕџdir"
-#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
-msgid "Provider name (ex provider.net)"
-msgstr "Д°nternet xidmЙ™t vericinizin adД± (mЙ™sЙ™lЙ™n azeronline.com)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from LVM"
+msgstr "LVMdЙ™n ayД±r"
-#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
-msgid "Provider phone number"
-msgstr "İXM telefon nömrəsi"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from RAID"
+msgstr "RAIDdЙ™n ayД±r"
-#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
-msgid "Provider dns 1 (optional)"
-msgstr "Dns xidmətcisi 1 (arzuya görə)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to LVM"
+msgstr "LVMЙ™ Й™lavЙ™ et"
-#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
-msgid "Provider dns 2 (optional)"
-msgstr "Dns xidmətcisi 2 (arzuya görə)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to RAID"
+msgstr "RAIDЙ™ Й™lavЙ™ et"
-#: ../../network/tools.pm_.c:109
-#, fuzzy
-msgid "Choose your country"
-msgstr "Klaviaturanızı seçin"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Format"
+msgstr "ЕћЙ™killЙ™ndir"
-#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
-msgid "Dialing mode"
-msgstr "YД±Дџma modu"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Detailed information"
+msgstr "Mə'lumatı göstər"
-#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
-#, fuzzy
-msgid "Connection speed"
-msgstr "Bağlantı növü:"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Trying to rescue partition table"
+msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Bağlantı növü:"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
+msgstr ""
+"Disket sГјrГјcГјyЙ™ bir disket yerlЙ™Еџdirin\n"
+"Bu disketdЙ™ki bГјtГјn mЙ™'lumatlar yox olacaqdД±r"
-#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
-msgid "Account Login (user name)"
-msgstr "Hesab GiriЕџi (istifadЙ™Г§i adД±)"
+#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Warning"
+msgstr "XЙ™bЙ™rdarlД±q"
-#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
-#: ../../standalone/drakconnect_.c:647
-msgid "Account Password"
-msgstr "Hesap Parolu"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Select file"
+msgstr "Fayl seç"
-#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
-msgid "United Kingdom"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
+"Davam etmЙ™k istЙ™yirsiniz?"
-#: ../../partition_table.pm_.c:603
-msgid "mount failed: "
-msgstr "baДџlama iflas etdi: "
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Removable media automounting"
+msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../partition_table.pm_.c:667
-msgid "Extended partition not supported on this platform"
-msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Reload partition table"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Rescue partition table"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../partition_table.pm_.c:685
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Restore partition table"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Save partition table"
+msgstr "Bölmə cədvəlini yaz"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
-msgstr ""
-"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."
+"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"
-#: ../../partition_table.pm_.c:774
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "%s faylД±ndan qurtarД±lД±Еџda xЙ™ta: %s"
+msgid "I can't add any more partition"
+msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../partition_table.pm_.c:776
-msgid "Bad backup file"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All primary partitions are used"
+msgstr "Bütün birinci bölmələr istifadədədir"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Hard drive information"
+msgstr "Sabit disk seçkisi"
-#: ../../partition_table.pm_.c:796
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Error writing to file %s"
-msgstr "%s faylД±na yazarkЙ™n xЙ™ta oldu"
+msgid "Auto allocate"
+msgstr "Avtomatik ayД±r"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Clear all"
+msgstr "HamД±sД±nД± tЙ™mizlЙ™"
-#: ../../partition_table/raw.pm_.c:192
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without writing the partition table?"
+msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without saving"
+msgstr "Qeyd etmЙ™dЙ™n Г‡Д±x"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Continue anyway?"
+msgstr "Davam edilsin?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to expert mode"
+msgstr "Usta moduna keç"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to normal mode"
+msgstr "Normal moda keç"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Undo"
+msgstr "Geri al"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Exit"
+msgstr "Ext2"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Choose a partition"
+msgstr "Monitorunuzu seçin"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Choose another partition"
+msgstr "Yeni bölmə yarat"
+
+#: ../../diskdrake/removable.pm:1
+#, fuzzy, c-format
+msgid "Change type"
+msgstr "Bölmə növünü Dəyişdir"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Search servers"
+msgstr "DNS verici"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain"
+msgstr "NIS sahЙ™si"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username"
+msgstr "Д°stifadЙ™Г§i adД±"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random trash"
+"Please enter your username, password and domain name to access this host."
msgstr ""
-"BЙ™'zЙ™n sГјrГјcГјnГјzdЙ™ pis ЕџeylЙ™r ola bilЙ™r.\n"
-"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:26
-msgid "must have"
-msgstr "alД±nmalД±"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain Authentication Required"
+msgstr "TanД±tma"
-#: ../../pkgs.pm_.c:27
-msgid "important"
-msgstr "vacib"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Another one"
+msgstr "Д°nternet"
-#: ../../pkgs.pm_.c:28
-msgid "very nice"
-msgstr "Й™la"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Which username"
+msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../pkgs.pm_.c:29
-msgid "nice"
-msgstr "gözəl"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../pkgs.pm_.c:30
-msgid "maybe"
-msgstr "bЙ™lkЙ™"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "cpu # "
+msgstr ""
-#: ../../printer/data.pm_.c:18
-msgid "PDQ - Print, Don't Queue"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SMBus controllers"
msgstr ""
-#: ../../printer/data.pm_.c:19
-msgid "PDQ"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "USB controllers"
msgstr ""
-#: ../../printer/data.pm_.c:30
-msgid "LPD - Line Printer Daemon"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SCSI controllers"
msgstr ""
-#: ../../printer/data.pm_.c:31
-msgid "LPD"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "(E)IDE/ATA controllers"
msgstr ""
-#: ../../printer/data.pm_.c:51
-msgid "LPRng - LPR New Generation"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Joystick"
msgstr ""
-#: ../../printer/data.pm_.c:52
-msgid "LPRng"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Scanner"
+msgstr "Ekran kartınızı seçin"
+
+#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Unknown/Others"
+msgstr "Гњmumi"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Bridges and system controllers"
msgstr ""
-#: ../../printer/data.pm_.c:75
-msgid "CUPS - Common Unix Printing System"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Modem"
+msgstr "Siçan"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Ethernetcard"
+msgstr "Eternet KartД±"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Processors"
msgstr ""
-#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
-msgid "CUPS"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Webcam"
msgstr ""
-#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
-#: ../../printer/detect.pm_.c:250
-msgid "Unknown Model"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Soundcard"
+msgstr "SЙ™s kartД±"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Other MultiMedia devices"
+msgstr "DigЙ™r"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Tvcard"
+msgstr "TV kartД±"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Videocard"
+msgstr "Ekran modu"
+
+#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Tape"
+msgstr "Növ"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "DVD-ROM"
msgstr ""
-#: ../../printer/main.pm_.c:26
-msgid "Local printer"
-msgstr "Yerli Г‡ap Edici"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CD/DVD burners"
+msgstr ""
-#: ../../printer/main.pm_.c:27
-msgid "Remote printer"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CDROM"
+msgstr ""
-#: ../../printer/main.pm_.c:28
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Disk"
+msgstr "Danimarka dili"
-#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Uzaq Г§ap edici vericisi(lpd)"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Zip"
+msgstr ""
-#: ../../printer/main.pm_.c:30
-#, fuzzy
-msgid "Network printer (TCP/Socket)"
-msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Floppy"
+msgstr "DisketЙ™ qeyd et"
-#: ../../printer/main.pm_.c:31
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Let me pick any driver"
+msgstr ""
-#: ../../printer/main.pm_.c:32
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Г‡ap Edici Vericisi"
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Driver:"
+msgstr "SГјrГјcГј"
-#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"If you really think that you know which driver is the right one for your "
+"card\n"
+"you can pick one in the above list.\n"
+"\n"
+"The current driver for your \"%s\" sound card is \"%s\" "
+msgstr ""
-#: ../../printer/main.pm_.c:34
-msgid "Pipe job into a command"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Choosing an arbitratry driver"
msgstr ""
-#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
-#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
-msgid "Unknown model"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The classic bug sound tester is to run the following commands:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
+"by default\n"
+"\n"
+"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
-#: ../../printer/main.pm_.c:317
-#, fuzzy
-msgid "Local Printers"
-msgstr "Yerli Г‡ap Edici"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Sound trouble shooting"
+msgstr ""
-#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Error: The \"%s\" driver for your sound card is unlisted"
+msgstr ""
-#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid " on parallel port \\/*%s"
+msgid "Unkown driver"
msgstr ""
-#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", USB printer \\/*%s"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../printer/main.pm_.c:334
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
+msgid "No known driver"
msgstr ""
-#: ../../printer/main.pm_.c:337
-msgid ", multi-function device on USB"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
msgstr ""
-#: ../../printer/main.pm_.c:339
-msgid ", multi-function device on HP JetDirect"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No open source driver"
msgstr ""
-#: ../../printer/main.pm_.c:341
-msgid ", multi-function device"
+#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oops the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Trouble shooting"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../printer/main.pm_.c:344
+#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "%s faylД±na yazarkЙ™n xЙ™ta oldu"
+msgid "Sound configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../printer/main.pm_.c:346
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../printer/main.pm_.c:348
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid "No alternative driver"
msgstr ""
-#: ../../printer/main.pm_.c:352
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgid "enable radio support"
msgstr ""
-#: ../../printer/main.pm_.c:356
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+msgid "Radio support:"
msgstr ""
-#: ../../printer/main.pm_.c:358
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "PLL setting:"
+msgstr "ЕћЙ™killЙ™ndirilir"
+
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ", using command %s"
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
-msgid "Raw printer (No driver)"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../printer/main.pm_.c:647
+#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(modul %s)"
+msgid "Tuner type:"
+msgstr "Bölmə növünü Dəyişdir"
-#: ../../printer/main.pm_.c:649
-msgid "(on this machine)"
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Card model:"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed."
msgstr ""
-#: ../../printer/main.pm_.c:674
+#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "CUPS verici IP"
+msgid "Unknown|Generic"
+msgstr "Гњmumi"
-#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
-#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
-#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
-#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
-msgid " (Default)"
-msgstr " (ЖЏsas)"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:27
-msgid "Select Printer Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:28
-msgid "How is the printer connected?"
-msgstr "Г‡ap ediciniz nЙ™ ЕџЙ™kildЙ™ baДџlД±dД±r?"
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../printer/printerdrake.pm_.c:30
-#, fuzzy
+#: ../../interactive/newt.pm:1
+#, fuzzy, c-format
+msgid "Do"
+msgstr "QurtardД±"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (default %s) "
+msgstr "Seçkiniz? (əsas %s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Bad choice, try again\n"
+msgstr "XЙ™talД± tЙ™rcih, tЙ™krar sД±nayД±n\n"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Re-submit"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-"Uzaq CUPS vericiləri üçün heç bir quraşdırmağa lüzüm yoxdur\n"
-"BuradakД± hЙ™r Г§ap edici avtomatik tapД±lacaqdД±r.\n"
-"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printer/printerdrake.pm_.c:38
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid ""
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
-#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "=> There are many things to choose from (%s).\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Uzaq CUPS vericisi"
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "Seçkiniz? (əsas %s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Do you want to click on this button?"
+msgstr "aboot istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../printer/printerdrake.pm_.c:83
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Seçənəklər: %s"
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Seçkiniz? (əsas %s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:84
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"%s modulunun yГјklЙ™nmЙ™si iflas etdi.\n"
+"YenidЙ™n baЕџqa bir parametr ilЙ™ sД±namaq istЙ™yirsiniz?"
-#: ../../printer/printerdrake.pm_.c:88
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Specify options"
+msgstr "Seçənəkləri göstər"
-#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
-#, fuzzy
-msgid "The port number should be an integer!"
-msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Autoprobe"
+msgstr "Avtomatik yoxla"
-#: ../../printer/printerdrake.pm_.c:99
-msgid "CUPS server IP"
-msgstr "CUPS verici IP"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
+msgstr ""
+"Bəzi hallarda, %s sürücü düzgün işləməsi üçün əlavə mə'lumat istəyə bilər.\n"
+"Sürücüler üçün əlavə bir xüsusiyyət göstərmək mi istəyərsiniz, yoxsa\n"
+"sürücülərin lazımi mə'lumatlar üçün avadalığı tanımasını mı istəyərsiniz? \n"
+"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
+"kompüterinizə heç bir şey olmaz."
-#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
-#: ../../standalone/harddrake2_.c:63
-msgid "Port"
-msgstr "QapД±"
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "HansД± %s sГјrГјcГјsГј sД±nansД±n?"
-#: ../../printer/printerdrake.pm_.c:102
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Module options:"
+msgstr "Modul seçənəkləri:"
-#: ../../printer/printerdrake.pm_.c:159
-#, fuzzy
-msgid "Checking your system..."
-msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+#: ../../modules/interactive.pm:1
+#, 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''"
-#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
-#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
-#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
-#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
-#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
-#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
-#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
-#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
-#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
-#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Г‡ap Edici"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "(module %s)"
+msgstr "(modul %s)"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "%s kartı (%s) üçün sürücü yüklənir"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "See hardware info"
+msgstr "AvadanlД±q mЙ™'lumatД±na bax"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Heç %s ara üzü var?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have another one?"
+msgstr "BaЕџqa var?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "%s %s ara ГјzГј tapД±ldД±"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "comma separated strings"
+msgstr "Bölmə şəkilləndirilməsi"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:167
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "a number"
+msgstr "Telefon nömrəsi"
+
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:179
-#, fuzzy
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"The following printers\n"
-"\n"
-msgstr "AЕџaДџД±dakД± paketlЙ™r sistemdЙ™n silinЙ™cЙ™klЙ™r"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"ADSL ilЙ™ internetЙ™ baДџlanmanД±n Й™n yaxЕџД± yolu pppoe'dur.\n"
+"BЙ™zi baДџlantД±lar pptp istifadЙ™ edir, Г§ox azД± isЙ™ dhcp iЕџlЙ™dir.\n"
+"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../printer/printerdrake.pm_.c:180
-#, fuzzy
+#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
+#, c-format
+msgid "Connect to the Internet"
+msgstr "Д°nternetЙ™ baДџlan"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using pppoe) usb"
+msgstr ""
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Alcatel speedtouch usb"
+msgstr ""
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use dhcp"
+msgstr "dhcp istifadЙ™ et"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pptp"
+msgstr "pptpe istifadЙ™ et"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pppoe"
+msgstr "pppoe istifadЙ™ et"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Other ports"
+msgstr "QapД±larД± sД±na"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
-"The following printer\n"
-"\n"
-msgstr "AЕџaДџД±dakД± paketlЙ™r sistemdЙ™n silinЙ™cЙ™klЙ™r"
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:182
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
-"\n"
-"and one unknown printer are "
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:184
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"and %d unknown printers are "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"tinyfirewall configurator\n"
"\n"
-"are "
+"Bu, Linuks Mandrake sisteminiz üçün şəxsi bir firewall quraşdıracaqdır.\n"
+"Daha güclü və e'tibarlı sistem üçün xahiş edirik xüsusi MandrakeSecurity "
+"Firewall\n"
+"buraxД±lД±ЕџД±nД± tЙ™dqiq edin."
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "No network card"
+msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "POP and IMAP Server"
+msgstr "Verici"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Mail Server"
+msgstr "Databeyz"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Domain Name Server"
+msgstr "SahЙ™(domain) adД±"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "Verici"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "Ev sahibi adД±"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Host name"
+msgstr "Ev sahibi adД±"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
msgid ""
"\n"
-"is "
+"\n"
+"Enter a Zeroconf host name without any dot if you don't\n"
+"want to use the default host name."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:189
-#, fuzzy
-msgid "directly connected to your system"
-msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"XahiЕџ edirik kompГјterinizД±n adД±nД± girin.\n"
+"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:1 ../../network/network.pm:1
+#, c-format
+msgid "Configuring network"
+msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
-#: ../../printer/printerdrake.pm_.c:192
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid "no network card found"
+msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+
+#: ../../network/ethernet.pm:1
+#, c-format
msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
+"Please choose which network adapter you want to use to connect to Internet."
+msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
+
+#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "Choose the network interface"
+msgstr "Şəbəkə ara üzünü seçin"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
+"Bu baДџlantД± ЕџЙ™klini qura bilmЙ™rЙ™m."
-#: ../../printer/printerdrake.pm_.c:194
+#: ../../network/ethernet.pm:1
#, c-format
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client."
msgstr ""
+"HansД± dhcp alД±cД±sД±nД± istifadЙ™ edЙ™cЙ™ksiniz?\n"
+"ЖЏsasД± dhcp-client dir"
-#: ../../printer/printerdrake.pm_.c:200
-#, fuzzy
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Heç bir ISDN PCI kart tapılmaı. Sonrakı ekrandakılardan seçin."
-#: ../../printer/printerdrake.pm_.c:214
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"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."
-#: ../../printer/printerdrake.pm_.c:215
-#, fuzzy
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Г‡ap edicini sД±namaq istЙ™yirsiniz?"
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "HansД±sД± sizin ISDN kartД±nД±zdД±r?"
-#: ../../printer/printerdrake.pm_.c:217
-#, fuzzy
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISDN Configuration"
+msgstr "ISDN quraЕџdД±rД±lmasД±"
-#: ../../printer/printerdrake.pm_.c:218
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Abort"
+msgstr "DayandД±r"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Continue"
+msgstr "Davam et"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
+"\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr ""
+"\n"
+"ISA kartД±nД±z var isЙ™ sonrakД± ekrandakД± qiymЙ™tlЙ™r doДџru olmalД±dД±r.\n"
+"\n"
+"PCMCIA kartД±nД±z var isЙ™ kartД±nД±zД±n irq vЙ™ ya io'sunu bilmЙ™lisiniz.\n"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "I don't know"
+msgstr "BilmirЙ™m"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Hansı növ kartınız var?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:219
+#: ../../network/isdn.pm:1
#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "HansД± protokolu istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Protocol for the rest of the world"
+msgstr "BГјtГјn dГјnya"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"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)"
-#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
-#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
-#: ../../printer/printerdrake.pm_.c:3060
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Г‡ap Edicisiz"
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "European protocol"
+msgstr "Açılış Protokolu"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "European protocol (EDSS1)"
+msgstr "Avropa (EDSS1)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
+"İnternet xidmət vericinizi seçin.\n"
+"Siyahıda deyilsə Siyahıda deyil'i seçin."
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "External ISDN modem"
+msgstr "Xarici ISDN kart"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Daxili ISDN kart"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind is your ISDN connection?"
+msgstr "ISDN bağlantınızın növü nədir?"
+
+#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#, c-format
+msgid "Network Configuration Wizard"
+msgstr "ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД± SehirbazД±"
-#: ../../printer/printerdrake.pm_.c:259
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Old configuration (isdn4net)"
+msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "New configuration (isdn-light)"
+msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
+
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
+"Which ISDN configuration do you prefer?\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:272
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Do nothing"
+msgstr "amma oxЕџamД±r"
+
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Install rpm"
+msgstr "Qurulum"
+
+#: ../../network/modem.pm:1
+#, c-format
msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
+
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Title"
+msgstr "CЙ™dvЙ™l"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "İkinci DNS Vericisi (arzuya görə)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "Birinci DNS Vericisi (arzuya görə)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Domain name"
+msgstr "SahЙ™(domain) adД±"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "CHAP"
+msgstr ""
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Script-based"
+msgstr "Skript Й™saslД±"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Terminal-based"
+msgstr "Terminal Й™saslД±"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Login ID"
+msgstr "GiriЕџ adД±"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Phone number"
+msgstr "Telefon nömrəsi"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection name"
+msgstr "BaДџlantД± adД±"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Dialup options"
+msgstr "Çevirməli şəbəkə seçənəkləri"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "Network Configuration"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+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."
+msgstr ""
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+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:1
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
+msgstr ""
+"TЙ™brik edirik, internet vЙ™ ЕџЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД± qurtardД±.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) and you Windows machines must be connected and "
-"turned on.\n"
+"QurДџular indi sisteminizЙ™ Й™lavЙ™ edilЙ™cЙ™k.\n"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you don't need "
-"it.\n"
+"%s"
+msgstr ""
+"ЕћЙ™bЙ™kЙ™nin yenidЙ™n baЕџladД±lmasД± sД±rasД±nda xЙ™ta oldu: \n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"%s"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr ""
+"Bu paket yenilЙ™nmЙ™lidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Network configuration"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+#: ../../network/netconnect.pm:1
+#, c-format
+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:1
+#, fuzzy, c-format
+msgid "Internet connection"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi"
+
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+msgstr ""
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Choose the connection you want to configure"
+msgstr "İstifadə edəcəyiniz vasitəni seçin"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ethernet card(s) detected"
+msgstr "eternet kart tapД±ldД±"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "LAN connection"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "cable connection detected"
+msgstr "Kabel baДџlantД±sД±"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Cable connection"
+msgstr "Kabel baДџlantД±sД±"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "detected"
+msgstr "%s tapД±ldД±"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "ADSL connection"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected %s"
+msgstr "%s tapД±ldД±"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ISDN connection"
+msgstr "ISDN BaДџlantД±sД±"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Winmodem connection"
+msgstr "Normal modem tЙ™sbiti"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected on port %s"
+msgstr "%s qapД±sД±nda tapД±ldД±"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Normal modem connection"
+msgstr "Normal modem tЙ™sbiti"
+
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Detecting devices..."
+msgstr "AvadanlД±qlar tanД±nД±r..."
+
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Mode"
+msgstr "Usta Modu"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Use auto detection"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the profile to configure"
+msgstr "Qurulacaq profili seçin"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Welcome to The Network Configuration Wizard.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\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 ""
+"Şəbəkə Quraşdırma Sehirbazına Xoç Gəldiniz\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Д°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:1
+#, c-format
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"Şəbəkədən quraşdırması apardığınız üçün şəbəkəniz artıq qurulmuş olmalıdır.\n"
+"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
+"et'Й™ basД±n.\n"
-#: ../../printer/printerdrake.pm_.c:289
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you don't need it.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Press OK to continue."
msgstr ""
+"\n"
+"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
+"bilЙ™rsiniz."
-#: ../../printer/printerdrake.pm_.c:307
-#, fuzzy
-msgid "Auto-detect printers connected to this machine"
-msgstr "Uzaq Г‡ap Edici"
-
-#: ../../printer/printerdrake.pm_.c:310
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "We are now going to configure the %s connection."
msgstr ""
+"\n"
+"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
+"bilЙ™rsiniz."
-#: ../../printer/printerdrake.pm_.c:313
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection & configuration"
+msgstr "Д°nternet baДџlantД±sД± & quraЕџdД±rД±lmasД±"
-#: ../../printer/printerdrake.pm_.c:329
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Configure the connection"
+msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Disconnect"
+msgstr "BaДџlantД±nД± kЙ™s"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Connect"
+msgstr "BaДџlan"
+
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"You can reconfigure your connection."
+msgstr ""
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"BaДџlantД±nД±zД± yenidЙ™n quraЕџdД±ra bilЙ™rsiniz."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
+"You can connect to the Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Д°stЙ™sЙ™niz Д°nternetЙ™ baДџlana bilЙ™rsiniz ya da yeniden quraЕџdД±ra bilЙ™rsiniz."
-#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Printer auto-detection"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are not currently connected to the Internet."
+msgstr "HЙ™lЙ™ Д°nternetЙ™ baДџlД± deyilsiniz."
-#: ../../printer/printerdrake.pm_.c:385
+#: ../../network/netconnect.pm:1
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"BaДџlantД±nД±zД± kЙ™sЙ™ bilЙ™rsiniz. Ya da baДџlantД±nД± yenidЙ™n dЙ™ quraЕџdД±ra "
+"bilЙ™rsiniz."
-#: ../../printer/printerdrake.pm_.c:387
-#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are currently connected to the Internet."
+msgstr "ArtД±q Д°nternetЙ™ baДџlД±sД±nД±z."
-#: ../../printer/printerdrake.pm_.c:391
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "%s tapД±ldД±"
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
-#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
-#: ../../printer/printerdrake.pm_.c:440
+#: ../../network/network.pm:1
#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
+msgid "Proxy should be http://..."
+msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
-#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
-#: ../../printer/printerdrake.pm_.c:443
+#: ../../network/network.pm:1
#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
+msgid "FTP proxy"
+msgstr "FTP vЙ™kil verici"
-#: ../../printer/printerdrake.pm_.c:399
+#: ../../network/network.pm:1
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP vЙ™kil verici"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Proxies configuration"
+msgstr "VЙ™kil vericilЙ™r quraЕџdД±rД±lmasД±"
+
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
-#: ../../printer/printerdrake.pm_.c:401
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ГјnvanД± 1.2.3.4 ЕџЙ™klindЙ™ olmalД±dД±r"
-#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
-#, fuzzy
-msgid "Local Printer"
-msgstr "Yerli Г‡ap Edici"
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway device"
+msgstr "Keçit avadanlığı"
-#: ../../printer/printerdrake.pm_.c:526
-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, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:530
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-
-#: ../../printer/printerdrake.pm_.c:539
-#, fuzzy
-msgid "No printer found!"
-msgstr "Yerli Г‡ap Edici"
-
-#: ../../printer/printerdrake.pm_.c:548
-#, fuzzy
-msgid "Available printers"
-msgstr "Yerli Г‡ap Edici"
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server"
+msgstr "DNS verici"
-#: ../../printer/printerdrake.pm_.c:552
+#: ../../network/network.pm:1
+#, c-format
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"
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
msgstr ""
+"XahiЕџ edirik kompГјterinizn adД±nД± girin.\n"
+"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."
-#: ../../printer/printerdrake.pm_.c:553
+#: ../../network/network.pm:1
+#, c-format
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"
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:555
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
+msgstr ""
+
+#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+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:1
+#, fuzzy, c-format
+msgid "Start at boot"
+msgstr "Açılışda başladılır"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Network Hotplugging"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:556
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "(bootp/dhcp/zeroconf)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Automatic IP"
+msgstr "AvtomatlaЕџdД±rД±lmД±Еџ IP"
+
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Netmask"
+msgstr "Netmask"
+
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "IP address"
+msgstr "IP ГјnvanД±"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid " (driver %s)"
+msgstr " (sГјrГјcГј %s)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Configuring network device %s"
+msgstr "%s ЕџЙ™bЙ™kЙ™ avadanlД±ДџД± qurulur"
+
+#: ../../network/network.pm:1
+#, c-format
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 "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
+"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:1
+#, c-format
+msgid ""
+"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 ""
+"DİQQƏT: Bu avadanlıq daha əvvəl İntenetə bağlanmaq üçün qurulmuşdur.\n"
+"AvadanlД±ДџД±n qurДџularД±nД± dЙ™yiЕџdirmaЙ™k istЙ™mirsiniz isЙ™,\n"
+"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."
-#: ../../printer/printerdrake.pm_.c:558
+#: ../../network/shorewall.pm:1
+#, c-format
msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fixes after installation."
msgstr ""
+"DiqqЙ™t! Var olan Firewall qurДџusu tapД±ldД±. YГјklЙ™mЙ™dЙ™n sonra bir az Й™l "
+"gЙ™zdirЙ™ bilЙ™rsiniz."
-#: ../../printer/printerdrake.pm_.c:559
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+#: ../../network/shorewall.pm:1
+#, c-format
+msgid "Firewalling configuration detected!"
+msgstr "Oddan divar (Firewall) quruluЕџu tapД±ldД±!"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Password"
+msgstr "Hesap Parolu"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Login (user name)"
+msgstr "Hesab GiriЕџi (istifadЙ™Г§i adД±)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Connection timeout (in sec)"
+msgstr "Bağlantı növü:"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Connection speed"
+msgstr "Bağlantı növü:"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Dialing mode"
+msgstr "YД±Дџma modu"
+
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "Choose your country"
+msgstr "Klaviaturanızı seçin"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 2 (optional)"
+msgstr "Dns xidmətcisi 2 (arzuya görə)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "Dns xidmətcisi 1 (arzuya görə)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider phone number"
+msgstr "İXM telefon nömrəsi"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Д°nternet xidmЙ™t vericinizin adД± (mЙ™sЙ™lЙ™n azeronline.com)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Your personal phone number"
+msgstr "Sizin şəxsi telefon nömrəniz"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_1"
+msgstr "Kart IO_1"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_0"
+msgstr "Kart IO_0"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO"
+msgstr "Kart IO"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Kart mem (DMA)"
-#: ../../printer/printerdrake.pm_.c:561
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IRQ"
+msgstr "Kart IRQ"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Connection Configuration"
+msgstr "BaДџlantД± quraЕџdД±rД±lmasД±"
+
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"The system doesn't seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
msgstr ""
+"Sisteminiz Д°nternetЙ™ baДџlД± deyil.\n"
+"BaДџlantД±nД± yenidЙ™n quraЕџdД±rД±n"
-#: ../../printer/printerdrake.pm_.c:565
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™bЙ™bi ilЙ™ indi baДџlantД± qopacaqdД±r."
-#: ../../printer/printerdrake.pm_.c:584
-#, fuzzy
-msgid "Manual configuration"
-msgstr "QuraЕџdД±rma"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Д°nternetЙ™ artД±q baДџlД±sД±nД±z"
-#: ../../printer/printerdrake.pm_.c:633
-msgid "Remote lpd Printer Options"
-msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Testing your connection..."
+msgstr "BaДџlantД±nД±z sД±nanД±r..."
-#: ../../printer/printerdrake.pm_.c:634
-#, fuzzy
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Д°nternete giriЕџi indi sД±namaq istЙ™yirsiniz?"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Internet configuration"
+msgstr "Д°nternet qurДџularД±"
+
+#: ../../partition_table/raw.pm:1
+#, fuzzy, c-format
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
-"Uzaqdakı bir lpd çap edici növbəsini istifadə etmək üçün, \n"
-"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
-"adД±nД±nД± vermЙ™lisiniz."
+"BЙ™'zЙ™n sГјrГјcГјnГјzdЙ™ pis ЕџeylЙ™r ola bilЙ™r.\n"
+"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"
-#: ../../printer/printerdrake.pm_.c:635
-#, fuzzy
-msgid "Remote host name"
-msgstr "UzaqdakД± ev sahibi adД±"
+#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " (Default)"
+msgstr " (ЖЏsas)"
-#: ../../printer/printerdrake.pm_.c:636
-#, fuzzy
-msgid "Remote printer name"
+#: ../../printer/cups.pm:1
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "CUPS verici IP"
+
+#: ../../printer/cups.pm:1 ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Remote Printers"
msgstr "Uzaq Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:639
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "UzaqdakД± ev sahibi adД±"
+#: ../../printer/cups.pm:1 ../../printer/data.pm:1
+#, c-format
+msgid "CUPS"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:643
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "UzaqdakД± ev sahibi adД±"
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on this machine)"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#: ../../printer/cups.pm:1
#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "%s tapД±ldД±"
+msgid "(on %s)"
+msgstr "(modul %s)"
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Scanning network..."
-msgstr "BaДџlantД±nД±z baЕџladД±lД±r..."
+#: ../../printer/data.pm:1
+#, c-format
+msgid "CUPS - Common Unix Printing System"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
+#: ../../printer/data.pm:1
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+msgid "LPRng"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng - LPR New Generation"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:795
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:796
-#, fuzzy
-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 "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD - Line Printer Daemon"
msgstr ""
-"Bir SMB çap edicidən yekun almaq üçün, SMB kompüter adı, çap edici "
-"vericisinin\n"
-"IP ГјnvanД±, Г§ap edicinin paylaЕџdД±rma adД±, iЕџlЙ™mЙ™ grupu, istifadЙ™Г§i adД± vЙ™ \n"
-"parol verilmЙ™lidir."
-#: ../../printer/printerdrake.pm_.c:797
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:799
-msgid "SMB server host"
-msgstr "SMB verici adД±"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ - Print, Don't Queue"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:800
-msgid "SMB server IP"
-msgstr "SMB verici IP"
+#: ../../printer/detect.pm:1
+#, c-format
+msgid "Unknown Model"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:801
-msgid "Share name"
-msgstr "PaylaЕџdД±rma adД±"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Unknown model"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:804
-msgid "Workgroup"
-msgstr "Д°Еџ qrupu"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Host %s"
+msgstr "Ev sahibi adД±"
-#: ../../printer/printerdrake.pm_.c:806
-#, fuzzy
-msgid "Auto-detected"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network %s"
+msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
-#: ../../printer/printerdrake.pm_.c:816
-msgid "Either the server name or the server's IP must be given!"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Interface \"%s\""
+msgstr "Ara Гјz %s"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local network(s)"
+msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:820
-msgid "Samba share name missing!"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", using command %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:826
-msgid "SECURITY WARNING!"
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:827
+#: ../../printer/main.pm:1
#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:837
+#: ../../printer/main.pm:1
#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:840
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:911
-msgid "NetWare Printer Options"
-msgstr "NetWare Г‡ap Edici QurДџularД±"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", printing to %s"
+msgstr "%s faylД±na yazarkЙ™n xЙ™ta oldu"
-#: ../../printer/printerdrake.pm_.c:912
-#, fuzzy
-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 "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device"
msgstr ""
-"NetWare çap edicidən yekun almaq üçün, NetWare vericisinin adı və çap "
-"edici \n"
-"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printer/printerdrake.pm_.c:913
-msgid "Printer Server"
-msgstr "Г‡ap Edici Vericisi"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:914
-msgid "Print Queue Name"
-msgstr "Çap Edici Növbə Adı"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on USB"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:919
-msgid "NCP server name missing!"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on parallel port \\#%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:923
-msgid "NCP queue name missing!"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", USB printer"
+msgstr "Г‡ap Edicisiz"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", USB printer \\#%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid ", host \"%s\", port %s"
+msgid " on parallel port \\#%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printers"
+msgstr "Yerli Г‡ap Edici"
+
+#: ../../printer/main.pm:1
#, c-format
-msgid "Host \"%s\", port %s"
+msgid "Pipe job into a command"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1030
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Soket Г‡ap Edici QurДџularД±"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Enter a printer device URI"
+msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Printer on NetWare server"
+msgstr "Г‡ap Edici Vericisi"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network printer (TCP/Socket)"
+msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer on remote lpd server"
+msgstr "Uzaq Г§ap edici vericisi(lpd)"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Printer on remote CUPS server"
+msgstr "Uzaq CUPS vericisi"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Remote printer"
+msgstr "Uzaq Г‡ap Edici"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Local printer"
+msgstr "Yerli Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring applications..."
+msgstr "Г‡ap Edicini Qur"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printerdrake"
+msgstr "Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to configure another printer?"
+msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "ЕћЙ™bЙ™kЙ™ni yenidЙ™n baЕџlatmaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remove printer"
+msgstr "Uzaq Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Know how to use this printer"
+msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print test pages"
+msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../printer/printerdrake.pm_.c:1032
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) into the input fields."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1033
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
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."
-#: ../../printer/printerdrake.pm_.c:1037
-#, fuzzy
-msgid "Printer host name or IP missing!"
-msgstr "Г‡ap Edici Ev sahibi"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1059
-#, fuzzy
-msgid "Printer host name or IP"
-msgstr "Г‡ap Edici Ev sahibi"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
-msgid "Printer Device URI"
-msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1108
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1123
-msgid "A valid URI must be entered!"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Default printer"
+msgstr "Yerli Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Set this printer as the default"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer options"
+msgstr "Çap edici seçənəkləri"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1463
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer name, description, location"
+msgstr "Г‡ap Edici BaДџlantД±sД±"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer connection type"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Learn how to use this printer"
+msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Raw printer"
+msgstr "Г‡ap Edicisiz"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do it!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Close"
+msgstr "Qapat"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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."
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Modify printer configuration"
+msgstr "Д°nternet qurДџularД±"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Add a new printer"
+msgstr "Г‡ap Edicisiz"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Normal Mode"
+msgstr "Normal Mod"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Change the printing system"
+msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing"
+msgstr "Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1464
-msgid "Name of printer"
-msgstr "Г‡ap edici adД±"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
+msgstr ""
+"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
+"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
-msgid "Description"
-msgstr "Д°zah"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
+msgstr ""
+"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
+"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printer/printerdrake.pm_.c:1466
-msgid "Location"
-msgstr "Yeri"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing system: "
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
-#, fuzzy
-msgid "Reading printer database..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Would you like to configure printing?"
+msgstr "Bir Г§ap edici qurmaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing Printerdrake..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printer/printerdrake.pm_.c:1482
-#, fuzzy
-msgid "Preparing printer database..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking installed software..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing Foomatic..."
+msgstr "%s paketi qurulur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Failed to configure printer \"%s\"!"
+msgstr "Г‡ap Edicini Qur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Г‡ap Edicini Qur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Reading printer data..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printer/printerdrake.pm_.c:1578
-#, fuzzy
-msgid "Your printer model"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Select Printer Spooler"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "%s paketi qurulur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Rezolyusiya: %s\n"
-#: ../../printer/printerdrake.pm_.c:1579
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-"For your printer Printerdrake has found:\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
"\n"
-"%s"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
-#, fuzzy
-msgid "The model is correct"
-msgstr "DoДџrudur?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Starting the printing system at boot time"
+msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
-#: ../../printer/printerdrake.pm_.c:1589
-#, fuzzy
-msgid "Select model manually"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
+"\n"
+"This printing system runs a daemon (background process) which waits for "
+"print jobs and handles them. This daemon is also accessable by remote "
+"machines through the network and so it is a possible point for attacks. "
+"Therefore only a few selected daemons are started by default in this "
+"security level.\n"
+"\n"
+"Do you really want to configure printing on this machine?"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1606
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Г‡ap Edici BaДџlantД±sД±"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing a printing system in the %s security level"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1607
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "NЙ™ cГјr bir Г§ap ediciniz var?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "paranoid"
+msgstr "ЕћГјbhЙ™ci"
-#: ../../printer/printerdrake.pm_.c:1608
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "high"
+msgstr "YГјksЙ™k"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Restarting printing system..."
+msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Configuration of a remote printer"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
+"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 ""
-#: ../../printer/printerdrake.pm_.c:1611
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network is accessable after booting your "
+"system and correct the configuration using the Mandrake Control Center, "
+"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
+"printer, also using the Mandrake Control Center, section \"Hardware\"/"
+"\"Printer\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1697
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configure the network now"
+msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Go on without configuring the network"
+msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
-#: ../../printer/printerdrake.pm_.c:1698
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
+"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 "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
-#, fuzzy
-msgid "Lexmark inkjet configuration"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Network functionality not configured"
+msgstr "Monitor qurulmayД±b"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Starting network..."
+msgstr "BaДџlantД±nД±z baЕџladД±lД±r..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Refreshing printer data..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+
+#: ../../printer/printerdrake.pm:1
+#, 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 ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Transfer printer configuration"
msgstr "Д°nternet qurДџularД±"
-#: ../../printer/printerdrake.pm_.c:1719
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transferring %s..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "New printer name"
+msgstr "Г‡ap Edicisiz"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1746
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1749
-msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do not transfer printers"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1750
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Your printer belongs to the group of GDI laser printers (winprinters) sold "
-"by different manufacturers which uses the Zenographics ZJ-stream raster "
-"format for the data sent to the printer. The driver for these printers is "
-"still in a very early development stage and so it will perhaps not always "
-"work properly. Especially it is possible that the printer only works when "
-"you choose the A4 paper size.\n"
-"\n"
-"Some of these printers, as the HP LaserJet 1000, for which this driver was "
-"originally created, need their firmware to be uploaded to them after they "
-"are turned on. In the case of the HP LaserJet 1000 you have to search the "
-"printer's Windows driver CD or your Windows partition for the file "
-"\"sihp1000.img\" and upload the file to the printer with one of the "
-"following commands:\n"
-"\n"
-" lpr -o raw sihp1000.img\n"
-" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
-"The first command can be given by any normal user, the second must be given "
-"as root. After having done so you can print normally.\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1972
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer default settings\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1981
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be an integer number!"
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1985
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be a number!"
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1989
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s out of range!"
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Your 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 ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Your 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\" on the command line to get more "
+"information.\n"
+"\n"
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2028
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing test page(s)..."
+msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print option list"
+msgstr "Çap edici seçənəkləri"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Г‡ap edicini sД±namaq istЙ™yirsiniz?"
+"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%s\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Test pages"
-msgstr "QapД±larД± sД±na"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2052
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2056
-#, fuzzy
-msgid "No test pages"
-msgstr "BЙ™li, hЙ™r iki sД±naq sЙ™hifЙ™sini dЙ™ Г§ap et"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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 ""
-#: ../../printer/printerdrake.pm_.c:2057
-#, fuzzy
-msgid "Print"
-msgstr "Г‡ap Edici"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2114
-#, fuzzy
-msgid "Standard test page"
-msgstr "Standart"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To get a list of the options available for the current printer click on the "
+"\"Print option list\" button."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2117
-msgid "Alternative test page (Letter)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2120
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\".\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2122
-#, fuzzy
-msgid "Photo test page"
-msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2126
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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 ""
-#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
-msgid "Printing test page(s)..."
-msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2159
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Did it work properly?"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
msgstr ""
"Sınaq səhifəsi çap edici vasitəsinə göndərildi.\n"
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
-"Г‡ap vЙ™ziyyЙ™ti:\n"
-"%s\n"
-"\n"
"DГјz mГј iЕџlЙ™yir?"
-#: ../../printer/printerdrake.pm_.c:2163
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
msgstr ""
"Sınaq səhifəsi çap edici vasitəsinə göndərildi.\n"
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
+"Г‡ap vЙ™ziyyЙ™ti:\n"
+"%s\n"
+"\n"
"DГјz mГј iЕџlЙ™yir?"
-#: ../../printer/printerdrake.pm_.c:2170
-msgid "Did it work properly?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do not print any test page"
+msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Photo test page"
+msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Alternative test page (A4)"
+msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
-#, fuzzy
-msgid "Raw printer"
-msgstr "Г‡ap Edicisiz"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Standard test page"
+msgstr "Standart"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print"
+msgstr "Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "No test pages"
+msgstr "BЙ™li, hЙ™r iki sД±naq sЙ™hifЙ™sini dЙ™ Г§ap et"
-#: ../../printer/printerdrake.pm_.c:2216
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
+"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 "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2218
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Test pages"
+msgstr "QapД±larД± sД±na"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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"
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr "Г‡ap edicini sД±namaq istЙ™yirsiniz?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s out of range!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
-#: ../../printer/printerdrake.pm_.c:2248
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
+msgid "Option %s must be a number!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#: ../../printer/printerdrake.pm:1
#, 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%s\n"
+"Printer default settings\n"
"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2228
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
-#: ../../printer/printerdrake.pm_.c:2255
+#: ../../printer/printerdrake.pm:1
+#, c-format
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"
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Lexmark inkjet configuration"
+msgstr "Д°nternet qurДџularД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"To get a list of the options available for the current printer click on the "
-"\"Print option list\" button."
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2253
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2257
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "OKI winprinter configuration"
+msgstr "Д°nternet qurДџularД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2261
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Find the correct model in the list when a wrong model or "
+"\"Raw printer\" is highlighted."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2271
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+msgid "Which printer model do you have?"
+msgstr "NЙ™ cГјr bir Г§ap ediciniz var?"
-#: ../../printer/printerdrake.pm_.c:2272
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+msgid "Printer model selection"
+msgstr "Г‡ap Edici BaДџlantД±sД±"
-#: ../../printer/printerdrake.pm_.c:2274
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+msgid "Reading printer database..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printer/printerdrake.pm_.c:2275
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
-
-#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
-#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
-#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
-#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
-#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
-#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
-msgid "Close"
-msgstr "Qapat"
+msgid "Select model manually"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2281
-#, fuzzy
-msgid "Print option list"
-msgstr "Çap edici seçənəkləri"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The model is correct"
+msgstr "DoДџrudur?"
-#: ../../printer/printerdrake.pm_.c:2301
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Your 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\" on the command line to get more "
-"information.\n"
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"Do not use \"scannerdrake\" for this device!"
+"For your printer Printerdrake has found:\n"
+"\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2322
-msgid ""
-"Your 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 ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Your printer model"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
-#: ../../printer/printerdrake.pm_.c:2990
-#, fuzzy
-msgid "Reading printer data..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing printer database..."
msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
-#: ../../printer/printerdrake.pm_.c:2426
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Location"
+msgstr "Yeri"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Description"
+msgstr "Д°zah"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Name of printer"
+msgstr "Г‡ap edici adД±"
-#: ../../printer/printerdrake.pm_.c:2365
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
+"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 ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter Printer Name and Comments"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2368
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Making printer port available for CUPS..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Scanning on your HP multi-function device"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing mtools packages..."
+msgstr "%s paketi qurulur"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing SANE packages..."
+msgstr "%s paketi qurulur"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking device and configuring HPOJ..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing HPOJ package..."
+msgstr "%s paketi qurulur"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
+"PhotoSmart or an HP LaserJet 2200?"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A command line must be entered!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2370
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Command line"
+msgstr "SahЙ™(domain) adД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"Here you can specify any arbitrary command line into which the job should be "
+"piped instead of being sent directly to a printer."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2372
-msgid "LPD and LPRng do not support IPP printers.\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Pipe into command"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2374
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s tapД±ldД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A valid URI must be entered!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Device URI"
+msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"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 ""
-#: ../../printer/printerdrake.pm_.c:2375
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Port"
+msgstr "QapД±"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP"
+msgstr "Г‡ap Edici Ev sahibi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The port number should be an integer!"
+msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP missing!"
+msgstr "Г‡ap Edici Ev sahibi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
+"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."
-#: ../../printer/printerdrake.pm_.c:2376
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2379
-msgid "Do not transfer printers"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "TCP/Socket Printer Options"
+msgstr "Soket Г‡ap Edici QurДџularД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
-msgid "Transfer"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Scanning network..."
+msgstr "BaДџlantД±nД±z baЕџladД±lД±r..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer auto-detection"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP queue name missing!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP server name missing!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2392
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print Queue Name"
+msgstr "Çap Edici Növbə Adı"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer Server"
+msgstr "Г‡ap Edici Vericisi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
+"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 "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"NetWare çap edicidən yekun almaq üçün, NetWare vericisinin adı və çap "
+"edici \n"
+"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printer/printerdrake.pm_.c:2400
-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"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NetWare Printer Options"
+msgstr "NetWare Г‡ap Edici QurДџularД±"
-#: ../../printer/printerdrake.pm_.c:2405
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
+"\n"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2413
-#, fuzzy
-msgid "New printer name"
-msgstr "Г‡ap Edicisiz"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2416
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Transferring %s..."
+msgid ""
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
+"\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2427
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Samba share name missing!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Either the server name or the server's IP must be given!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detected"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Workgroup"
+msgstr "Д°Еџ qrupu"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Share name"
+msgstr "PaylaЕџdД±rma adД±"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "SMB verici IP"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server host"
+msgstr "SMB verici adД±"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2437
-#, fuzzy
-msgid "Refreshing printer data..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+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 "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
+msgstr ""
+"Bir SMB çap edicidən yekun almaq üçün, SMB kompüter adı, çap edici "
+"vericisinin\n"
+"IP ГјnvanД±, Г§ap edicinin paylaЕџdД±rma adД±, iЕџlЙ™mЙ™ grupu, istifadЙ™Г§i adД± vЙ™ \n"
+"parol verilmЙ™lidir."
-#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
-#: ../../printer/printerdrake.pm_.c:2528
-msgid "Configuration of a remote printer"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "ЕћЙ™bЙ™kЙ™ dayandД±rД±lД±r"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2446
-#, fuzzy
-msgid "Starting network..."
-msgstr "BaДџlantД±nД±z baЕџladД±lД±r..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote printer name missing!"
+msgstr "UzaqdakД± ev sahibi adД±"
-#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
-#: ../../printer/printerdrake.pm_.c:2485
-#, fuzzy
-msgid "Configure the network now"
-msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote host name missing!"
+msgstr "UzaqdakД± ev sahibi adД±"
-#: ../../printer/printerdrake.pm_.c:2480
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Monitor qurulmayД±b"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote printer name"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2481
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote host name"
+msgstr "UzaqdakД± ev sahibi adД±"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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 "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
+"Uzaqdakı bir lpd çap edici növbəsini istifadə etmək üçün, \n"
+"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
+"adД±nД±nД± vermЙ™lisiniz."
-#: ../../printer/printerdrake.pm_.c:2484
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "ЕћЙ™bЙ™kЙ™ QurДџularД±"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote lpd Printer Options"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printer/printerdrake.pm_.c:2518
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Manual configuration"
+msgstr "QuraЕџdД±rma"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must choose/enter a printer/device!"
+msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2519
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the port that your printer is connected to."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"Please choose the port that your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2529
-#, fuzzy
-msgid "Restarting printing system..."
-msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the printer to which the print jobs should go."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printer/printerdrake.pm_.c:2568
-#, fuzzy
-msgid "high"
-msgstr "YГјksЙ™k"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up. The configuration of the "
+"printer will work fully automatically. If your printer was not correctly "
+"detected or if you prefer a customized printer configuration, turn on "
+"\"Manual configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2568
-#, fuzzy
-msgid "paranoid"
-msgstr "ЕћГјbhЙ™ci"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Here is a list of all auto-detected printers. "
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2569
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Installing a printing system in the %s security level"
+msgid "Currently, no alternative possibility is available"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2570
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
+"The configuration of the printer will work fully automatically. If your "
+"printer was not correctly detected or if you prefer a customized printer "
+"configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2604
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The following printer was auto-detected. "
+msgstr "AЕџaДџД±dakД± paketlЙ™r sistemdЙ™n silinЙ™cЙ™klЙ™r"
-#: ../../printer/printerdrake.pm_.c:2605
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
+"Please choose the printer to which the print jobs should go or enter a "
+"device name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
-msgid "Checking installed software..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up or enter a device name/file "
+"name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Alternatively, you can specify a device name/file name in the input line"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"If it is not the one you want to configure, enter a device name/file name in "
+"the input line"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Rezolyusiya: %s\n"
+msgid "Available printers"
+msgstr "Yerli Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2636
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "%s paketi qurulur"
+msgid "No printer found!"
+msgstr "Yerli Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2685
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Çap Edici Bağlantısı Seçin"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must enter a device or file name!"
+msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-#: ../../printer/printerdrake.pm_.c:2686
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2720
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Г‡ap Edicini Qur"
+msgid "Local Printer"
+msgstr "Yerli Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2731
-#, fuzzy
-msgid "Installing Foomatic..."
-msgstr "%s paketi qurulur"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "USB printer \\#%s"
+msgstr "Г‡ap Edicisiz"
-#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
-#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
-msgid "Printer options"
-msgstr "Çap edici seçənəkləri"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer on parallel port \\#%s"
+msgstr "Г‡ap Edici Ev sahibi"
-#: ../../printer/printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Preparing Printerdrake..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Г‡ap Edicini Qur"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
-#: ../../printer/printerdrake.pm_.c:2845
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Bir Г§ap edici qurmaq istЙ™yirsiniz?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "%s tapД±ldД±"
-#: ../../printer/printerdrake.pm_.c:2857
-msgid "Printing system: "
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2915
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change "
+"the default option settings (paper input tray, printout quality, ...), "
+"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
+"Center."
msgstr ""
-"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
-"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printer/printerdrake.pm_.c:2916
-#, fuzzy
-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."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
-"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printer/printerdrake.pm_.c:2942
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2960
-#, fuzzy
-msgid "Change the printing system"
-msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect printers connected to this machine"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
-msgid "Normal Mode"
-msgstr "Normal Mod"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
-#: ../../printer/printerdrake.pm_.c:3363
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3211
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) and your Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3213
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "Searching for new printers..."
+msgstr "Yerli Г‡ap Edici"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3217
-msgid "Do it!"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
-#, fuzzy
-msgid "Printer connection type"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Г‡ap Edici BaДџlantД±sД±"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Г‡ap edicini sД±namaq istЙ™yirsiniz?"
-#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
-msgid "Printer manufacturer, model, driver"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
-msgid "Printer manufacturer, model"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
-msgid "Set this printer as the default"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
-#, fuzzy
-msgid "Print test pages"
-msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"is directly connected to your system"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "QurДџularД± sД±namaq istЙ™yirsiniz?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
-#, fuzzy
-msgid "Remove printer"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../printer/printerdrake.pm_.c:3282
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+msgid "and %d unknown printers"
+msgstr "Г‡ap Edicisiz"
-#: ../../printer/printerdrake.pm_.c:3307
-#, fuzzy
-msgid "Default printer"
-msgstr "Yerli Г‡ap Edici"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "and one unknown printer"
+msgstr "Г‡ap Edicisiz"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Checking your system..."
+msgstr "HansД± Г§ap edici sistemini istifadЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../printer/printerdrake.pm_.c:3308
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+msgid "IP address of host/network:"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3310
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "This host/network is already in the list, it cannot be added again.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3312
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgid "192.168.100.0/255.255.255.0\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3313
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgid "192.168.100.0/24\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3315
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.1.*\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3317
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+msgid "10.0.0.*\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3318
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.194\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Examples for correct IPs:\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The entered host/network IP is not correct.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"Choose the network or host on which the local printers should be made "
+"available:"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3325
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "ЕћЙ™bЙ™kЙ™ni yenidЙ™n baЕџlatmaq istЙ™yirsiniz?"
+msgid "Sharing of local printers"
+msgstr "Yerli Г‡ap Edici"
-#: ../../printer/printerdrake.pm_.c:3329
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+msgid "Remove selected host/network"
+msgstr "Növbəni sil"
-#: ../../raid.pm_.c:35
+#: ../../printer/printerdrake.pm:1
#, c-format
-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:137
-msgid "mkraid failed"
-msgstr "mkraid iflas etdi"
+msgid "Edit selected host/network"
+msgstr ""
-#: ../../raid.pm_.c:137
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid iflas etdi (raidtools Й™ksik ola bilЙ™r mi?)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add host/network"
+msgstr ""
-#: ../../raid.pm_.c:153
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+msgid ""
+"These are the machines and networks on which the locally connected printer"
+"(s) should be available:"
+msgstr ""
-#: ../../security/main.pm_.c:36
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Standard: This is the standard security recommended for a computer that will "
-"be used to connect\n"
-" to the Internet as a client.\n"
+"When this option is turned on, on every startup of CUPS it is automatically "
+"made sure that\n"
"\n"
-"High: There are already some restrictions, and more automatic checks "
-"are run every night.\n"
+"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
-"Higher: The security is now high enough to use the system as a server "
-"which can accept\n"
-" connections from many clients. If your machine is only a "
-"client on the Internet, you\n"
-"\t should choose a lower level.\n"
+"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
-"Paranoid: This is similar to the previous level, but the system is entirely "
-"closed and security\n"
-" features are at their maximum\n"
+"- when printer information is broadcasted, it does not contain \"localhost\" "
+"as the server name.\n"
"\n"
-"Security Administrator:\n"
-" If the 'Security Alerts' option is set, security alerts will "
-"be sent to this user (username or\n"
-"\t email)"
+"If some of these measures lead to problems for you, turn this option off, "
+"but then you have to take care of these points."
msgstr ""
-#: ../../security/main.pm_.c:66
-#, fuzzy
-msgid "Security Level:"
-msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Automatic correction of CUPS configuration"
+msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../security/main.pm_.c:77
+#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid " (default value: %s)"
-msgstr " (ЖЏsas)"
+msgid "No remote machines"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../security/main.pm_.c:113
-#, fuzzy
-msgid "Security Alerts:"
-msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Custom configuration"
+msgstr "QuraЕџdД±rma"
-#: ../../security/main.pm_.c:115
-#, fuzzy
-msgid "Security Administrator:"
-msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing on hosts/networks: "
+msgstr "Г‡ap Edici"
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "Network Options"
-msgstr "Modul seçənəkləri:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Automatically find available printers on remote machines"
+msgstr ""
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "System Options"
-msgstr "Modul seçənəkləri:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printers on this machine are available to other computers"
+msgstr ""
-#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need explanations, click on Help.\n"
+"You can also decide here whether printers on remote machines should be "
+"automatically made available on this machine."
msgstr ""
-#: ../../security/main.pm_.c:177
-msgid "Periodic Checks"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can choose whether the printers connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../security/main.pm_.c:191
-#, fuzzy
-msgid "Please wait, setting security level..."
-msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS printer sharing configuration"
+msgstr "Д°nternet qurДџularД±"
-#: ../../security/main.pm_.c:197
-#, fuzzy
-msgid "Please wait, setting security options..."
-msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../services.pm_.c:19
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "ALSA sЙ™s sistemini (Advanced Linux Sound Architecture) baЕџlat"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"Printers on remote CUPS servers do not need to be configured here; these "
+"printers will be automatically detected."
+msgstr ""
+"Uzaq CUPS vericiləri üçün heç bir quraşdırmağa lüzüm yoxdur\n"
+"BuradakД± hЙ™r Г§ap edici avtomatik tapД±lacaqdД±r.\n"
+"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../services.pm_.c:20
-msgid "Anacron a periodic command scheduler."
-msgstr "Anakron, periodik Й™mr zamanlayД±cД±sД±"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "How is the printer connected?"
+msgstr "Г‡ap ediciniz nЙ™ ЕџЙ™kildЙ™ baДџlД±dД±r?"
-#: ../../services.pm_.c:21
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"apmd is used for monitoring batery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Arguments: (umask)\n"
+"\n"
+"Set the user umask."
msgstr ""
-"apmd batareya vəziyyətini izləmək üçün və syslog aracılığıyla bunun qeydini "
-"tutmaq üçün istifadə edilir.\n"
-"Ayrıca batareya azaldığında sistemi qapatmaq üçün də istifadə edilir."
-#: ../../services.pm_.c:23
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
msgstr ""
-"at Й™mri, zamanlanan Й™mrlЙ™ri iЕџlЙ™mЙ™lЙ™ri lazД±m gЙ™lЙ™n vaxtda iЕџlЙ™dir.\n"
-"Sistem yükü lazımi qədər alçaq olduğunda yığma əmrləri işlədilir."
-#: ../../services.pm_.c:25
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
-"cron, istifadЙ™Г§ilЙ™rЙ™ xГјsusi Й™mrlЙ™ri periodik olaraq iЕџЙ™ sala bilЙ™n\n"
-"standart bir UNIX proqramД±dД±r. vixie cron, standart cron'a Й™lavЙ™ edilmiЕџ bir "
-"Г§ox\n"
-"yeni xГјsusiyyЙ™t daxildir."
-#: ../../services.pm_.c:28
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of sgid files."
msgstr ""
-"GPM, Midnight Commander kimi mətn əsaslı tə'minatlara siçan dəstəyi əlavə "
-"edЙ™r.\n"
-"Ayrıca konsolda siçanla kəsmə və yapışdırma əməliyyatlarına da imkan verər.\n"
-"Konsolda pop-up menyu dЙ™stЙ™yi verЙ™r."
-#: ../../services.pm_.c:31
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check open ports."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"if set, send the mail report to this email address else send it to root."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result by mail."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check files/directories writable by everybody."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, reports check result to tty."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run some checks against the rpm database."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run chkrootkit checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check permissions of files in the users' home."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
-"HardDrake texniki tЙ™'minat sД±naДџД± aparar vЙ™ onlarД± bir Г¶n quraЕџdД±rmadan "
-"keçirər."
-#: ../../services.pm_.c:33
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result to syslog."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"if set to yes, check for empty password, or a password while it should be "
+"in /etc/shadow or other users with id 0."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run the daily security checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, verify checksum of the suid/sgid files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""
-"Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi üçün "
-"istifadЙ™ edilir."
-#: ../../services.pm_.c:34
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report unowned files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
msgstr ""
-"Internet superserver daemon (qД±saca inetd ) bir Г§ox \n"
-"baЕџqa internet xidmЙ™tcisini lazД±m gЙ™ldiyi zaman iЕџa salД±r. Д°Г§indЙ™ telnet, "
-"ftp, rsh vЙ™ rlogin kimi proqramД±n olduДџu xidmЙ™tlЙ™ri iЕџЙ™ salmaqla mЙ™s'uldur.\n"
-"inetd-ni sistemden Г§Д±xarmaq, onun mЙ™s'ul olduДџu bГјtГјn xidmЙ™tlЙ™ri\n"
-"rЙ™dd etmЙ™k mЙ™nasД±nД± daЕџД±yД±r."
-#: ../../services.pm_.c:38
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
msgstr ""
-"Linuks 2.2 seriyasД± Г§Й™kirdЙ™klЙ™rindЙ™ firewall\n"
-"qurmaq üçün üçün paket süzülməsini başlat."
-#: ../../services.pm_.c:40
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
msgstr ""
-"Bu paket /etc/sysconfig/keyboard'dakı seçili klaviatura düzülüşünü yüklər.\n"
-"Hansı klaviatura düzülüşü istifadə ediləcəyi kbdconfig ilə seçilir.\n"
-"Bu, mandrake qurulan bir Г§ox kompГјterdЙ™ fЙ™al buraxД±lmalД±dД±r."
-#: ../../services.pm_.c:43
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"Arguments: (max, inactive=-1)\n"
+"\n"
+"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
+"\\fP."
msgstr ""
-"/usr/include/linux/{autoconf,version}.h üçün \n"
-"/boot-da avtomatik Г§Й™kirdЙ™k baЕџlД±ДџД± yaradД±lmasД±."
-#: ../../services.pm_.c:45
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Texniki avadanlığın açılışda avtomatik təsbiti və qurulması."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
+msgstr ""
-#: ../../services.pm_.c:46
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
msgstr ""
-"Linuxconf sistem qurДџularД±nД±zД± idarЙ™ edЙ™n proqramlarД±\n"
-"müxtəlif vəzifələri açılışda icra edər."
-#: ../../services.pm_.c:48
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+"Arguments: (arg)\n"
+"\n"
+" Activate/Disable daily security check."
msgstr ""
-"lpd, lpr'nin düzgün olaraq işləməsi üçün lazımi çap edici vasitəsidir.\n"
-"lpd əsasən, çap vəzifələrini idarə edən və onları çap ediciyə göndərən "
-"vericidir."
-#: ../../services.pm_.c:50
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"Arguments: (arg)\n"
+"\n"
+"Activate/Disable ethernet cards promiscuity check."
msgstr ""
-"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../services.pm_.c:52
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
msgstr ""
-"named (BIND) verici adlarД±nД± IP ГјnvanlarД±na Г§evirЙ™n\n"
-"SahЙ™ AdД± Vericisidir(DNS)."
-#: ../../services.pm_.c:53
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
-"BГјtГјn ЕћЙ™bЙ™kЙ™ Fayl SistemlЙ™rini (NFS), SMB (Lan Manager/Windows), vЙ™ \n"
-"NCP (NetWare) bağlama nöqtələrini bağlar və ayırır."
-#: ../../services.pm_.c:55
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable msec hourly security check."
msgstr ""
-"Açılış sırasında başlamaq üçün qurulmuş bütün şəbəkə axtar üzlərini "
-"fЙ™allaЕџdД±rД±r ya da qapatД±r."
-#: ../../services.pm_.c:57
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
-"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir "
-"protokoldur.\n"
-"Bu xidmЙ™t, /etc/exports faylД±nda qurДџularД± olan NFS vericisinin\n"
-"istifadЙ™sinЙ™ imkan verЙ™r."
-#: ../../services.pm_.c:60
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
-"NFS TCP/IP şəbəkələrində fayl bölüşülməsi üçün istifadə edilən məşhur bir \n"
-"protokoldur. Bu xidmЙ™t NFS fayl qД±fД±lД± istifadЙ™sinЙ™ imkan verЙ™r."
-#: ../../services.pm_.c:62
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable IP spoofing protection."
msgstr ""
-"Açılışda XFree və konsolda numlock düyməsini\n"
-"avtomatik olaraq aç."
-#: ../../services.pm_.c:64
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "OKI 4w vЙ™ uyДџun Windows Г§ap edicilЙ™rini dЙ™stЙ™klЙ™."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
+msgstr ""
-#: ../../services.pm_.c:65
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to "
-"have\n"
-"it installed on machines that don't need it."
+"Arguments: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
+"expression describing what to log (see syslog.conf(5) for more details) and\n"
+"dev the device to report the log."
msgstr ""
-"PCMCIA dЙ™stЙ™yi, laptoplarda eternet vЙ™ modem kimi avadanlД±qlarД±n "
-"dЙ™stЙ™klЙ™nmЙ™sinЙ™ imkan verЙ™r.\n"
-"Qurulmadığı vaxtda açılışda işləməz, işləməsinə ehtiyac olmayan\n"
-"kompГјterlЙ™rdЙ™ qurulu olmasД± problem yaratmaz."
-#: ../../services.pm_.c:68
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
+"allow and /etc/at.allow\n"
+"(see man at(1) and crontab(1))."
msgstr ""
-"portmapper, NFS ve NIS kimi protokollar tЙ™rЙ™findЙ™n istifadЙ™ edilЙ™n RPC \n"
-"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:71
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"Arguments: ()\n"
+"\n"
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
msgstr ""
-"Posfix, elektronik mЙ™ktublarД±n bir kompГјterdЙ™n digЙ™rinЙ™ yollayan \n"
-"Elektronik MЙ™ktub Yollama VasitЙ™sidir."
-#: ../../services.pm_.c:72
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
msgstr ""
-"YГјksЙ™k keyfiyyЙ™t tЙ™sadГјfi rЙ™qЙ™m istehsal edЙ™n sistem entropi hovuzunun \n"
-"saxlanması və yenidən köhnə halına gətirilməsinə imkan verər."
-#: ../../services.pm_.c:74
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
+"Arguments: (arg)\n"
+"\n"
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
msgstr ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
-#: ../../services.pm_.c:76
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
msgstr ""
-"routed vasitЙ™si avtomatik IP router cЙ™dvЙ™linin RIP protokolu tЙ™rЙ™findЙ™n\n"
-"yenilənməsinə imkan verər. RIP əsasən kiçik şəbəkələrdə istifadə edilir, "
-"daha böyük\n"
-"ЕџЙ™bЙ™kЙ™lЙ™rdЙ™ daha qarД±ЕџД±q routing protokollarД±na ehtiyacД± vardД±r."
-#: ../../services.pm_.c:79
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
msgstr ""
-"rstat protokolu bir ЕџЙ™bЙ™kЙ™dЙ™kД± istifadЙ™Г§ilЙ™rin o ЕџЙ™bЙ™kЙ™dЙ™kД± hЙ™r hansД± bir\n"
-"kompüter haqqındakı qabiliyyət ölçüləri ala bilmələrinə imkan verər."
-#: ../../services.pm_.c:81
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid direct root login."
msgstr ""
-"rusers protokolu bir ЕџЙ™bЙ™kЙ™dЙ™kД± istifadЙ™Г§ilЙ™rin o ЕџЙ™bЙ™kЙ™dЙ™kД± kompГјterlЙ™rdЙ™\n"
-"işləyən istifadəçiləri görməsinə imkan verər."
-#: ../../services.pm_.c:83
+#: ../../security/help.pm:1
+#, c-format
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)."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
msgstr ""
-"rwho protokolu, uzaq istifadЙ™Г§ilЙ™rin, rwho vasitЙ™si iЕџlЙ™dЙ™n bir kompГјterdЙ™\n"
-"olan bütün istifadəçiləri görmələrina imkan verər."
-#: ../../services.pm_.c:85
-msgid "Launch the sound system on your machine"
-msgstr "KompГјterinizdЙ™ sЙ™s sistemД± baЕџladД±n"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
+msgstr ""
-#: ../../services.pm_.c:86
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
msgstr ""
-"Syslog, bir Г§ox vasitЙ™nin ismarД±clarД±nД± mГјxtЙ™lif sistem qeydlЙ™rindЙ™\n"
-"tutmalarД±na imkan verЙ™r. Syslog'un hЙ™r zaman iЕџlЙ™mЙ™si\n"
-"yaxЕџД± fikirdir."
-#: ../../services.pm_.c:88
-msgid "Load the drivers for your usb devices."
-msgstr "USB avadanlığınız üçün sürücüləri yükləyin."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
+msgstr ""
-#: ../../services.pm_.c:89
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse icmp echo."
msgstr ""
-"X Font Vericisini açılışda işə salar (Bu, XFree icrası üçün məcburidir)."
-#: ../../services.pm_.c:115 ../../services.pm_.c:157
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
+msgstr ""
-#: ../../services.pm_.c:127
-#, fuzzy
-msgid "Printing"
-msgstr "Г‡ap Edici"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
+msgstr ""
-#: ../../services.pm_.c:128
-msgid "Internet"
-msgstr "Д°nternet"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../services.pm_.c:131
-msgid "File sharing"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
-#, fuzzy
-msgid "System"
-msgstr "Sistem modu"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Use libsafe for servers"
+msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../services.pm_.c:138
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Security level"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../services.pm_.c:146
-#, fuzzy
-msgid "Database Server"
-msgstr "Databeyz"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Please choose the desired security level"
+msgstr "Təhlükəsizlik səviyyəsini seçin"
-#: ../../services.pm_.c:175
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "DrakSec Basic Options"
+msgstr "Seçənəklər"
+
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"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."
-#: ../../services.pm_.c:191
-#, fuzzy
-msgid "Services"
-msgstr "avadanlД±q"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
+msgstr ""
+"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. "
-#: ../../services.pm_.c:203
-msgid "running"
-msgstr "iЕџlЙ™mir"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
-#: ../../services.pm_.c:203
-msgid "stopped"
-msgstr "dayandД±rД±lД±b"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
+"tЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sidir."
-#: ../../services.pm_.c:217
-msgid "Services and deamons"
-msgstr "XidmЙ™tlЙ™r vЙ™ vasitЙ™lЙ™r"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"Passwords are now enabled, but use as a networked computer is still not "
+"recommended."
+msgstr ""
+"Parollar fЙ™allaЕџdД±rД±ldД±, yenЙ™ dЙ™ bir ЕџЙ™bЙ™kЙ™ ГјstГјndЙ™ istifadЙ™ edilmЙ™mЙ™si "
+"tövsiyə edilir."
-#: ../../services.pm_.c:222
+#: ../../security/level.pm:1
+#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"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 xidmЙ™t haqqД±nda tЙ™Й™sГјf ki,\n"
-"Й™lavЙ™ mЙ™'lumat yoxdur."
+"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."
-#: ../../services.pm_.c:229
-msgid "On boot"
-msgstr "Açılışda"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Paranoid"
+msgstr "ЕћГјbhЙ™ci"
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Start"
-msgstr "Hal:"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Higher"
+msgstr "YГјksЙ™k"
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Stop"
-msgstr "Sektor"
+#: ../../security/level.pm:1
+#, c-format
+msgid "High"
+msgstr "YГјksЙ™k"
-#: ../../share/advertising/01-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Poor"
+msgstr "ZЙ™if"
-#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Welcome To Crackers"
+msgstr "KrakerlЙ™rЙ™ xoЕџgЙ™lmiЕџsiniz"
-#: ../../share/advertising/01-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
-msgid "Get involved in the Free Software world"
-msgstr "BГјtГјn dГјnya"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../share/advertising/02-community.pl_.c:10
-msgid "Want to know more about the Open Source community?"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.1"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:11
+#: ../../share/advertising/02-community.pl:1
+#, c-format
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
-msgid "Get the most from the Internet"
-msgstr "Д°nternetЙ™ baДџlan"
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl:1
+#, fuzzy, c-format
+msgid "Get involved in the Free Software world"
+msgstr "BГјtГјn dГјnya"
-#: ../../share/advertising/03-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+#: ../../share/advertising/03-internet.pl:1
+#, fuzzy, c-format
+msgid "Get the most from the Internet"
+msgstr "Д°nternetЙ™ baДџlan"
+
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:11
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-#: ../../share/advertising/05-games.pl_.c:9
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid "Games"
msgstr "Oyunlar"
-#: ../../share/advertising/05-games.pl_.c:10
+#: ../../share/advertising/06-mcc.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
-#, fuzzy
+#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#, fuzzy, c-format
msgid "Mandrake Control Center"
msgstr "Д°darЙ™ MЙ™rkЙ™zi"
-#: ../../share/advertising/06-mcc.pl_.c:10
+#: ../../share/advertising/07-desktop.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../share/advertising/07-desktop.pl_.c:9
-#, fuzzy
+#: ../../share/advertising/07-desktop.pl:1
+#, fuzzy, c-format
msgid "User interfaces"
msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
-#: ../../share/advertising/07-desktop.pl_.c:10
-msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
-msgid "Development simplified"
-msgstr "TЙ™crГјbi"
-
-#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:11
+#: ../../share/advertising/08-development.pl:1
+#, c-format
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server"
+#: ../../share/advertising/08-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.1 is the ultimate development platform"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:10
+#: ../../share/advertising/08-development.pl:1
+#, fuzzy, c-format
+msgid "Development simplified"
+msgstr "TЙ™crГјbi"
+
+#: ../../share/advertising/09-server.pl:1
+#, c-format
msgid ""
"Transform your machine into a powerful Linux server with a few clicks of "
"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:9
-msgid "Optimize your security"
+#: ../../share/advertising/09-server.pl:1
+#, c-format
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:10
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:11
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
msgid ""
"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:12
-msgid "This product is available on MandrakeStore website"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:9
-msgid "The official MandrakeSoft store"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:9
-msgid "Strategic partners"
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:9
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:11
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:12
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
-msgid "Become a MandrakeExpert"
-msgstr "Usta"
-
-#: ../../share/advertising/14-mdkexpert.pl_.c:10
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert Corporate"
-msgstr "Usta"
-
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs"
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, fuzzy, c-format
+msgid "Become a MandrakeExpert"
+msgstr "Usta"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:9
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:10
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, fuzzy, c-format
+msgid "MandrakeExpert Corporate"
+msgstr "Usta"
+
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
msgid ""
"MandrakeClub and Mandrake Corporate Club were created for business and "
"private users of Mandrake Linux who would like to directly support their "
@@ -9594,221 +12675,246 @@ msgid ""
"MandrakeClub!"
msgstr ""
-#: ../../standalone.pm_.c:21
-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"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../standalone.pm_.c:40
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version name.\n"
+#: ../../standalone/XFdrake:1
+#, 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/XFdrake:1
+#, c-format
+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/drakTermServ:1
+#, c-format
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone.pm_.c:51
-msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone.pm_.c:57
-msgid ""
-"Font Importation and monitoring "
-"application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone.pm_.c:68
-msgid ""
-"[OPTIONS]...\n"
-"\t --debug print debugging information"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone.pm_.c:70
-msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires "
-"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, "
-"nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, "
-"IP, nbi image name)"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No floppy drive available!"
+msgstr "Disket sГјrГјcГј yoxdur"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone.pm_.c:82
-#, fuzzy
-msgid "[keyboard]"
-msgstr "Klaviatura"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Please insert floppy disk:"
+msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-#: ../../standalone.pm_.c:83
-msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Write Config"
+msgstr "yenidЙ™n quraЕџdД±r"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone.pm_.c:84
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone.pm_.c:93
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Server Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone.pm_.c:94
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in "
-"MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the "
-"description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone.pm_.c:99
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
-"[--dynamic=dev]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Name Servers:"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Domain Name:"
+msgstr "SahЙ™(domain) adД±"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone.pm_.c:100
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet Mask:"
msgstr ""
-#: ../../standalone.pm_.c:114
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+msgid "Routers:"
msgstr ""
-#: ../../standalone.pm_.c:168
-#, fuzzy
-msgid "Installing packages..."
-msgstr "%s paketi qurulur"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Netmask:"
+msgstr "Netmask"
-#: ../../standalone/XFdrake_.c:138
-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/drakTermServ:1
+#, c-format
+msgid "Subnet:"
+msgstr ""
-#: ../../standalone/XFdrake_.c:142
+#: ../../standalone/drakTermServ:1
#, 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"
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Config..."
+msgstr "QuraЕџdД±rД±lД±r..."
-#: ../../standalone/drakTermServ_.c:253
-#, fuzzy
-msgid "Enable Server"
-msgstr "Databeyz"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete Client"
+msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:260
-#, fuzzy
-msgid "Disable Server"
-msgstr "Databeyz"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "<-- Edit Client"
+msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:268
-#, fuzzy
-msgid "Start Server"
-msgstr "NIS Verici"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add Client -->"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:275
-#, fuzzy
-msgid "Stop Server"
-msgstr "NIS Verici"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Allow Thin Clients"
+msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:283
-msgid "Etherboot Floppy/ISO"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Thin Client"
+msgstr "DHCP AlД±cД±sД±"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No net boot images created!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:288
-msgid "Net Boot Images"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Növ: "
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:294
-#, fuzzy
-msgid "Add/Del Users"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Add User -->"
msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../standalone/drakTermServ_.c:299
-#, fuzzy
-msgid "Add/Del Clients"
-msgstr "DHCP AlД±cД±sД±"
-
-#: ../../standalone/drakTermServ_.c:328
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
-"\n"
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../standalone/drakTermServ_.c:332
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete All NBIs"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "<-- Delete"
+msgstr "Sil"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No NIC selected!"
+msgstr "BaДџlД± deyil"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:365
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
"drakTermServ Overview\n"
"\t\t\t \n"
@@ -9837,7 +12943,7 @@ msgid ""
"\t\t\t\thost curly {\n"
"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\t#type fat;\n"
"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
"nbi\";\n"
"\t\t\t\t}\n"
@@ -9848,8 +12954,8 @@ msgid ""
"functionality\n"
"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
-"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
-"either be \"thin\"*/\n"
+"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"\n"
"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
"while fat clients run most\n"
"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
@@ -9938,226 +13044,143 @@ msgid ""
" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
-"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
" \n"
"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:488
-msgid "Boot Floppy"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:490
-msgid "Boot ISO"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:559
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
-msgid "This will take a few minutes."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:573
-msgid "No kernel selected!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:576
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:587
-#, fuzzy
-msgid "No nic selected!"
-msgstr "BaДџlД± deyil"
-
-#: ../../standalone/drakTermServ_.c:590
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:604
-#, fuzzy
-msgid "<-- Delete"
-msgstr "Sil"
-
-#: ../../standalone/drakTermServ_.c:611
-#, fuzzy
-msgid "Delete All NBIs"
-msgstr "Fayl seç"
-
-#: ../../standalone/drakTermServ_.c:668
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:673
-#, fuzzy
-msgid "Add User -->"
-msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-
-#: ../../standalone/drakTermServ_.c:681
-msgid "<-- Del User"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:720
+#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Növ: "
-
-#: ../../standalone/drakTermServ_.c:753
-msgid "No net boot images created!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:773
-#, fuzzy
-msgid "Thin Client"
-msgstr "DHCP AlД±cД±sД±"
-
-#: ../../standalone/drakTermServ_.c:775
-#, fuzzy
-msgid "Allow Thin Clients"
-msgstr "DHCP AlД±cД±sД±"
-
-#: ../../standalone/drakTermServ_.c:778
-msgid "Add Client -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:821
-#, fuzzy
-msgid "<-- Edit Client"
-msgstr "DHCP AlД±cД±sД±"
-
-#: ../../standalone/drakTermServ_.c:837
-#, fuzzy
-msgid "Delete Client"
+msgid "Add/Del Clients"
msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakTermServ_.c:843
-#, fuzzy
-msgid "dhcpd Config..."
-msgstr "QuraЕџdД±rД±lД±r..."
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Add/Del Users"
+msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../standalone/drakTermServ_.c:876
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:894
-msgid "Subnet:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:901
-#, fuzzy
-msgid "Netmask:"
-msgstr "Netmask"
-
-#: ../../standalone/drakTermServ_.c:908
-msgid "Routers:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Stop Server"
+msgstr "NIS Verici"
-#: ../../standalone/drakTermServ_.c:915
-msgid "Subnet Mask:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Start Server"
+msgstr "NIS Verici"
-#: ../../standalone/drakTermServ_.c:922
-msgid "Broadcast Address:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Disable Server"
+msgstr "Databeyz"
-#: ../../standalone/drakTermServ_.c:929
-#, fuzzy
-msgid "Domain Name:"
-msgstr "SahЙ™(domain) adД±"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Enable Server"
+msgstr "Databeyz"
-#: ../../standalone/drakTermServ_.c:937
-#, fuzzy
-msgid "Name Servers:"
-msgstr "NIS Verici"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Д°nternet qurДџularД±"
-#: ../../standalone/drakTermServ_.c:948
-msgid "IP Range Start:"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Remove the last item"
+msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-#: ../../standalone/drakTermServ_.c:949
-msgid "IP Range End:"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Add an item"
+msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-#: ../../standalone/drakTermServ_.c:1001
-#, fuzzy
-msgid "dhcpd Server Configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Auto Install"
+msgstr "Qurulum"
-#: ../../standalone/drakTermServ_.c:1002
+#: ../../standalone/drakautoinst:1
+#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:1005
-msgid "Dynamic IP Address Pool:"
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakTermServ_.c:1018
-#, fuzzy
-msgid "Write Config"
-msgstr "yenidЙ™n quraЕџdД±r"
-
-#: ../../standalone/drakTermServ_.c:1120
-#, fuzzy
-msgid "Please insert floppy disk:"
-msgstr "%s sГјrГјcГјsГјnЙ™ bir disket taxД±n"
-
-#: ../../standalone/drakTermServ_.c:1124
-msgid "Couldn't access the floppy!"
-msgstr ""
+#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Congratulations!"
+msgstr "TЙ™briklЙ™r!"
-#: ../../standalone/drakTermServ_.c:1126
-msgid "Floppy can be removed now"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1129
-#, fuzzy
-msgid "No floppy drive available!"
-msgstr "Disket sГјrГјcГј yoxdur"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Creating auto install floppy"
+msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../standalone/drakTermServ_.c:1138
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:1140
-msgid "Something went wrong! - Is mkisofs installed?"
+msgid "manual"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1159
-msgid "Need to create /etc/dhcpd.conf first!"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1451
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Automatic Steps Configuration"
+msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakautoinst_.c:40
-#, fuzzy
-msgid "Error!"
-msgstr "XЙ™ta"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "replay"
+msgstr "TЙ™krarla"
-#: ../../standalone/drakautoinst_.c:41
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:43
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Qurulum sonrasД± qurДџular"
-
-#: ../../standalone/drakautoinst_.c:44
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -10172,1427 +13195,1419 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
-msgid "manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:62
-#, fuzzy
-msgid "replay"
-msgstr "TЙ™krarla"
-
-#: ../../standalone/drakautoinst_.c:66
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Auto Install Configurator"
+msgstr "Qurulum sonrasД± qurДџular"
-#: ../../standalone/drakautoinst_.c:67
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
-#, fuzzy
-msgid "Creating auto install floppy"
-msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Error!"
+msgstr "XЙ™ta"
-#: ../../standalone/drakautoinst_.c:139
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Welcome.\n"
+"Restore Backup Problems:\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
-#: ../../standalone/scannerdrake_.c:117
-msgid "Congratulations!"
-msgstr "TЙ™briklЙ™r!"
-
-#: ../../standalone/drakautoinst_.c:235
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:273
-#, fuzzy
-msgid "Auto Install"
-msgstr "Qurulum"
-
-#: ../../standalone/drakautoinst_.c:343
-#, fuzzy
-msgid "Add an item"
-msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
-
-#: ../../standalone/drakautoinst_.c:350
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Loopback faylД± ЕџЙ™killЙ™ndirilir: %s"
-
-#: ../../standalone/drakbackup_.c:580
-msgid "Cron not available yet as non-root"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:690
-msgid "WARNING"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:691
-#, fuzzy
-msgid "FATAL"
-msgstr "FAT"
-
-#: ../../standalone/drakbackup_.c:692
-msgid "INFO"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:704
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"options description:\n"
"\n"
-" DrakBackup Report \n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:705
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"Description:\n"
"\n"
-" DrakBackup Daemon Report\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:709
-msgid ""
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-" DrakBackup Report Details\n"
+" Per default all backups will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
-#: ../../standalone/drakbackup_.c:859
-#, fuzzy
-msgid "Total progess"
-msgstr "QapД±larД± sД±na"
-
-#: ../../standalone/drakbackup_.c:785
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"%s exists, delete?\n"
-"\n"
-"Warning: If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "This may take a moment to generate the keys."
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "ERROR: Cannot spawn %s."
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:818
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No password prompt on %s at port %s"
+msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:819
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Parolsuz"
-
-#: ../../standalone/drakbackup_.c:820
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Permission denied transferring %s to %s"
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include the web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed data afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:821
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "%s açıla bilmir: %s\n"
-
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "%s not responding"
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
+"options description:\n"
"\n"
-"ssh -i %s %s\\@%s\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %%).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000%% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" #> cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:873
-msgid "WebDAV remote site already in sync!"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:877
-msgid "WebDAV transfer failed!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore"
+msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:898
-msgid "No CDR/DVDR in drive!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Now"
+msgstr "Fayl sistemi qurДџularД±"
-#: ../../standalone/drakbackup_.c:902
-msgid "Does not appear to be recordable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Advanced Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:906
-msgid "Not erasable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Wizard Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:945
-msgid "This may take a moment to erase the media."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "View Backup Configuration."
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:1033
-msgid "Permission problem accessing CD."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Now from configuration file"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Drakbackup Configuration"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:1060
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No tape in %s!"
+msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
-msgid "Backup system files..."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Sending files..."
+msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "files sending by FTP"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1236
-#, fuzzy
-msgid "Backup User files..."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup other files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1237
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1290
-#, fuzzy
-msgid "Backup Other files..."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup user files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1296
-#, fuzzy
-msgid "No changes to backup!"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup system files"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:1322
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select data to backup..."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select media for backup..."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select data to restore..."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "The following packages need to be installed:\n"
+msgstr "AЕџaДџД±dakД± paketlЙ™r qurulacaqdД±r"
-#: ../../standalone/drakbackup_.c:1340
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:1354
-#, fuzzy
-msgid " Error during mail sending. \n"
-msgstr "%s faylД± oxunurkan xЙ™ta oldu"
-
-#: ../../standalone/drakbackup_.c:1380
-msgid "Can't create catalog!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Next"
+msgstr "SonrakД± ->"
-#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
-#: ../../standalone/drakfont_.c:946
-#, fuzzy
-msgid "File Selection"
-msgstr "Paket Qrup Seçkisi"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Previous"
+msgstr "<- ЖЏvvЙ™lki"
-#: ../../standalone/drakbackup_.c:1529
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+#: ../../standalone/drakbackup:1 ../../standalone/drakperm:1
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Save"
+msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:1573
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Build Backup"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:1574
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Progress"
+msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:1575
-#, fuzzy
-msgid "Backup your System files. (/etc directory)"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From Catalog"
+msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:1576
-msgid "Use incremental backup (do not replace old backups)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:1577
-msgid "Do not include critical files (passwd, group, fstab)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:1578
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Custom Restore"
+msgstr "XГјsusi"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
-#, 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:1
+#, fuzzy, c-format
+msgid "Restore Failed..."
+msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:1622
-msgid "Do not include the browser cache"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
-msgid "Use Incremental Backups (do not replace old backups)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Növbəni sil"
-
-#: ../../standalone/drakbackup_.c:1679
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "\"Windows\"u sil"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hostname required"
+msgstr "Ev sahibi adД±:"
-#: ../../standalone/drakbackup_.c:1714
-#, fuzzy
-msgid "Users"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username required"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:1740
-#, fuzzy
-msgid "Use network connection to backup"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Password required"
+msgstr "Parol"
-#: ../../standalone/drakbackup_.c:1742
-msgid "Net Method:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:1746
-msgid "Use Expect for SSH"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Host Name"
+msgstr "Ev sahibi adД±"
-#: ../../standalone/drakbackup_.c:1747
-msgid ""
-"Create/Transfer\n"
-"backup keys for SSH"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
-msgid ""
-" Transfer \n"
-"Now"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Via Network"
+msgstr "Fayldan geri Г§aДџД±r"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:1749
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Other (not drakbackup)\n"
-"keys in place already"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Xahiş edirik siçanınızı seçin"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From Tape"
+msgstr "Bölmə cədvəlini qurtar"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please enter the directory (or module) to\n"
-" put the backup on this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:1763
-#, fuzzy
-msgid "Please enter your login"
-msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From CD"
+msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:1768
-#, fuzzy
-msgid "Please enter your password"
-msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
-#: ../../standalone/drakbackup_.c:1774
-#, fuzzy
-msgid "Remember this password"
-msgstr "Parolsuz"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:1785
-msgid "Need hostname, username and password!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1879
-msgid "Use CD/DVDROM to backup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
-msgid ""
-"Please choose your CD/DVD device\n"
-"(Press Enter to propogate settings to other fields.\n"
-"This field isn't necessary, only a tool to fill in the form.)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:1887
-#, fuzzy
-msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "Klaviatura quruluşunu seçiniz."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1893
-#, fuzzy
-msgid "Please check for multisession CD"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "select path to restore (instead of /)"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:1899
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Other"
+msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:1905
-#, fuzzy
-msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Users"
+msgstr "Fayldan geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:1906
-msgid " Erase Now "
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore system"
+msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:1912
-#, fuzzy
-msgid "Please check if you are using a DVDR device"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Other Media"
+msgstr "DigЙ™r"
-#: ../../standalone/drakbackup_.c:1918
-#, fuzzy
-msgid "Please check if you are using a DVDRAM device"
-msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Select another media to restore from"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:1931
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
-#, fuzzy
-msgid "No CD device defined!"
-msgstr "Fayl seç"
-
-#: ../../standalone/drakbackup_.c:2012
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-
-#: ../../standalone/drakbackup_.c:2015
-msgid "Please enter the device name to use for backup"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore from Hard Disk."
+msgstr "DisketdЙ™n geri Г§aДџД±r"
-#: ../../standalone/drakbackup_.c:2021
-#, fuzzy
-msgid "Please check if you want to use the non-rewinding device."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Secure Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:2027
-#, 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:1
+#, fuzzy, c-format
+msgid "FTP Connection"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:2033
-#, fuzzy
-msgid "Please check if you want to eject your tape after the backup."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use quota for backup files."
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
-#: ../../standalone/drakbackup_.c:3068
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2103
-#, fuzzy
-msgid "Please enter the directory to save to:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
-#, fuzzy
-msgid "Use quota for backup files."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use Hard Disk to backup"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2180
-#, fuzzy
-msgid "Network"
-msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "please choose the date to restore"
+msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2185
-msgid "CDROM / DVDROM"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup the system files before:"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:2190
-msgid "HardDrive / NFS"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2195
-#, fuzzy
-msgid "Tape"
-msgstr "Növ"
-
-#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
-#: ../../standalone/drakbackup_.c:2216
-msgid "hourly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
-#: ../../standalone/drakbackup_.c:2216
-msgid "daily"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Restore Configuration "
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
-#: ../../standalone/drakbackup_.c:2216
-msgid "weekly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
-#: ../../standalone/drakbackup_.c:2216
-msgid "monthly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
-#, fuzzy
-msgid "Use daemon"
-msgstr "Д°stifadЙ™Г§i adД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please uncheck or remove it on next time."
+msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:2240
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+"List of data corrupted:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2247
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
+"List of data to restore:\n"
"\n"
-"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2283
-msgid "Send mail report after each backup to:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2289
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
-msgid "What"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2329
-#, fuzzy
-msgid "Where"
-msgstr "Г‡Й™rx"
-
-#: ../../standalone/drakbackup_.c:2334
-#, fuzzy
-msgid "When"
-msgstr "Г‡Й™rx"
-
-#: ../../standalone/drakbackup_.c:2339
-#, fuzzy
-msgid "More Options"
-msgstr "Modul seçənəkləri:"
-
-#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-
-#: ../../standalone/drakbackup_.c:2376
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:2378
-msgid "on Hard Drive"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2388
-msgid "across Network"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2398
-msgid "on CDROM"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2406
-msgid "on Tape Device"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2449
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#: ../../standalone/drakbackup_.c:2450
-#, fuzzy
-msgid "Backup system"
-msgstr "Fayl sistemi qurДџularД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Hard drive.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2451
-msgid "Backup Users"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2454
-msgid "Select user manually"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2537
-msgid ""
-"\n"
-"Backup Sources: \n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
-msgid ""
-"\n"
-"- System Files:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid ""
"\n"
-"- User Files:\n"
-msgstr ""
+"- Options:\n"
+msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2542
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"- Other Files:\n"
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
+"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2553
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Burn to CD"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2554
-msgid "RW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2555
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2556
-msgid " (multi-session)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2557
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save to Tape on device: %s"
+"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "\t\tErase=%s"
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2561
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save via %s on host: %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2562
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Options:\n"
-msgstr "Seçənəklər"
-
-#: ../../standalone/drakbackup_.c:2564
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2567
-msgid "\tBackups use tar and bzip2\n"
+"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2569
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2572
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include:\n"
+"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2574
-msgid "\t-CDROM.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2575
-msgid "\t-Tape \n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup system"
+msgstr "Fayl sistemi qurДџularД±"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose what you want to backup"
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2576
-msgid "\t-Network by FTP.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2577
-msgid "\t-Network by SSH.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2578
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2579
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose where you want to backup"
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "More Options"
+msgstr "Modul seçənəkləri:"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "When"
+msgstr "Г‡Й™rx"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Where"
+msgstr "Г‡Й™rx"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2581
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
-msgid ""
-"List of data to restore:\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2754
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"List of data corrupted:\n"
+"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:2756
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Please choose the\n"
+"media for backup."
+msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2766
-msgid "Backup files are corrupted"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use daemon"
+msgstr "Д°stifadЙ™Г§i adД±"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2787
-msgid " All of your selected data have been "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2788
+#: ../../standalone/drakbackup:1
#, c-format
-msgid " Successfuly Restored on %s "
+msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2906
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "hourly"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2924
-msgid "OK to restore the other files."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2941
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:3019
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the directory to save to:"
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3021
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "Xahiş edirik siçanınızın növünü seçin."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:3057
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+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:3060
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Xahiş edirik siçanınızı seçin"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:3103
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the device name to use for backup"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3110
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use tape to backup"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3134
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "DisketdЙ™n geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No CD device defined!"
+msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:3136
-msgid "Please enter the directory where backups are stored"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:3204
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "Xahiş edirik siçanınızın növünü seçin."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:3206
-#, fuzzy
-msgid "Other Media"
-msgstr "DigЙ™r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDR device"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:3211
-#, fuzzy
-msgid "Restore system"
-msgstr "Sistemi qur"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Erase Now "
+msgstr ""
-#: ../../standalone/drakbackup_.c:3212
-#, fuzzy
-msgid "Restore Users"
-msgstr "Fayldan geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:3213
-#, fuzzy
-msgid "Restore Other"
-msgstr "Fayldan geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using CDRW media"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:3215
-#, fuzzy
-msgid "select path to restore (instead of /)"
-msgstr "Xahiş edirik siçanınızın növünü seçin."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check for multisession CD"
+msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:3219
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Klaviatura quruluşunu seçiniz."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3221
-msgid "Remove user directories before restore."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3334
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:3344
-#, fuzzy
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Növbəni sil"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Remember this password"
+msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:3361
-#, fuzzy
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr "Fayldan geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter your password"
+msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/drakbackup_.c:3427
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter your login"
+msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:3440
-#, fuzzy
-msgid "Restore From CD"
-msgstr "DisketdЙ™n geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the host name or IP."
+msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3442
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:3452
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+" Transfer \n"
+"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:3452
-#, fuzzy
-msgid "Restore From Tape"
-msgstr "Bölmə cədvəlini qurtar"
-
-#: ../../standalone/drakbackup_.c:3454
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:3474
-#, fuzzy
-msgid "Restore Via Network"
-msgstr "Fayldan geri Г§aДџД±r"
-
-#: ../../standalone/drakbackup_.c:3474
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Restore Via Network Protocol: %s"
+msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy
-msgid "Host Name"
-msgstr "Ev sahibi adД±"
-
-#: ../../standalone/drakbackup_.c:3476
-msgid "Host Path or Module"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3483
-#, fuzzy
-msgid "Password required"
-msgstr "Parol"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use network connection to backup"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3489
-#, fuzzy
-msgid "Username required"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Users"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakbackup_.c:3492
-#, fuzzy
-msgid "Hostname required"
-msgstr "Ev sahibi adД±:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Windows (FAT32)"
+msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:3497
-msgid "Path or Module required"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3510
-msgid "Files Restored..."
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove Selected"
+msgstr "Növbəni sil"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:3513
-#, fuzzy
-msgid "Restore Failed..."
-msgstr "Fayldan geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+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:3751
-msgid "Restore all backups"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:3760
-#, fuzzy
-msgid "Custom Restore"
-msgstr "XГјsusi"
-
-#: ../../standalone/drakbackup_.c:3804
-msgid "CD in place - continue."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3810
-msgid "Browse to new restore repository."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3813
-#, fuzzy
-msgid "Restore From Catalog"
-msgstr "Bölmə cədvəlini qurtar"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup your System files. (/etc directory)"
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:3841
-#, fuzzy
-msgid "Restore Progress"
-msgstr "Fayldan geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
-#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
-#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
-#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
-#: ../../standalone/drakbackup_.c:4139
-#, fuzzy
-msgid "Previous"
-msgstr "<- ЖЏvvЙ™lki"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"Please check all options that you need.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
-#: ../../standalone/logdrake_.c:203
-#, fuzzy
-msgid "Save"
-msgstr "Hal:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3946
-#, fuzzy
-msgid "Build Backup"
-msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "File Selection"
+msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
-#, fuzzy
-msgid "Restore"
-msgstr "Fayldan geri Г§aДџД±r"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Error while sending mail. \n"
+msgstr "%s faylД± oxunurkan xЙ™ta oldu"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4195
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4209
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
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:4232
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../standalone/drakbackup_.c:4267
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-
-#: ../../standalone/drakbackup_.c:4275
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Xahiş edirik istifadə üçün bir dil seçin."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4308
-msgid "Under Devel ... please wait."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakbackup_.c:4382
-#, fuzzy
-msgid "Backup system files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No changes to backup!"
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4384
-#, fuzzy
-msgid "Backup user files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hard Disk Backup files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4386
-#, fuzzy
-msgid "Backup other files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Other files..."
msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
-#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
-msgid "Total Progress"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4412
-msgid "files sending by FTP"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup User files..."
+msgstr "XЙ™talД± yedЙ™klЙ™mЙ™ faylД±"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4416
-#, fuzzy
-msgid "Sending files..."
-msgstr "Fayla qeyd et"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4500
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../standalone/drakbackup_.c:4505
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../standalone/drakbackup_.c:4526
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not erasable media!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4531
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4536
-#, fuzzy
-msgid "Backup Now"
-msgstr "Fayl sistemi qurДџularД±"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4576
-msgid "Drakbackup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:4624
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time (about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:4654
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Total progess"
+msgstr "QapД±larД± sД±na"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"ssh -i %s %s\\@%s\n"
"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:4662
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:4701
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used, because with incremental \n"
-"backups it is necessary to restore one by one each older backup.\n"
-"\n"
-"So if you don't want to restore a user please unselect all their\n"
-"check boxes.\n"
-"\n"
-"Otherwise, you are able to select only one of these.\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption to use. This option allows you to \n"
-"\tbackup all of your data the first time, and \n"
-"\tonly the changed data after.\n"
-"\tSo you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "%s açıla bilmir: %s\n"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:4727
-msgid ""
-" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
-"fr>"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Parolsuz"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:4729
-msgid ""
-" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:4732
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
+"%s exists, delete?\n"
"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
+" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4769
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"options description:\n"
"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
+" DrakBackup Daemon Report\n"
+"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4778
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Restore Backup Problems:\n"
+" DrakBackup Report \n"
"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakboot_.c:50
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "%s qurulumu iflas etdi. Olan xЙ™ta:"
-
-#: ../../standalone/drakbug_.c:45
-msgid "Mandrake Bug Report Tool"
+msgid "INFO"
msgstr ""
-#: ../../standalone/drakbug_.c:50
-msgid "First Time Wizard"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakbug_.c:51
-msgid "Synchronization tool"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
-#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
-#: ../../standalone/drakbug_.c:139
-#, fuzzy
-msgid "Standalone Tools"
-msgstr "Konsol VasitЙ™lЙ™ri"
-
-#: ../../standalone/drakbug_.c:53
-msgid "HardDrake"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Cron not available yet as non-root"
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/drakboot:1
+#, c-format
+msgid "Installation of %s failed. The following error occured:"
+msgstr "%s qurulumu iflas etdi. Olan xЙ™ta:"
-#: ../../standalone/drakbug_.c:59
-msgid "Urpmi"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "No browser available! Please install one"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../standalone/drakbug_.c:60
-msgid "Windows Migration tool"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "connecting to Bugzilla wizard ..."
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:75
-#, fuzzy
-msgid "Application:"
-msgstr "TanД±tma"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package not installed"
+msgstr "Qurulumdan Г§Д±x"
-#: ../../standalone/drakbug_.c:76
-#, fuzzy
-msgid "Package: "
-msgstr "Paket Qrup Seçkisi"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Not installed"
+msgstr "Qurulumdan Г§Д±x"
-#: ../../standalone/drakbug_.c:77
-msgid "Kernel:"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Standalone Tools"
+msgstr "Konsol VasitЙ™lЙ™ri"
-#: ../../standalone/drakbug_.c:78
-#, fuzzy
-msgid "Release: "
-msgstr "Xahiş edirik gözləyin"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Report"
+msgstr "QapД±"
-#: ../../standalone/drakbug_.c:93
+#: ../../standalone/drakbug:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -11604,331 +14619,347 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:112
-#, fuzzy
-msgid "Report"
-msgstr "QapД±"
-
-#: ../../standalone/drakbug_.c:148
-#, fuzzy
-msgid "Not installed"
-msgstr "Qurulumdan Г§Д±x"
-
-#: ../../standalone/drakbug_.c:160
-#, fuzzy
-msgid "Package not installed"
-msgstr "Qurulumdan Г§Д±x"
-
-#: ../../standalone/drakbug_.c:173
-msgid "connecting to Bugzilla wizard ..."
-msgstr ""
-
-#: ../../standalone/drakbug_.c:180
-#, fuzzy
-msgid "No browser available! Please install one"
-msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Release: "
+msgstr "Xahiş edirik gözləyin"
-#: ../../standalone/drakconnect_.c:75
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД± (%d adapter)"
+msgid "Kernel:"
+msgstr ""
-#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
-msgid "Profile: "
-msgstr "Profil: "
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package: "
+msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakconnect_.c:91
-msgid "Del profile..."
-msgstr "Profili sil..."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Application:"
+msgstr "TanД±tma"
-#: ../../standalone/drakconnect_.c:97
-msgid "Profile to delete:"
-msgstr "SilinЙ™cЙ™k profil:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Configuration Wizards"
+msgstr "ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД± SehirbazД±"
-#: ../../standalone/drakconnect_.c:125
-msgid "New profile..."
-msgstr "Yeni profil..."
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Userdrake"
+msgstr "Г‡ap Edici"
-#: ../../standalone/drakconnect_.c:131
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakconnect_.c:157
-msgid "Hostname: "
-msgstr "Ev sahibi adД±:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Urpmi"
+msgstr ""
-#: ../../standalone/drakconnect_.c:164
-msgid "Internet access"
-msgstr "Д°nternet imkanД±"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Software Manager"
+msgstr "PaylaЕџdД±rma adД±"
-#: ../../standalone/drakconnect_.c:177
-msgid "Type:"
-msgstr "Növ: "
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Remote Control"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Gateway:"
-msgstr "Keçit:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Msec"
+msgstr "Siçan"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Interface:"
-msgstr "Ara Гјz"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Menudrake"
+msgstr "Usta"
-#: ../../standalone/drakconnect_.c:191
-msgid "Status:"
-msgstr "Hal:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Online"
+msgstr "Д°darЙ™ MЙ™rkЙ™zi"
-#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
-msgid "Wait please"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakconnect_.c:216
-msgid "Configure Internet Access..."
-msgstr "İnternet keçişini Qur..."
-
-#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
-msgid "LAN configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-
-#: ../../standalone/drakconnect_.c:228
-msgid "Driver"
-msgstr "SГјrГјcГј"
-
-#: ../../standalone/drakconnect_.c:228
-msgid "Interface"
-msgstr "Ara Гјz"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Synchronization tool"
+msgstr ""
-#: ../../standalone/drakconnect_.c:228
-msgid "Protocol"
-msgstr "Protokol"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "First Time Wizard"
+msgstr "Д°lk DЙ™fЙ™ SehirbazД±na XoЕџ GЙ™ldiniz"
-#: ../../standalone/drakconnect_.c:228
-#, fuzzy
-msgid "State"
-msgstr "Hal:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Mandrake Bug Report Tool"
+msgstr ""
-#: ../../standalone/drakconnect_.c:240
-msgid "Configure Local Area Network..."
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ni QuraЕџdД±r..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP Client"
+msgstr "DHCP AlД±cД±sД±"
-#: ../../standalone/drakconnect_.c:252
-msgid "Click here to launch the wizard ->"
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Ethernet Card"
+msgstr "Eternet KartД±"
-#: ../../standalone/drakconnect_.c:253
-msgid "Wizard..."
-msgstr "Sehirbaz..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway"
+msgstr "Keçit"
-#: ../../standalone/drakconnect_.c:279
-msgid "Apply"
-msgstr "ЖЏlavЙ™ Et"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Parameters"
+msgstr "ParametrlЙ™r"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-msgid "Connected"
-msgstr "BaДџlandД±"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connection type: "
+msgstr "Bağlantı növü:"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-msgid "Not connected"
-msgstr "BaДџlД± deyil"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile: "
+msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Connect..."
-msgstr "BaДџlan..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Internet Connection Configuration"
+msgstr "Д°nternet BaДџlantД±sД± QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Disconnect..."
-msgstr "BaДџlantД±nД± KЙ™s..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Internet connection configuration"
+msgstr "Д°nternet baДџlantД±sД± quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:400
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+"You don't have an 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:427
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-"Qurulu ara ГјzГјnГјz yoxdure.\n"
-"ЖЏvvЙ™lcЙ™ onlarД± 'QuraЕџdД±r'a basaraq qurun"
-#: ../../standalone/drakconnect_.c:449
-msgid "LAN Configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "activate now"
+msgstr "FЙ™al"
-#: ../../standalone/drakconnect_.c:460
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "deactivate now"
+msgstr "FЙ™al"
-#: ../../standalone/drakconnect_.c:466
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP client"
+msgstr "DHCP alД±cД±sД±"
-#: ../../standalone/drakconnect_.c:467
+#: ../../standalone/drakconnect:1
+#, c-format
msgid "Started on boot"
msgstr "Açılışda başladılır"
-#: ../../standalone/drakconnect_.c:468
-msgid "DHCP client"
-msgstr "DHCP alД±cД±sД±"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Boot Protocol"
+msgstr "Açılış Protokolu"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-#, fuzzy
-msgid "activate now"
-msgstr "FЙ™al"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-#, fuzzy
-msgid "deactivate now"
-msgstr "FЙ™al"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "LAN Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:499
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "LAN configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakconnect_.c:556
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"Heç İnternet bağlantınız yoxdur.\n"
+"Qurulu ara ГјzГјnГјz yoxdure.\n"
"ЖЏvvЙ™lcЙ™ onlarД± 'QuraЕџdД±r'a basaraq qurun"
-#: ../../standalone/drakconnect_.c:580
-msgid "Internet connection configuration"
-msgstr "Д°nternet baДџlantД±sД± quraЕџdД±rД±lmasД±"
-
-#: ../../standalone/drakconnect_.c:584
-msgid "Internet Connection Configuration"
-msgstr "Д°nternet BaДџlantД±sД± QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Connect..."
+msgstr "BaДџlan..."
-#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Disconnect..."
+msgstr "BaДџlantД±nД± KЙ™s..."
-#: ../../standalone/drakconnect_.c:599
-msgid "Parameters"
-msgstr "ParametrlЙ™r"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Not connected"
+msgstr "BaДџlД± deyil"
-#: ../../standalone/drakconnect_.c:618
-msgid "Gateway"
-msgstr "Keçit"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connected"
+msgstr "BaДџlandД±"
-#: ../../standalone/drakconnect_.c:627
-msgid "Ethernet Card"
-msgstr "Eternet KartД±"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../standalone/drakconnect_.c:628
-msgid "DHCP Client"
-msgstr "DHCP AlД±cД±sД±"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface:"
+msgstr "Ara Гјz"
-#: ../../standalone/drakfloppy_.c:39
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway:"
+msgstr "Keçit:"
-#: ../../standalone/drakfloppy_.c:40
-msgid "Module name"
-msgstr "Modul adД±"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Apply"
+msgstr "ЖЏlavЙ™ Et"
-#: ../../standalone/drakfloppy_.c:40
-msgid "Size"
-msgstr "Böyüklük"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Click here to launch the wizard ->"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:45
-msgid "drakfloppy"
-msgstr "drakfloppy"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Wizard..."
+msgstr "Sehirbaz..."
-#: ../../standalone/drakfloppy_.c:63
-msgid "boot disk creation"
-msgstr "açılış disketi yaradılması"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Status:"
+msgstr "Hal:"
-#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
-msgid "default"
-msgstr "Й™sas"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Type:"
+msgstr "Növ: "
-#: ../../standalone/drakfloppy_.c:87
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "DrakFloppy Error: %s"
-msgstr "DrakFloppy xЙ™tasД±: %s"
+msgid "Internet access"
+msgstr "Д°nternet imkanД±"
-#: ../../standalone/drakfloppy_.c:98
-msgid "kernel version"
-msgstr "Г§Й™yirdЙ™k buraxД±lД±ЕџД±"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Hostname: "
+msgstr "Ev sahibi adД±:"
-#: ../../standalone/drakfloppy_.c:104
-msgid "General"
-msgstr "Гњmumi"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure Local Area Network..."
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ni QuraЕџdД±r..."
-#: ../../standalone/drakfloppy_.c:109
-msgid "Expert Area"
-msgstr "UstalarД±n SahЙ™si"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "State"
+msgstr "Hal:"
-#: ../../standalone/drakfloppy_.c:112
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrdin arzuya baДџlД± olan arqumentlЙ™ri"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Driver"
+msgstr "SГјrГјcГј"
-#: ../../standalone/drakfloppy_.c:113
-msgid "Add a module"
-msgstr "Modul Й™lavЙ™ et"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Protocol"
+msgstr "Protokol"
-#: ../../standalone/drakfloppy_.c:133
-msgid "force"
-msgstr "zorla"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface"
+msgstr "Ara Гјz"
-#: ../../standalone/drakfloppy_.c:134
-msgid "if needed"
-msgstr "lazД±m olarsa"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure Internet Access..."
+msgstr "İnternet keçişini Qur..."
-#: ../../standalone/drakfloppy_.c:135
-msgid "omit scsi modules"
-msgstr "scsi modulları keç"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Wait please"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:136
-msgid "omit raid modules"
-msgstr "raid modulları keç"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:172
-msgid "Remove a module"
-msgstr "Modulu Г§Д±xart"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "New profile..."
+msgstr "Yeni profil..."
-#: ../../standalone/drakfloppy_.c:194
-msgid "Output"
-msgstr "NЙ™ticЙ™"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile to delete:"
+msgstr "SilinЙ™cЙ™k profil:"
-#: ../../standalone/drakfloppy_.c:206
-msgid "Build the disk"
-msgstr "Diski yarat"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Del profile..."
+msgstr "Profili sil..."
-#: ../../standalone/drakfloppy_.c:336
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "%s avadanlД±ДџД±nda medya olduДџundan Й™min olun"
+msgid "Network configuration (%d adapters)"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД± (%d adapter)"
-#: ../../standalone/drakfloppy_.c:341
-#, fuzzy, c-format
+#: ../../standalone/drakedm:1
+#, c-format
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"X11 Display Manager allows you to graphically log\n"
+"into your system with the X Window System running and supports running\n"
+"several different X sessions on your local machine at the same time."
msgstr ""
-"%s avadanlД±ДџД±nda medya yoxdur.\n"
-"XahiЕџ edirik. birini taxД±n."
-#: ../../standalone/drakfloppy_.c:344
+#: ../../standalone/drakedm:1
#, c-format
-msgid "Unable to fork: %s"
-msgstr "Fork edilЙ™ bilmir: %s"
+msgid "Choosing a display manager"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:349
+#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
-"Unable to close properly mkbootdisk: \n"
+"Unable to properly close mkbootdisk: \n"
" %s \n"
" %s"
msgstr ""
@@ -11936,140 +14967,227 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:213
-msgid "Search installed fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Fork edilЙ™ bilmir: %s"
-#: ../../standalone/drakfont_.c:215
-msgid "Unselect fonts installed"
+#: ../../standalone/drakfloppy:1
+#, 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/drakfont_.c:239
-msgid "parse all fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "%s avadanlД±ДџД±nda medya olduДџundan Й™min olun"
-#: ../../standalone/drakfont_.c:242
-#, fuzzy
-msgid "no fonts found"
-msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Build the disk"
+msgstr "Diski yarat"
-#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
-#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
-#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
-#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
-#, fuzzy
-msgid "done"
-msgstr "QurtardД±"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Output"
+msgstr "NЙ™ticЙ™"
-#: ../../standalone/drakfont_.c:257
-msgid "could not find any font in your mounted partitions"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Remove a module"
+msgstr "Modulu Г§Д±xart"
-#: ../../standalone/drakfont_.c:303
-msgid "Reselect correct fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit raid modules"
+msgstr "raid modulları keç"
-#: ../../standalone/drakfont_.c:307
-msgid "could not find any font.\n"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit scsi modules"
+msgstr "scsi modulları keç"
-#: ../../standalone/drakfont_.c:331
-msgid "Search fonts in installed list"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "if needed"
+msgstr "lazД±m olarsa"
-#: ../../standalone/drakfont_.c:359
-msgid "Fonts copy"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "force"
+msgstr "zorla"
-#: ../../standalone/drakfont_.c:363
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Qurulum hazД±rlanД±r"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Add a module"
+msgstr "Modul Й™lavЙ™ et"
-#: ../../standalone/drakfont_.c:371
-msgid "please wait during ttmkfdir..."
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdin arzuya baДџlД± olan arqumentlЙ™ri"
-#: ../../standalone/drakfont_.c:377
-msgid "True Type install done"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Area"
+msgstr "UstalarД±n SahЙ™si"
-#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
-msgid "Fonts conversion"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "General"
+msgstr "Гњmumi"
-#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
-#: ../../standalone/drakfont_.c:450
-msgid "type1inst building"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "kernel version"
+msgstr "Г§Й™yirdЙ™k buraxД±lД±ЕџД±"
-#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
-msgid "Ghostscript referencing"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy xЙ™tasД±: %s"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "default"
+msgstr "Й™sas"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "boot disk creation"
+msgstr "açılış disketi yaradılması"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Size"
+msgstr "Böyüklük"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Module name"
+msgstr "Modul adД±"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Post Uninstall"
+msgstr "Qurulumdan Г§Д±x"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove fonts on your system"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Initial tests"
+msgstr "Д°nit Д°smarД±cД±"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Post Install"
+msgstr "Qurulum"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:437
-msgid "ttf fonts conversion"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Copy fonts on your system"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove List"
+msgstr "Uzaq Г‡ap Edici"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Selected All"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:444
-msgid "pfm fonts conversion"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:456
-msgid "Suppress temporary Files"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:459
-#, fuzzy
-msgid "Restart XFS"
-msgstr "mЙ™hdudlaЕџdД±r"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Install List"
+msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
-msgid "Suppress Fonts Files"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:528
-#, fuzzy
-msgid "xfs restart"
-msgstr "mЙ™hdudlaЕџdД±r"
-
-#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
+#: ../../standalone/drakfont:1
+#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
+"-You can install the fonts the normal way. In rare cases, bogus fonts may "
+"hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:621
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Bölmə şəkilləndirilməsi"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Generic Printers"
+msgstr "Г‡ap Edici"
-#: ../../standalone/drakfont_.c:650
-msgid "Get Windows Fonts"
-msgstr ""
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Abiword"
+msgstr "DayandД±r"
-#: ../../standalone/drakfont_.c:658
-msgid "Uninstall Fonts"
-msgstr ""
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "StarOffice"
+msgstr "Д°Еџ Yeri"
-#: ../../standalone/drakfont_.c:669
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Ghostscript"
+msgstr ""
-#: ../../standalone/drakfont_.c:677
-#, fuzzy
-msgid "Font List"
-msgstr "Bağlama nöqtəsi"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Choose the applications that will support the fonts:"
+msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../standalone/drakfont_.c:737
+#: ../../standalone/drakfont:1
+#, c-format
msgid ""
"\n"
" Copyright (C) 2001-2002 by MandrakeSoft \n"
-"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
+"\tDUPONT Sebastien (original version)\n"
+" CHAUMETTE Damien <dchaumette\\@mandrakesoft.com>\n"
"\n"
" 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"
@@ -12095,267 +15213,345 @@ msgid ""
" - ttf2pt1: \n"
"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
" Convert ttf font files to afm and pfb fonts\n"
-"\n"
-"\n"
msgstr ""
-#: ../../standalone/drakfont_.c:793
-msgid ""
-"drakfont Future Overview\n"
-" - Fonts import:\n"
-" pfb ( Adobe Type 1 binary )\n"
-" pfa ( Adobe Type 1 ASCII )\n"
-" ttf ( True-Type )\n"
-" pcf.gz\n"
-" Speedo\n"
-" and Bitmap (PCF, BDF, and SNF)\n"
-" - Features\n"
-" - Install fonts from any directory\n"
-" - Get windows fonts on any vfat partitions\n"
-" - Get fonts on any partitions.\n"
-" - UN-installation of any fonts (even if not installed "
-"through drakfont)\n"
-" - Support\n"
-" - Xfs\n"
-" - ghostscript & printer\n"
-" - Staroffice & printer\n"
-" - abiword\n"
-"\t - netscape\n"
-" - Koffice, Gnumeric, ... studying\n"
-" - all fonts supported by printer\n"
-" - anti-aliases by RENDER in Xfree86 .... \n"
-"\t\t\t\tsupported by KDE.\n"
-"\t\t\t\twill be supported by gnome 1.2.\n"
-"Visual Interface:\n"
-" Window interface:\n"
-" - Fontselectiondialog widget\n"
-" - Command buttons under Fontselectiondialog (like the actual "
-"frontend).\n"
-" Commands buttons:\n"
-" - import from windows partition.\n"
-" import from all fat32 partitions and look for winnt/windows/"
-"font\n"
-" and import all (delete doublon) but don't import if already "
-"exist.\n"
-" - import from directory\n"
-" look for if it exist before for each font and not delete the "
-"original.\n"
-" (replace all, no, none)\n"
-" expert options:\n"
-" ask the directory, and look for if it exist before\n"
-" if it exist ask: (replace all, no, none)\n"
-" - uninstall with list per font type\n"
-" Expert additional switch\n"
-" - option support: ghostscript, Staroffice, etc...\n"
-" check-button. (by default all check)\n"
-" - Printer Application Fonts Support...\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:862
-#, fuzzy
-msgid "Choose the applications that will support the fonts:"
-msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "About"
+msgstr "DayandД±r"
-#: ../../standalone/drakfont_.c:870
-msgid "Ghostscript"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Font List"
+msgstr "Bağlama nöqtəsi"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Advanced Options"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:877
-#, fuzzy
-msgid "StarOffice"
-msgstr "Д°Еџ Yeri"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Get Windows Fonts"
+msgstr ""
-#: ../../standalone/drakfont_.c:884
-#, fuzzy
-msgid "Abiword"
-msgstr "DayandД±r"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Import Fonts"
+msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:891
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Г‡ap Edici"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "done"
+msgstr "QurtardД±"
-#: ../../standalone/drakfont_.c:958
-msgid "Select the font file or directory and click on 'Add'"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "xfs restart"
+msgstr "mЙ™hdudlaЕџdД±r"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:1005
-#, fuzzy
-msgid "Install List"
-msgstr "Sistemi qur"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Restart XFS"
+msgstr "mЙ™hdudlaЕџdД±r"
-#: ../../standalone/drakfont_.c:1048
-msgid "click here if you are sure."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Suppress Temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:1055
-msgid "here if no."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:1112
-msgid "Unselected All"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:1116
-#, fuzzy
-msgid "Selected All"
-msgstr "Fayl seç"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../standalone/drakfont_.c:1120
-#, fuzzy
-msgid "Remove List"
-msgstr "Uzaq Г‡ap Edici"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
-#, fuzzy
-msgid "Initials tests"
-msgstr "Д°nit Д°smarД±cД±"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Fonts conversion"
+msgstr ""
-#: ../../standalone/drakfont_.c:1145
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "True Type install done"
+msgstr ""
-#: ../../standalone/drakfont_.c:1149
-msgid "Install & convert Fonts"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:1153
-#, fuzzy
-msgid "Post Install"
-msgstr "Qurulum"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "True Type fonts installation"
+msgstr "Qurulum hazД±rlanД±r"
-#: ../../standalone/drakfont_.c:1178
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Fonts copy"
+msgstr ""
-#: ../../standalone/drakfont_.c:1182
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Qurulumdan Г§Д±x"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Search for fonts in installed list"
+msgstr ""
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
-msgid "Internet Connection Sharing"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "could not find any font.\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:114
-msgid "Sorry, we support only 2.4 kernels."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakgw_.c:125
-msgid "Internet Connection Sharing currently enabled"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "could not find any font in your mounted partitions"
+msgstr ""
-#: ../../standalone/drakgw_.c:126
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "no fonts found"
+msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "parse all fonts"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselect fonts installed"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Search installed fonts"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently enabled.\n"
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
-"What would you like to do?"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"VЙ™ artД±q fЙ™allaЕџdД±rД±lmД±ЕџdД±r.\n"
+"İnternet Bağlantısı Bölüşdürmə vasitəsinə Xoş Gəldiniz!\n"
"\n"
-"NЙ™ etmЙ™k istЙ™yirsiniz?"
+"%s\n"
+"\n"
+"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakgw_.c:130
-msgid "disable"
-msgstr "passivlЙ™Еџdir"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing configuration"
+msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
-msgid "dismiss"
-msgstr "keç"
+#: ../../standalone/drakgw:1
+#, c-format
+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:130 ../../standalone/drakgw_.c:154
-msgid "reconfigure"
-msgstr "yenidЙ™n quraЕџdД±r"
+#: ../../standalone/drakgw:1
+#, c-format
+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:133
-msgid "Disabling servers..."
-msgstr "VericilЙ™r baДџlanД±r..."
+#: ../../standalone/drakgw:1
+#, c-format
+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:142
-msgid "Internet connection sharing is now disabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
+#: ../../standalone/drakgw:1
+#, c-format
+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 ""
+"HЙ™r Еџey quruldu.\n"
+"Д°ndi isЙ™ Д°nternet baДџlantД±nД±zД± yerli ЕџЙ™bЙ™kЙ™dЙ™kД± baЕџqa kompГјterlЙ™r ilЙ™ "
+"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
+"iЕџlЙ™dilir."
-#: ../../standalone/drakgw_.c:149
-msgid "Internet Connection Sharing currently disabled"
-msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid "Problems installing package %s"
+msgstr "%s paketi qurulurkЙ™n xЙ™ta oldu"
-#: ../../standalone/drakgw_.c:150
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "SkriptlЙ™ qurulur, proqram tЙ™'minatД± qurulur, xidmЙ™tlЙ™r baЕџladД±lД±r..."
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Configuring..."
+msgstr "QuraЕџdД±rД±lД±r..."
+
+#: ../../standalone/drakgw:1
+#, 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:1
+#, c-format
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
-"VЙ™ artД±q passivlЙ™ЕџdirilmiЕџdir.\n"
-"\n"
-"NЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../standalone/drakgw_.c:154
-msgid "enable"
-msgstr "fЙ™allaЕџdД±r"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../standalone/drakgw_.c:161
-msgid "Enabling servers..."
-msgstr "XidmЙ™tlЙ™r fЙ™allaЕџdД±rД±lД±r..."
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The maximum lease (in seconds)"
+msgstr ""
-#: ../../standalone/drakgw_.c:166
-msgid "Internet connection sharing is now enabled."
-msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../standalone/drakgw_.c:183
-#, fuzzy
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP end range"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP start range"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The internal domain name"
+msgstr "Г‡ap Edicisiz"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The DNS Server IP"
+msgstr "CUPS verici IP"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "(This) DHCP Server IP"
+msgstr "CUPS verici IP"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
+"DHCP Server Configuration.\n"
"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
+"Here you can select different options for the DHCP server configuration.\n"
+"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
msgstr ""
-"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
-"Bu seçənəklə yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
-"baДџlantД±nД±zdan faydalana bilЙ™cЙ™klЙ™r.\n"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Local Network adress"
+msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
-"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
-"ehtiyacД±nД±z var."
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
+"for you.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Interface %s (using module %s)"
-msgstr "Ara Гњz %s (%s modulu iЕџlЙ™dilir)"
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Current interface configuration"
+msgstr "Д°nternet qurДџularД±"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Show current interface configuration"
+msgstr "Д°nternet qurДџularД±"
-#: ../../standalone/drakgw_.c:212
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Interface %s"
-msgstr "Ara Гјz %s"
+msgid "No (experts only)"
+msgstr ""
-#: ../../standalone/drakgw_.c:220
-msgid "No network adapter on your system!"
-msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Automatic reconfiguration"
+msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakgw_.c:221
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-"SisteminizdЙ™ ЕџЙ™bЙ™kЙ™ kartД± tapД±la bilmЙ™yib.AvadanlД±ДџД± quran vasitЙ™ni iЕџЙ™ "
-"salД±n."
-#: ../../standalone/drakgw_.c:227
-msgid "Network interface"
-msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Network interface already configured"
+msgstr "Monitor qurulmayД±b"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw:1
+#, c-format
+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:1
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12370,348 +15566,490 @@ msgstr ""
"\n"
"Yerli ЕћЙ™bЙ™kЙ™ adapterinizi qurmaq ГјzЙ™rЙ™yЙ™m?"
-#: ../../standalone/drakgw_.c:235
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Network interface"
+msgstr "ЕћЙ™bЙ™kЙ™ ara ГјzГј"
+
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
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"
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"SisteminizdЙ™ ЕџЙ™bЙ™kЙ™ kartД± tapД±la bilmЙ™yib.AvadanlД±ДџД± quran vasitЙ™ni iЕџЙ™ "
+"salД±n."
-#: ../../standalone/drakgw_.c:261
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Monitor qurulmayД±b"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid "No network adapter on your system!"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Interface %s"
+msgstr "Ara Гјz %s"
-#: ../../standalone/drakgw_.c:262
+#: ../../standalone/drakgw:1
#, c-format
+msgid "Interface %s (using module %s)"
+msgstr "Ara Гњz %s (%s modulu iЕџlЙ™dilir)"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
+"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 "
+"this computer's Internet connection.\n"
"\n"
-"Do you want an automatic re-configuration?\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
-"You can do it manually but you need to know what you're doing."
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
+"Bu seçənəklə yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
+"baДџlantД±nД±zdan faydalana bilЙ™cЙ™klЙ™r.\n"
+"\n"
+"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
+"ehtiyacД±nД±z var."
-#: ../../standalone/drakgw_.c:267
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Qurulum TЙ™rzi QuraЕџdД±rД±lmasД±"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../standalone/drakgw_.c:267
-msgid "No (experts only)"
-msgstr ""
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing is now enabled."
+msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../standalone/drakgw_.c:268
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Enabling servers..."
+msgstr "XidmЙ™tlЙ™r fЙ™allaЕџdД±rД±lД±r..."
-#: ../../standalone/drakgw_.c:269
-#, fuzzy
-msgid "Current interface configuration"
-msgstr "Д°nternet qurДџularД±"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "dismiss"
+msgstr "keç"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "reconfigure"
+msgstr "yenidЙ™n quraЕџdД±r"
-#: ../../standalone/drakgw_.c:270
+#: ../../standalone/drakgw:1
#, c-format
+msgid "enable"
+msgstr "fЙ™allaЕџdД±r"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"Current configuration of `%s':\n"
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"What would you like to do?"
msgstr ""
+"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
+"VЙ™ artД±q passivlЙ™ЕџdirilmiЕџdir.\n"
+"\n"
+"NЙ™ etmЙ™k istЙ™yirsiniz?"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing currently disabled"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing is now disabled."
+msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:283
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Disabling servers..."
+msgstr "VericilЙ™r baДџlanД±r..."
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "disable"
+msgstr "passivlЙ™Еџdir"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the Network that you use "
-"for your local network; I will not reconfigure it and I will not touch your "
-"DHCP server configuration.\n"
-"\n"
-"The default DNS entry is the Caching Nameserver configured on the firewall. "
-"You can replace that with your ISP DNS IP, for example.\n"
-"\t\t \n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
+"The setup of Internet Connection Sharing has already been done.\n"
+"It's currently enabled.\n"
"\n"
+"What would you like to do?"
msgstr ""
+"İnternet Bağlantısı Bölüşdürülməsi qurulması artıq bitdi.\n"
+"VЙ™ artД±q fЙ™allaЕџdД±rД±lmД±ЕџdД±r.\n"
+"\n"
+"NЙ™ etmЙ™k istЙ™yirsiniz?"
-#: ../../standalone/drakgw_.c:290
-#, fuzzy
-msgid "Local Network adress"
-msgstr "ЕџЙ™bЙ™kЙ™ kartД± tapД±lmadД±"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing currently enabled"
+msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakhelp:1
+#, c-format
msgid ""
-"DHCP Server Configuration.\n"
-"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you don't know the meaning of an option, simply leave it as it is.\n"
-"\n"
+"No browser is installed on your system, Please install one if you want to "
+"browse the help system"
msgstr ""
-#: ../../standalone/drakgw_.c:300
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "CUPS verici IP"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "group :"
+msgstr "Д°Еџ qrupu"
-#: ../../standalone/drakgw_.c:301
-#, fuzzy
-msgid "The DNS Server IP"
-msgstr "CUPS verici IP"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "user :"
+msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakgw_.c:302
-#, fuzzy
-msgid "The internal domain name"
-msgstr "Г‡ap Edicisiz"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Path selection"
+msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakgw_.c:303
-msgid "The DHCP start range"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakgw_.c:304
-msgid "The DHCP end range"
-msgstr ""
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Use group id for execution"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../standalone/drakgw_.c:305
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Use owner id for execution"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakgw_.c:306
-msgid "The maximum lease (in seconds)"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakgw_.c:307
-msgid "Re-configure interface and DHCP server"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakgw_.c:314
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakgw_.c:325
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Property"
+msgstr "QapД±"
+
+#: ../../standalone/drakperm:1
#, 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"
+msgid "Path"
+msgstr ""
-#: ../../standalone/drakgw_.c:335
-msgid "Configuring..."
-msgstr "QuraЕџdД±rД±lД±r..."
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Permissions"
+msgstr "BuraxД±lД±Еџ: %s\n"
-#: ../../standalone/drakgw_.c:336
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "SkriptlЙ™ qurulur, proqram tЙ™'minatД± qurulur, xidmЙ™tlЙ™r baЕџladД±lД±r..."
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Current user"
+msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
-#: ../../standalone/drakgw_.c:372
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Problems installing package %s"
-msgstr "%s paketi qurulurkЙ™n xЙ™ta oldu"
+msgid "browse"
+msgstr ""
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "select perm file to see/edit"
+msgstr ""
+
+#: ../../standalone/drakperm:1
+#, c-format
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)."
+"Drakperm is used to see files to use in order to fix permissions, owners, "
+"and groups via msec.\n"
+"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-"HЙ™r Еџey quruldu.\n"
-"Д°ndi isЙ™ Д°nternet baДџlantД±nД±zД± yerli ЕџЙ™bЙ™kЙ™dЙ™kД± baЕџqa kompГјterlЙ™r ilЙ™ "
-"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
-"iЕџlЙ™dilir."
-#: ../../standalone/drakgw_.c:523
-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/drakperm:1
+#, c-format
+msgid "Edit current rule"
+msgstr ""
-#: ../../standalone/drakgw_.c:524
-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/drakperm:1
+#, c-format
+msgid "edit"
+msgstr ""
-#: ../../standalone/drakgw_.c:525
-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/drakperm:1
+#, fuzzy, c-format
+msgid "Delete selected rule"
+msgstr "Növbəni sil"
-#: ../../standalone/drakgw_.c:531
-msgid "Internet connection sharing configuration"
-msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "delete"
+msgstr "Sil"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Add a new rule at the end"
+msgstr "Г‡ap Edicisiz"
-#: ../../standalone/drakgw_.c:539
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "add a rule"
+msgstr "Modul Й™lavЙ™ et"
+
+#: ../../standalone/drakperm:1
#, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
+msgid "Move selected rule down one level"
msgstr ""
-"İnternet Bağlantısı Bölüşdürmə vasitəsinə Xoş Gəldiniz!\n"
-"\n"
-"%s\n"
-"\n"
-"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "group"
-msgstr "Д°Еџ qrupu"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Down"
+msgstr "QurtardД±"
-#: ../../standalone/drakperm_.c:36
-msgid "path"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Move selected rule up one level"
msgstr ""
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Up"
+msgstr ""
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
msgid "permissions"
msgstr "bölmə %s"
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "group"
+msgstr "Д°Еџ qrupu"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
msgid "user"
msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/drakperm_.c:43
-msgid "Up"
-msgstr ""
-
-#: ../../standalone/drakperm_.c:44
-#, fuzzy
-msgid "delete"
-msgstr "Sil"
-
-#: ../../standalone/drakperm_.c:45
-msgid "edit"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:46
-#, fuzzy
-msgid "Down"
-msgstr "QurtardД±"
-
-#: ../../standalone/drakperm_.c:47
-#, fuzzy
-msgid "add a rule"
-msgstr "Modul Й™lavЙ™ et"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Location of auto_install.cfg file"
+msgstr "Avtomatik qurulum disketi hazД±rlanД±r"
-#: ../../standalone/drakperm_.c:48
-msgid "select perm file to see/edit"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"Please indicate where the auto_install.cfg file is located.\n"
+"\n"
+"Leave it blank if you do not want to set up automatic installation mode.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakpxe:1
+#, c-format
msgid ""
-"Drakperm is used to see files to use in order to fix permissions, owners, "
-"and groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
+"No CD or DVD image found, please copy the installation program and rpm files."
msgstr ""
-#: ../../standalone/drakperm_.c:56
-#, fuzzy
-msgid "Add a new rule at the end"
-msgstr "Г‡ap Edicisiz"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "No image found"
+msgstr "Yerli Г‡ap Edici"
-#: ../../standalone/drakperm_.c:57
-msgid "Edit curent rule"
-msgstr ""
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation image directory"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakperm_.c:58
-msgid "Up selected rule one level"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"Please indicate where the installation image will be available.\n"
+"\n"
+"If you do not have an existing directory, please copy the CD or DVD "
+"contents.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:59
-msgid "Down selected rule one level"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "The DHCP end ip"
msgstr ""
-#: ../../standalone/drakperm_.c:60
-#, fuzzy
-msgid "Delete selected rule"
-msgstr "Növbəni sil"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "The DHCP start ip"
+msgstr ""
-#: ../../standalone/drakperm_.c:224
-msgid "browse"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"The DHCP server will allow other computer to boot using PXE in the given "
+"range of address.\n"
+"\n"
+"The network address is %s using a netmask of %s.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:231
-#, fuzzy
-msgid "Current user"
-msgstr "Д°stifadЙ™Г§ini qЙ™bul et"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Interface %s (on network %s)"
+msgstr "Ara Гњz %s (%s modulu iЕџlЙ™dilir)"
-#: ../../standalone/drakperm_.c:236
-#, fuzzy
-msgid "Permissions"
-msgstr "BuraxД±lД±Еџ: %s\n"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Please choose which network interface will be used for the dhcp server."
+msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
-#: ../../standalone/drakperm_.c:237
-msgid "Path"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid ""
+"You are about to configure your computer to install a PXE server as a DHCP "
+"server\n"
+"and a TFTP server to build an installation server.\n"
+"With that feature, other computers on your local network will be installable "
+"using from this computer.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Kompüterınızi İnternet bağlantısını bölüşdürmək üçün quraşdırırsınız.\n"
+"Bu seçənəklə yerli şəbəkənizdəki başqa kompüterlər sizin İnternet "
+"baДџlantД±nД±zdan faydalana bilЙ™cЙ™klЙ™r.\n"
+"\n"
+"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
+"ehtiyacД±nД±z var."
-#: ../../standalone/drakperm_.c:238
-#, fuzzy
-msgid "Property"
-msgstr "QapД±"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation Server Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakperm_.c:240
-msgid "sticky-bit"
-msgstr ""
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "PXE Server Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
-#: ../../standalone/drakperm_.c:241
-msgid "Set-UID"
-msgstr ""
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security options..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../standalone/drakperm_.c:242
-msgid "Set-GID"
-msgstr ""
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security level..."
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakperm_.c:296
-msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+#: ../../standalone/draksec:1
+#, c-format
+msgid "Periodic Checks"
msgstr ""
-#: ../../standalone/drakperm_.c:297
-#, fuzzy
-msgid "Use owner id for execution"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "System Options"
+msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakperm_.c:298
-#, fuzzy
-msgid "Use group id for execution"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Network Options"
+msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakperm_.c:299
-msgid "when checked, owner and group won't be changed"
+#: ../../standalone/draksec:1
+#, c-format
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""
-#: ../../standalone/drakperm_.c:304
-#, fuzzy
-msgid "Path selection"
-msgstr "Paket seçkilərini saxla"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Administrator:"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../standalone/drakperm_.c:350
-#, fuzzy
-msgid "user :"
-msgstr "Д°stifadЙ™Г§i adД±"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Alerts:"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../standalone/drakperm_.c:352
-#, fuzzy
-msgid "group :"
-msgstr "Д°Еџ qrupu"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "(default value: %s)"
+msgstr " (ЖЏsas)"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
-msgid "No Sound Card detected!"
-msgstr "BaДџlД± deyil"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Level:"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksec:1
+#, c-format
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can visit our hardware database at:\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../standalone/draksound_.c:54
+#: ../../standalone/draksound:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -12720,714 +16058,811 @@ msgid ""
"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:21
+#: ../../standalone/draksound:1
+#, c-format
msgid ""
-"package 'ImageMagick' is required for correct working.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:67
-#, fuzzy
-msgid "first step creation"
-msgstr "açılış disketi yaradılması"
+#: ../../standalone/draksound:1
+#, fuzzy, c-format
+msgid "No Sound Card detected!"
+msgstr "BaДџlД± deyil"
-#: ../../standalone/draksplash_.c:70
-#, fuzzy
-msgid "final resolution"
-msgstr "Rezolyusiya"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
-#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
-#, fuzzy
-msgid "choose image file"
-msgstr "Monitorunuzu seçin"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Generating preview ..."
+msgstr "AvadanlД±qlar tanД±nД±r..."
-#: ../../standalone/draksplash_.c:72
-#, fuzzy
-msgid "Theme name"
-msgstr "PaylaЕџdД±rma adД±"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "You must choose an image file first!"
+msgstr "Г‡ap Edici avadanlД±ДџД± URI"
-#: ../../standalone/draksplash_.c:77
-msgid "Browse"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "ProgressBar color selection"
+msgstr "Г‡ap Edici BaДџlantД±sД±"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "This theme does not yet have a bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
-#, fuzzy
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image file"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "XidmЙ™tlЙ™ri qur"
-#: ../../standalone/draksplash_.c:90
-msgid ""
-"x coordinate of text box\n"
-"in number of character"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:91
-msgid ""
-"y coordinate of text box\n"
-"in number of character"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:92
-msgid "text width"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Choose color"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Save theme"
+msgstr "Sistemi qur"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Preview"
+msgstr "avadanlД±q"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:93
-msgid "text box height"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the height of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:94
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the width of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:95
+#: ../../standalone/draksplash:1
+#, c-format
msgid ""
"the progress bar y coordinate\n"
"of its upper left corner"
msgstr ""
-#: ../../standalone/draksplash_.c:96
-msgid "the width of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:97
-msgid "the heigth of the progress bar"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/draksplash_.c:98
-msgid "the color of the progress bar"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "text box height"
msgstr ""
-#: ../../standalone/draksplash_.c:113
-#, fuzzy
-msgid "Preview"
-msgstr "avadanlД±q"
-
-#: ../../standalone/draksplash_.c:115
-#, fuzzy
-msgid "Save theme"
-msgstr "Sistemi qur"
-
-#: ../../standalone/draksplash_.c:116
-#, fuzzy
-msgid "Choose color"
-msgstr "Monitorunuzu seçin"
-
-#: ../../standalone/draksplash_.c:119
-msgid "Display logo on Console"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "text width"
msgstr ""
-#: ../../standalone/draksplash_.c:120
-msgid "Make kernel message quiet by default"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid ""
+"y coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
+#: ../../standalone/draksplash:1
#, c-format
-msgid "This theme haven't yet any bootsplash in %s !"
+msgid ""
+"x coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../standalone/draksplash_.c:205
-msgid "saving Bootsplash theme..."
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:428
-#, fuzzy
-msgid "ProgressBar color selection"
-msgstr "Г‡ap Edici BaДџlantД±sД±"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Theme name"
+msgstr "PaylaЕџdД±rma adД±"
-#: ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "You must choose an image file first!"
-msgstr "Г‡ap Edici avadanlД±ДџД± URI"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "final resolution"
+msgstr "Rezolyusiya"
-#: ../../standalone/draksplash_.c:458
-#, fuzzy
-msgid "Generating preview ..."
-msgstr "AvadanlД±qlar tanД±nД±r..."
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "first step creation"
+msgstr "açılış disketi yaradılması"
-#. -PO First %s is theme name, second %s (in parenthesis) is resolution
-#: ../../standalone/draksplash_.c:506
+#: ../../standalone/draksplash:1
#, c-format
-msgid "%s BootSplash (%s) preview"
+msgid ""
+"package 'ImageMagick' is required to be able to complete configuration.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/drakxtv_.c:46
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
-"XawTV isn't installed!\n"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\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"
+"You can visit our hardware database at:\n"
"\n"
"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:63
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "FransД±zca (Kanada/Quebec)"
-
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (cable)"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (cable-hrc)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "China (broadcast)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "Japan (broadcast)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "Japan (cable)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "East Europe"
-msgstr "Avropa"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "France [SECAM]"
-msgstr "FransД±zca"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Ireland"
-msgstr "Д°zlandiya dili"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "West Europe"
-msgstr "Avropa"
-
-#: ../../standalone/drakxtv_.c:66
-#, fuzzy
-msgid "Australia"
-msgstr "serial"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "There was an error while scanning for TV channels"
+msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
-#: ../../standalone/drakxtv_.c:66
-msgid "Newzealand"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:67
-msgid "South Africa"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:68
-msgid "Argentina"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Area:"
msgstr ""
-#: ../../standalone/drakxtv_.c:69
-msgid "Australian Optus cable TV"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "TV norm:"
msgstr ""
-#: ../../standalone/drakxtv_.c:102
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:104
-msgid "TV norm:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../standalone/drakxtv_.c:105
-msgid "Area:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:109
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "France [SECAM]"
+msgstr "FransД±zca"
-#: ../../standalone/drakxtv_.c:116
-msgid "Scanning for TV channels"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "East Europe"
+msgstr "Avropa"
+
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "West Europe"
+msgstr "Avropa"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
-#, fuzzy
-msgid "There was an error while scanning for TV channels"
-msgstr "PaketlЙ™r qurulurkЙ™n bir xЙ™ta oldu:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Japan (cable)"
+msgstr ""
-#: ../../standalone/drakxtv_.c:121
-msgid "XawTV isn't installed!"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:124
-msgid "Have a nice day!"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Canada (cable)"
+msgstr "FransД±zca (Kanada/Quebec)"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:125
-msgid "Now, you can run xawtv (under X Window!) !\n"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:147
-msgid "No TV Card detected!"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"XawTV isn't installed!\n"
"\n"
"\n"
-"You can visit our hardware database at:\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\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"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/harddrake2_.c:17
-#, fuzzy
-msgid "Alternative drivers"
-msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "/Options"
+msgstr "/Seçənəklər"
-#: ../../standalone/harddrake2_.c:18
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect jazz drives"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-#: ../../standalone/harddrake2_.c:20
-msgid "Bus"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect modems"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect printers"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "primary"
msgstr ""
-#: ../../standalone/harddrake2_.c:21
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "secondary"
+msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+"Click on a device in the left tree in order to display its information here."
msgstr ""
-#: ../../standalone/harddrake2_.c:22
-#, fuzzy
-msgid "Channel"
-msgstr "LЙ™Дџv et"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../standalone/harddrake2_.c:22
-msgid "EIDE/SCSI channel"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Run config tool"
msgstr ""
-#: ../../standalone/harddrake2_.c:23
-msgid "Bogomips"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Configure module"
+msgstr "Siçan qurğuları"
-#: ../../standalone/harddrake2_.c:23
-msgid ""
-"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
-"\t to initialize a timer counter. Its result is stored as bogomips as a way "
-"to \"benchmark\" the cpu."
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Information"
+msgstr "Mə'lumatı göstər"
-#: ../../standalone/harddrake2_.c:26
-#, fuzzy
-msgid "Bus identification"
-msgstr "TanД±tma"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Detected hardware"
+msgstr "AvadanlД±q mЙ™'lumatД±na bax"
-#: ../../standalone/harddrake2_.c:27
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Harddrake2 version "
+msgstr "Sabit disk seçkisi"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Detection in progress"
+msgstr "%s qapД±sД±nda tapД±ldД±"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
-"PCI/USB ids"
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../standalone/harddrake2_.c:29
-msgid "Location on the bus"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
+
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_Help"
+msgstr "/_Kömək"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "/_Report Bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:30
+#: ../../standalone/harddrake2:1
+#, c-format
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"
+"Once you've selected a device, you'll be able to see the device information "
+"in fields displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/harddrake2_.c:33
-#, fuzzy
-msgid "Cache size"
-msgstr "parça böyüklüyü"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Select a device !"
+msgstr "Ekran kartınızı seçin"
-#: ../../standalone/harddrake2_.c:33
-msgid "Size of the (second level) cpu cache"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2_.c:34
-msgid "Coma bug:"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Harddrake help"
msgstr ""
-#: ../../standalone/harddrake2_.c:34
-msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Fields description"
+msgstr "Д°zah"
-#: ../../standalone/harddrake2_.c:35
-msgid "Cpuid family"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _jazz drives"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_Options"
+msgstr "/_Seçənəklər"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _modems"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _printers"
+msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Quit"
+msgstr "Г‡Д±x"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../standalone/harddrake2_.c:35
-msgid "Family of the cpu (eg: 6 for i686 class)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the vendor name of the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:36
-#, fuzzy
-msgid "Cpuid level"
-msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "The type of bus on which the mouse is connected"
+msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../standalone/harddrake2_.c:36
-msgid "Information level that can be obtained through the cpuid instruction"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../standalone/harddrake2_.c:37
-msgid "Frequency (MHz)"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model stepping"
+msgstr "ЕћЙ™killЙ™ndirilir"
-#: ../../standalone/harddrake2_.c:37
-msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the number of the processor"
msgstr ""
-#: ../../standalone/harddrake2_.c:38
-msgid "This field describes the device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Processor ID"
msgstr ""
-#: ../../standalone/harddrake2_.c:39
-#, fuzzy
-msgid "Old device file"
-msgstr "Fayl seç"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "network printer port"
+msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
-#: ../../standalone/harddrake2_.c:40
-msgid "old static device name used in dev package"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Name"
+msgstr "Ad: "
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Number of buttons"
+msgstr "2 dГјymЙ™li"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../standalone/harddrake2_.c:41
-#, fuzzy
-msgid "New devfs device"
-msgstr "Keçit avadanlığı"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model name"
+msgstr "Modul adД±"
-#: ../../standalone/harddrake2_.c:42
-msgid "new dinamic device name generated by incore kernel devfs"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../standalone/harddrake2_.c:43
-#, fuzzy
-msgid "Module"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model"
msgstr "Siçan"
-#: ../../standalone/harddrake2_.c:43
-msgid "the module of the GNU/Linux kernel that handle that device"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "hard disk model"
+msgstr "Kart mem (DMA)"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "class of hardware device"
msgstr ""
-#: ../../standalone/harddrake2_.c:44
-msgid "CPU flags reported by the kernel"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Media class"
msgstr ""
-#: ../../standalone/harddrake2_.c:44
-msgid "Flags"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../standalone/harddrake2_.c:45
-msgid "Fdiv bug"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Level"
+msgstr "sЙ™viyyЙ™"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Format of floppies the drive accept"
msgstr ""
-#: ../../standalone/harddrake2_.c:46
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Floppy format"
+msgstr "ЕћЙ™killЙ™ndir"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the attended precision when performing a "
-"Floating point DIVision (FDIV)"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../standalone/harddrake2_.c:49
-msgid "Is FPU present"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Halt bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:49
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../standalone/harddrake2_.c:50
-msgid "Does FPU have an irq vector"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "F00f bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:50
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../standalone/harddrake2_.c:51
-msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether the FPU has an irq vector"
msgstr ""
-#: ../../standalone/harddrake2_.c:51
-msgid "F00f bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/harddrake2_.c:52
-msgid "Halt bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Is FPU present"
msgstr ""
-#: ../../standalone/harddrake2_.c:53
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the required precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../standalone/harddrake2_.c:55
-#, fuzzy
-msgid "Floppy format"
-msgstr "ЕћЙ™killЙ™ndir"
-
-#: ../../standalone/harddrake2_.c:55
-msgid "Format of floppies the drive accept"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Fdiv bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:56
-#, fuzzy
-msgid "Level"
-msgstr "sЙ™viyyЙ™"
-
-#: ../../standalone/harddrake2_.c:56
-msgid "Sub generation of the cpu"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../standalone/harddrake2_.c:57
-msgid "Media class"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Flags"
msgstr ""
-#: ../../standalone/harddrake2_.c:57
-msgid "class of hardware device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
-#, fuzzy
-msgid "Model"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Module"
msgstr "Siçan"
-#: ../../standalone/harddrake2_.c:58
-#, fuzzy
-msgid "hard disk model"
-msgstr "Kart mem (DMA)"
-
-#: ../../standalone/harddrake2_.c:59
-msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
-#: ../../standalone/harddrake2_.c:60
-#, fuzzy
-msgid "Model name"
-msgstr "Modul adД±"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "New devfs device"
+msgstr "Keçit avadanlığı"
-#: ../../standalone/harddrake2_.c:60
-msgid "Official vendor name of the cpu"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../standalone/harddrake2_.c:61
-#, fuzzy
-msgid "Number of buttons"
-msgstr "2 dГјymЙ™li"
-
-#: ../../standalone/harddrake2_.c:62
-#, fuzzy
-msgid "Name"
-msgstr "Ad: "
-
-#: ../../standalone/harddrake2_.c:63
-#, fuzzy
-msgid "network printer port"
-msgstr "ЕћЙ™bЙ™kЙ™ Г‡ap Edicisi (soket) "
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Old device file"
+msgstr "Fayl seç"
-#: ../../standalone/harddrake2_.c:64
-msgid "Processor ID"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "This field describes the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:64
-msgid "the number of the processor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../../standalone/harddrake2_.c:65
-#, fuzzy
-msgid "Model stepping"
-msgstr "ЕћЙ™killЙ™ndirilir"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../standalone/harddrake2_.c:65
-msgid "Stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../standalone/harddrake2_.c:66
-#, fuzzy
-msgid "The type of bus on which the mouse is connected"
-msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cpuid level"
+msgstr "TЙ™hlГјkЙ™sizlik sЙ™viyyЙ™sinin quraЕџdД±rД±lmasД±"
-#: ../../standalone/harddrake2_.c:67
-msgid "the vendor name of the device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../standalone/harddrake2_.c:68
-msgid "the vendor name of the processor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Cpuid family"
msgstr ""
-#: ../../standalone/harddrake2_.c:82
-#, fuzzy
-msgid "/_Quit"
-msgstr "Г‡Д±x"
-
-#: ../../standalone/harddrake2_.c:83
-#, fuzzy
-msgid "/Autodetect _printers"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-
-#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
-#: ../../standalone/logdrake_.c:81
-msgid "/_Options"
-msgstr "/_Seçənəklər"
-
-#: ../../standalone/harddrake2_.c:85
-#, fuzzy
-msgid "/Autodetect _modems"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
-
-#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
-#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
-#: ../../standalone/logdrake_.c:83
-msgid "/_Help"
-msgstr "/_Kömək"
-
-#: ../../standalone/harddrake2_.c:89
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Kömək"
-
-#: ../../standalone/harddrake2_.c:92
-msgid "Harddrake help"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:93
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Coma bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:96
-msgid ""
-"Once you've selected a device, you'll be able to see explanations on fields "
-"displayed on the right frame (\"Information\")"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../standalone/harddrake2_.c:96
-#, fuzzy
-msgid "Select a device !"
-msgstr "Ekran kartınızı seçin"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cache size"
+msgstr "parça böyüklüyü"
-#: ../../standalone/harddrake2_.c:100
-msgid "/_Report Bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+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 ""
-#: ../../standalone/harddrake2_.c:102
-#, fuzzy
-msgid "/_About..."
-msgstr "/Kömək/_Haqqında..."
-
-#: ../../standalone/harddrake2_.c:104
-msgid "About Harddrake"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Location on the bus"
msgstr ""
-#: ../../standalone/harddrake2_.c:105
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"- PCI and USB devices: this lists the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
msgstr ""
-#: ../../standalone/harddrake2_.c:106
-#, fuzzy
-msgid "Author:"
-msgstr "Avtomatik yoxla"
-
-#: ../../standalone/harddrake2_.c:113
-#, fuzzy
-msgid "Detection in progress"
-msgstr "%s qapД±sД±nda tapД±ldД±"
-
-#: ../../standalone/harddrake2_.c:119
-#, fuzzy
-msgid "Harddrake2 version "
-msgstr "Sabit disk seçkisi"
-
-#: ../../standalone/harddrake2_.c:126
-#, fuzzy
-msgid "Detected hardware"
-msgstr "AvadanlД±q mЙ™'lumatД±na bax"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Bus identification"
+msgstr "TanД±tma"
-#: ../../standalone/harddrake2_.c:129
-#, fuzzy
-msgid "Information"
-msgstr "Mə'lumatı göstər"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"The GNU/Linux kernel needs to run a calculation loop at boot time to "
+"initialize a timer counter. Its result is stored as bogomips as a way to "
+"\"benchmark\" the cpu."
+msgstr ""
-#: ../../standalone/harddrake2_.c:131
-#, fuzzy
-msgid "Configure module"
-msgstr "Siçan qurğuları"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Bogomips"
+msgstr ""
-#: ../../standalone/harddrake2_.c:137
-msgid "Run config tool"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../standalone/harddrake2_.c:143
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+msgid "Channel"
+msgstr "LЙ™Дџv et"
-#: ../../standalone/harddrake2_.c:159
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Click on a device in the left tree in order to get its information displayed "
-"here."
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../standalone/harddrake2_.c:231
-msgid "primary"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Bus"
msgstr ""
-#: ../../standalone/harddrake2_.c:231
-#, fuzzy
-msgid "secondary"
-msgstr "%d saniyЙ™ sonra Г§Д±xД±lacaq"
-
-#: ../../standalone/harddrake2_.c:260
-#, fuzzy
-msgid "/Autodetect modems"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
-#: ../../standalone/harddrake2_.c:260
-#, fuzzy
-msgid "/Autodetect printers"
-msgstr "Avtomatik tЙ™sbit iЕџlЙ™t"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Alternative drivers"
+msgstr "SД±naq sЙ™hifЙ™si Г§ap edilir..."
-#: ../../standalone/harddrake2_.c:261
-#, fuzzy
-msgid "/Options"
-msgstr "/_Seçənəklər"
+#: ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Konsolda BackSpace'in Silmə funksyasını görməyini istəyirmisiniz?"
-#: ../../standalone/keyboarddrake_.c:26
+#: ../../standalone/keyboarddrake:1
+#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/keyboarddrake_.c:35
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Konsolda BackSpace'in Silmə funksyasını görməyini istəyirmisiniz?"
-
-#: ../../standalone/livedrake_.c:18
-msgid "Change Cd-Rom"
-msgstr "Cd-Romu dЙ™yiЕџdir"
+#: ../../standalone/livedrake:1
+#, c-format
+msgid "Unable to start live upgrade !!!\n"
+msgstr "TЙ™kmillЙ™ЕџdirmЙ™ iЕџi baЕџlaya bilmir !!!\n"
-#: ../../standalone/livedrake_.c:19
+#: ../../standalone/livedrake:1
+#, c-format
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."
@@ -13435,871 +16870,857 @@ msgstr ""
"Qurma Cd-Romunu sГјrГјcГјnГјzЙ™ taxД±n vЙ™ OLDUya basД±n.\n"
"Əgər Cd-Rom əlinizdə yox isə, bu Cd-Rom-dan qurmamaq üçün RƏDD ETə basın."
-#: ../../standalone/livedrake_.c:29
-msgid "Unable to start live upgrade !!!\n"
-msgstr "TЙ™kmillЙ™ЕџdirmЙ™ iЕџi baЕџlaya bilmir !!!\n"
+#: ../../standalone/livedrake:1
+#, c-format
+msgid "Change Cd-Rom"
+msgstr "Cd-Romu dЙ™yiЕџdir"
-#: ../../standalone/localedrake_.c:34
+#: ../../standalone/localedrake:1
+#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
-msgid "logdrake"
-msgstr "logdrake"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Save as.."
+msgstr "FЙ™rqli qeyd et..."
-#: ../../standalone/logdrake_.c:68
-#, fuzzy
-msgid "Show only for the selected day"
-msgstr "Təkcə bu gününkünü göstər"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Please enter your email address below "
+msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
-#: ../../standalone/logdrake_.c:75
-msgid "/File/_New"
-msgstr "/Fayl/_TЙ™ze"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "alert configuration"
+msgstr "QuraЕџdД±rma"
-#: ../../standalone/logdrake_.c:75
-msgid "<control>N"
-msgstr "<control>N"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "You will receive an alert if the load is higher than this value"
+msgstr ""
-#: ../../standalone/logdrake_.c:76
-msgid "/File/_Open"
-msgstr "/Fayl/_Aç"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "load setting"
+msgstr "ЕћЙ™killЙ™ndirilir"
-#: ../../standalone/logdrake_.c:76
-msgid "<control>O"
-msgstr "<control>O"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"You will receive an alert if one of the selected services is no longer "
+"running"
+msgstr ""
-#: ../../standalone/logdrake_.c:77
-msgid "/File/_Save"
-msgstr "/Fayl/_Qeyd Et"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "service setting"
+msgstr "avadanlД±q"
-#: ../../standalone/logdrake_.c:77
-msgid "<control>S"
-msgstr "<control>S"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Xinetd Service"
+msgstr "Г‡ap Edici Vericisi"
-#: ../../standalone/logdrake_.c:78
-msgid "/File/Save _As"
-msgstr "/Fayl/_FЙ™rqli Qeyd Et"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Webmin Service"
+msgstr "avadanlД±q"
-#: ../../standalone/logdrake_.c:79
-msgid "/File/-"
-msgstr "/Fayl/-"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:82
-msgid "/Options/Test"
-msgstr "/Seçənəklər/Sınaq"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Samba Server"
+msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:84
-msgid "/Help/_About..."
-msgstr "/Kömək/_Haqqında..."
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Postfix Mail Server"
+msgstr "Postfix mЙ™ktub vericisi, Inn xЙ™bЙ™r vericisi"
-#: ../../standalone/logdrake_.c:145
-#, fuzzy
-msgid "User"
-msgstr "Д°stifadЙ™Г§i adД±"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Ftp Server"
+msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:146
-#, fuzzy
-msgid "Messages"
-msgstr "ismarД±clar"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Domain Name Resolver"
+msgstr "SahЙ™(domain) adД±"
-#: ../../standalone/logdrake_.c:147
-#, fuzzy
-msgid "Syslog"
-msgstr "sistem qeydi"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Apache World Wide Web Server"
+msgstr ""
-#: ../../standalone/logdrake_.c:148
-msgid "Mandrake Tools Explanations"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:151
-msgid "search"
-msgstr "axtar"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Mail alert configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/logdrake_.c:161
-msgid "A tool to monitor your logs"
-msgstr "QeydlЙ™rinizЙ™ baxan vasitЙ™"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Mail alert"
+msgstr ""
-#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
-msgid "Settings"
-msgstr "QurДџular"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "please wait, parsing file: %s"
+msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:167
-msgid "matching"
-msgstr "oxЕџayД±r"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Content of the file"
+msgstr "Fayl mЙ™zmunu"
-#: ../../standalone/logdrake_.c:168
-msgid "but not matching"
-msgstr "amma oxЕџamД±r"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Calendar"
+msgstr "TЙ™qvim"
-#: ../../standalone/logdrake_.c:172
+#: ../../standalone/logdrake:1
+#, c-format
msgid "Choose file"
msgstr "Fayl seç"
-#: ../../standalone/logdrake_.c:181
-msgid "Calendar"
-msgstr "TЙ™qvim"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "but not matching"
+msgstr "amma oxЕџamД±r"
-#: ../../standalone/logdrake_.c:191
-msgid "Content of the file"
-msgstr "Fayl mЙ™zmunu"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "matching"
+msgstr "oxЕџayД±r"
-#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
-msgid "Mail alert"
-msgstr ""
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Settings"
+msgstr "QurДџular"
-#: ../../standalone/logdrake_.c:245
+#: ../../standalone/logdrake:1
#, c-format
-msgid "please wait, parsing file: %s"
-msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
+msgid "A tool to monitor your logs"
+msgstr "QeydlЙ™rinizЙ™ baxan vasitЙ™"
-#: ../../standalone/logdrake_.c:392
-#, fuzzy
-msgid "Mail alert configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "search"
+msgstr "axtar"
-#: ../../standalone/logdrake_.c:393
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Mandrake Tools Explanation"
msgstr ""
-#: ../../standalone/logdrake_.c:400
-msgid "Apache World Wide Web Server"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Syslog"
+msgstr "sistem qeydi"
-#: ../../standalone/logdrake_.c:401
-#, fuzzy
-msgid "Domain Name Resolver"
-msgstr "SahЙ™(domain) adД±"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Messages"
+msgstr "ismarД±clar"
-#: ../../standalone/logdrake_.c:402
-#, fuzzy
-msgid "Ftp Server"
-msgstr "NIS Verici"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "User"
+msgstr "Д°stifadЙ™Г§i adД±"
-#: ../../standalone/logdrake_.c:403
-#, fuzzy
-msgid "Postfix Mail Server"
-msgstr "Postfix mЙ™ktub vericisi, Inn xЙ™bЙ™r vericisi"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/Help/_About..."
+msgstr "/Kömək/_Haqqında..."
-#: ../../standalone/logdrake_.c:404
-#, fuzzy
-msgid "Samba Server"
-msgstr "NIS Verici"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/Options/Test"
+msgstr "/Seçənəklər/Sınaq"
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "SSH Server"
-msgstr "NIS Verici"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/-"
+msgstr "/Fayl/-"
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid "Webmin Service"
-msgstr "avadanlД±q"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/Save _As"
+msgstr "/Fayl/_FЙ™rqli Qeyd Et"
-#: ../../standalone/logdrake_.c:407
-#, fuzzy
-msgid "Xinetd Service"
-msgstr "Г‡ap Edici Vericisi"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>S"
+msgstr "<control>S"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "service setting"
-msgstr "avadanlД±q"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Save"
+msgstr "/Fayl/_Qeyd Et"
-#: ../../standalone/logdrake_.c:415
-msgid ""
-"You will receive an alert if one of the selected services is no more running"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>O"
+msgstr "<control>O"
-#: ../../standalone/logdrake_.c:428
-#, fuzzy
-msgid "load setting"
-msgstr "ЕћЙ™killЙ™ndirilir"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Open"
+msgstr "/Fayl/_Aç"
-#: ../../standalone/logdrake_.c:429
-msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>N"
+msgstr "<control>N"
-#: ../../standalone/logdrake_.c:444
-#, fuzzy
-msgid "alert configuration"
-msgstr "QuraЕџdД±rma"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_New"
+msgstr "/Fayl/_TЙ™ze"
-#: ../../standalone/logdrake_.c:445
-#, fuzzy
-msgid "Please enter your email address below "
-msgstr "XahiЕџ edirik tЙ™krar sД±nayД±n"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Show only for the selected day"
+msgstr "Təkcə bu gününkünü göstər"
-#: ../../standalone/logdrake_.c:486
-msgid "Save as.."
-msgstr "FЙ™rqli qeyd et..."
+#: ../../standalone/mousedrake:1
+#, c-format
+msgid "Emulate third button?"
+msgstr "3 dГјymЙ™ emulasiyasД±"
-#: ../../standalone/mousedrake_.c:37
-msgid "Please, choose the type of your mouse."
+#: ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose your mouse type."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/mousedrake_.c:50
-msgid "Emulate third button?"
-msgstr "3 dГјymЙ™ emulasiyasД±"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "BaДџlan"
-#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
-#, fuzzy
-msgid "Network Monitoring"
-msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "BaДџlantД±nД± kЙ™s"
-#: ../../standalone/net_monitor_.c:96
-#, fuzzy
-msgid "Profile "
-msgstr "Profil: "
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid ""
+"Warning, another internet connection has been detected, maybe using your "
+"network"
+msgstr ""
-#: ../../standalone/net_monitor_.c:99
-msgid "Statistics"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "received"
msgstr ""
-#: ../../standalone/net_monitor_.c:103
-#, fuzzy
-msgid "Sending Speed:"
-msgstr "Fayla qeyd et"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "transmitted"
+msgstr ""
-#: ../../standalone/net_monitor_.c:104
-msgid "Receiving Speed:"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "received: "
msgstr ""
-#: ../../standalone/net_monitor_.c:106
-#, fuzzy
-msgid "Connection Time: "
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "sent: "
+msgstr ""
+
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Local measure"
+msgstr "Yerli Г‡ap Edici"
+
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "average"
+msgstr ""
+
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Color configuration"
+msgstr "QuraЕџdД±rma"
+
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
+
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection complete."
msgstr "Bağlantı növü:"
-#: ../../standalone/net_monitor_.c:113
-msgid "Logs"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Disconnection from the Internet complete."
msgstr ""
-#: ../../standalone/net_monitor_.c:147
-#, fuzzy
-msgid "Wait please, testing your connection..."
-msgstr "BaДџlantД±nД±z sД±nanД±r..."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Disconnection from the Internet failed."
+msgstr ""
-#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
-#, fuzzy
-msgid "Connecting to Internet "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connecting to the Internet "
msgstr "Д°nternetЙ™ baДџlan"
-#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
-#, fuzzy
-msgid "Disconnecting from Internet "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnecting from the Internet "
msgstr "Д°nternetЙ™ baДџlan"
-#: ../../standalone/net_monitor_.c:222
-msgid "Disconnection from Internet failed."
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Wait please, testing your connection..."
+msgstr "BaДџlantД±nД±z sД±nanД±r..."
-#: ../../standalone/net_monitor_.c:223
-msgid "Disconnection from Internet complete."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Logs"
msgstr ""
-#: ../../standalone/net_monitor_.c:225
-#, fuzzy
-msgid "Connection complete."
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection Time: "
msgstr "Bağlantı növü:"
-#: ../../standalone/net_monitor_.c:226
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Receiving Speed:"
msgstr ""
-#: ../../standalone/net_monitor_.c:330
-#, fuzzy
-msgid "Color configuration"
-msgstr "QuraЕџdД±rma"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Sending Speed:"
+msgstr "Fayla qeyd et"
-#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
-msgid "sent: "
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Statistics"
msgstr ""
-#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
-msgid "received: "
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Profile "
+msgstr "Profil: "
-#: ../../standalone/net_monitor_.c:397
-msgid "average"
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Network Monitoring"
+msgstr "ЕћЙ™bЙ™kЙ™ quraЕџdД±rД±lmasД±"
-#: ../../standalone/net_monitor_.c:400
-#, fuzzy
-msgid "Local measure"
-msgstr "Yerli Г‡ap Edici"
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Reading printer data ..."
+msgstr "CUPS sГјrГјcГј datasД± oxunur..."
-#: ../../standalone/net_monitor_.c:432
-msgid "transmitted"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Name/IP address of host:"
msgstr ""
-#: ../../standalone/net_monitor_.c:433
-msgid "received"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "This host is already in the list, it cannot be added again.\n"
msgstr ""
-#: ../../standalone/net_monitor_.c:453
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scannerdrake"
+msgstr "Ekran kartınızı seçin"
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "You must enter a host name or an IP address.\n"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Choose the host on which the local scanners should be made available:"
msgstr ""
-#: ../../standalone/net_monitor_.c:459
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "BaДџlan"
+msgid "Sharing of local scanners"
+msgstr "Yerli Г‡ap Edici"
-#: ../../standalone/net_monitor_.c:459
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "BaДџlantД±nД± kЙ™s"
+msgid "This machine"
+msgstr "oxЕџayД±r"
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "CUPS sГјrГјcГј datasД± oxunur..."
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Remove selected host"
+msgstr "Növbəni sil"
-#: ../../standalone/scannerdrake_.c:39
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "AvadanlД±qlar tanД±nД±r..."
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Edit selected host"
+msgstr "%s tapД±ldД±"
-#: ../../standalone/scannerdrake_.c:39
-msgid "Test ports"
-msgstr "QapД±larД± sД±na"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Add host"
+msgstr "Д°stifadЙ™Г§ini Й™lavЙ™ et"
-#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+msgid "These are the machines from which the scanners should be used:"
msgstr ""
-#: ../../standalone/scannerdrake_.c:54
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "%s found on %s, configure it?"
-msgstr "Bir Г§ap edici qurmaq istЙ™yirsiniz?"
+msgid "Usage of remote scanners"
+msgstr "BoЕџ sahЙ™ni istifadЙ™ et"
+
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "All remote machines"
+msgstr "Uzaq Г‡ap Edici"
-#: ../../standalone/scannerdrake_.c:57
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+msgid ""
+"These are the machines on which the locally connected scanner(s) should be "
+"available:"
msgstr ""
-#: ../../standalone/scannerdrake_.c:63
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Ekran kartınızı seçin"
-
-#: ../../standalone/scannerdrake_.c:91
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "This %s scanner is unsupported"
+msgid "Use the scanners on hosts: "
msgstr ""
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
+msgid "Use scanners on remote computers"
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
-#, fuzzy
-msgid "choose device"
-msgstr "Açılış avadanlığı"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing to hosts: "
+msgstr "Г‡ap Edici"
-#: ../../standalone/scannerdrake_.c:113
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+msgid "The scanners on this machine are available to other computers"
msgstr ""
-#: ../../standalone/scannerdrake_.c:118
+#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
-"applications menu."
+"You can also decide here whether scanners on remote machines should be made "
+"available on this machine."
msgstr ""
-#: ../../standalone/service_harddrake_.c:44
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgid ""
+"Here you can choose whether the scanners connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../standalone/service_harddrake_.c:48
-msgid "Some devices were added:\n"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"Your %s has been configured.\n"
+"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
+"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:64
-#, fuzzy
-msgid "Hardware probing in progress"
-msgstr "%s qapД±sД±nda tapД±ldД±"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid ""
+"The %s must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
+msgstr ""
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "İşlətdiyiniz dili seçin"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "choose device"
+msgstr "Açılış avadanlığı"
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Quruluş sinifini seçin"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Please select the device where your %s is attached"
+msgstr ""
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Sabit disk seçkisi"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is unsupported"
+msgstr ""
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Siçan qurğuları"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is not known by this version of Scannerdrake."
+msgstr ""
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Klaviaturanızı seçin"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
-#: ../../steps.pm_.c:19
-msgid "Security"
-msgstr "TЙ™hlГјkЙ™sizlik"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Re-generating list of configured scanners ..."
+msgstr ""
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Fayl sistemi qurДџularД±"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for new scanners ..."
+msgstr "Yerli Г‡ap Edici"
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Bölmə şəkilləndirilməsi"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for configured scanners ..."
+msgstr "Yerli Г‡ap Edici"
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Qurulacaq paketləri seçin"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing"
+msgstr "Г‡ap Edici"
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Sistemi qur"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Add a scanner manually"
+msgstr ""
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Д°stifadЙ™Г§i Й™lavЙ™ et"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Search for new scanners"
+msgstr "Yerli Г‡ap Edici"
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "ЕћЙ™bЙ™kЙ™ni qur"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "There are no scanners found which are available on your system.\n"
+msgstr ""
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "XidmЙ™tlЙ™ri qur"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid ""
+"The following scanner\n"
+"\n"
+"%s\n"
+"is available on your system.\n"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Sistem yГјklЙ™yicini qur"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid ""
+"The following scanners\n"
+"\n"
+"%s\n"
+"are available on your system.\n"
+msgstr "SiseminizdЙ™ ЕџЙ™bЙ™kЙ™ adapteri yoxdur!"
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Açılış disketi yarat"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Select a scanner"
+msgstr "Ekran kartınızı seçin"
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "X qur"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Sistemi qur"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "%s found on %s, configure it automatically?"
+msgstr "Bir Г§ap edici qurmaq istЙ™yirsiniz?"
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Qurulumdan Г§Д±x"
+#: ../../standalone/service_harddrake:1
+#, fuzzy, c-format
+msgid "Hardware probing in progress"
+msgstr "%s qapД±sД±nda tapД±ldД±"
-#: ../../ugtk.pm_.c:636
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../ugtk2.pm_.c:711
-msgid "utopia 25"
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Web/FTP"
-msgstr "Verici, Veb/FTP"
-
-#: ../../share/compssUsers:999
-msgid "Network Computer (client)"
-msgstr "ЕћЙ™bЙ™kЙ™ KompГјteri (alД±cД±)"
+msgid "Office Workstation"
+msgstr "Д°Еџ Yeri StansiyasД±"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "NFS vericisi, SMB vericisi, SSH vericisi, VЙ™kil Verici"
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Д°darЙ™ proqramlarД±: kЙ™lmЙ™ iЕџlЙ™yЙ™nlЙ™r (kword, abiword), hesablayД±cД±lar vЙ™ pdf "
+"göstəriciləri, vs."
#: ../../share/compssUsers:999
-msgid "Office"
-msgstr "Д°Еџ Yeri"
+msgid "Workstation"
+msgstr "Masa ГјstГј"
#: ../../share/compssUsers:999
-msgid "Gnome Workstation"
-msgstr "Gnome iЕџ stansiyasД±"
+msgid "Game station"
+msgstr "Oyun stansiyasД±"
#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Palm Pilot və ya Visorunuz üçün vasitələr"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
#: ../../share/compssUsers:999
-msgid "Workstation"
-msgstr "Masa ГјstГј"
+msgid "Multimedia station"
+msgstr "Multimedya stansiyasД±"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr "Verici, Firewall/Ruter"
+msgid "Sound and video playing/editing programs"
+msgstr "SЙ™s vЙ™ video Г§alД±nmasД±/dГјzЙ™liЕџ proqramlarД±"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr "Domeyn Ad bЙ™ ЕћЙ™bЙ™kЙ™ MЙ™'lumat Vericisi"
+msgid "Internet station"
+msgstr "Д°nternet stansiyasД±"
#: ../../share/compssUsers:999
msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
msgstr ""
-"Д°darЙ™ proqramlarД±: kЙ™lmЙ™ iЕџlЙ™yЙ™nlЙ™r (kword, abiword), hesablayД±cД±lar vЙ™ pdf "
-"göstəriciləri, vs."
+"Elektronik mЙ™ktub vЙ™ xЙ™bЙ™r oxuyucusu (pine, mutt, tin..) vЙ™ Web sЙ™yyahlarД±"
#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
-"SЙ™s ilЙ™ Й™laqЙ™dЙ™r vasitЙ™lЙ™r: mp3 vЙ™ ya midi Г§alДџД±Г§Д±lar, qarД±ЕџdД±rД±Г§Д±lar, vs."
+msgid "Network Computer (client)"
+msgstr "ЕћЙ™bЙ™kЙ™ KompГјteri (alД±cД±)"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgid "Clients for different protocols including ssh"
+msgstr "SSH daxil bir Г§ox protokollarД±n alД±cД±larД±"
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linuks vЙ™ pulsuz proqram tЙ™'minatД±larД± Kitablar vЙ™ HowtolarД±"
+#, fuzzy
+msgid "Configuration"
+msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
#: ../../share/compssUsers:999
-msgid "KDE Workstation"
-msgstr "KDE iЕџ stansiyasД±"
+msgid "Tools to ease the configuration of your computer"
+msgstr "KompГјter qurДџularД±nД± asandlaЕџdД±ran vasitЙ™lЙ™r"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
+msgid "Scientific Workstation"
+msgstr "Elmi iЕџ stansiyasД±"
#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Multimedya - Video"
+msgid "Console Tools"
+msgstr "Konsol VasitЙ™lЙ™ri"
#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "MЙ™ktub, xЙ™bЙ™rlЙ™r, fayl daЕџД±nmasД±, chat vasitЙ™lЙ™ri"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorlar, rЙ™flЙ™r, fayl vasitЙ™lЙ™ri, terminallar"
#: ../../share/compssUsers:999
-msgid "Database"
-msgstr "Databeyz"
+msgid "KDE Workstation"
+msgstr "KDE iЕџ stansiyasД±"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
-msgstr "PostgreSQL vЙ™ ya MySQL databeyz vericisi"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
#: ../../share/compssUsers:999
-msgid "Tools to ease the configuration of your computer"
-msgstr "KompГјter qurДџularД±nД± asandlaЕџdД±ran vasitЙ™lЙ™r"
+msgid "Graphical Environment"
+msgstr "Qrafiki Ara Гњz"
#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Multimedya - SЙ™s"
+msgid "Gnome Workstation"
+msgstr "Gnome iЕџ stansiyasД±"
#: ../../share/compssUsers:999
-msgid "Documentation"
-msgstr "SЙ™nЙ™dlЙ™r"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Д°stifadЙ™Г§i dostu proqram vЙ™ masa ГјstГј ilЙ™ bЙ™rabЙ™r qrafiki ara Гјz vasitЙ™lЙ™ri"
#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Konsol VasitЙ™lЙ™ri"
+msgid "Other Graphical Desktops"
+msgstr "BaЕџqa qrafiki ara ГјzlЙ™r"
#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
-msgstr "Postfix mЙ™ktub vericisi, Inn xЙ™bЙ™r vericisi"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
#: ../../share/compssUsers:999
-msgid "Internet station"
-msgstr "Д°nternet stansiyasД±"
+msgid "Development"
+msgstr "TЙ™crГјbi"
#: ../../share/compssUsers:999
-msgid "Multimedia station"
-msgstr "Multimedya stansiyasД±"
+msgid "C and C++ development libraries, programs and include files"
+msgstr "C vЙ™ C++ inkiЕџaf kitabxanalarД±, proqramlarД± vЙ™ daxil edilЙ™cЙ™k fayllar"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Configuration"
-msgstr "Yerli ЕћЙ™bЙ™kЙ™ QuraЕџdД±rД±lmasД±"
+msgid "Documentation"
+msgstr "SЙ™nЙ™dlЙ™r"
#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "BaЕџqa qrafiki ara ГјzlЙ™r (Gnome, IceWM)"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linuks vЙ™ pulsuz proqram tЙ™'minatД±larД± Kitablar vЙ™ HowtolarД±"
#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
+msgid "LSB"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Graphical Environment"
-msgstr "Qrafiki Ara Гњz"
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Development"
-msgstr "TЙ™crГјbi"
+msgid "Web/FTP"
+msgstr "Verici, Veb/FTP"
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache vЙ™ Pro-ftpd"
#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "CD yazmaq vЙ™ yandД±rmaq proqramlarД±"
+msgid "Mail/Groupware/News"
+msgstr "Verici, ePoçt/Groupware/Xəbərlər"
#: ../../share/compssUsers:999
-msgid "Office Workstation"
-msgstr "Д°Еџ Yeri StansiyasД±"
+msgid "Postfix mail server, Inn news server"
+msgstr "Postfix mЙ™ktub vericisi, Inn xЙ™bЙ™r vericisi"
#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
+msgid "Database"
+msgstr "Databeyz"
#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Qrafika proqramlarД±, mЙ™sЙ™lЙ™n The Gimp"
+msgid "PostgreSQL or MySQL database server"
+msgstr "PostgreSQL vЙ™ ya MySQL databeyz vericisi"
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Verici, Firewall/Ruter"
+
+#: ../../share/compssUsers:999
+msgid "Internet gateway"
+msgstr "İnternet keçişı"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS "
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "C vЙ™ C++ inkiЕџaf kitabxanalarД±, proqramlarД± vЙ™ daxil edilЙ™cЙ™k fayllar"
+msgid "Domain Name and Network Information Server"
+msgstr "Domeyn Ad bЙ™ ЕћЙ™bЙ™kЙ™ MЙ™'lumat Vericisi"
#: ../../share/compssUsers:999
msgid "Network Computer server"
msgstr "ЕћЙ™bЙ™kЙ™ KompГјteri vericisi"
#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
-msgstr "Verici, ePoçt/Groupware/Xəbərlər"
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS vericisi, SMB vericisi, SSH vericisi, VЙ™kil Verici"
#: ../../share/compssUsers:999
-msgid "Game station"
-msgstr "Oyun stansiyasД±"
+msgid "Office"
+msgstr "Д°Еџ Yeri"
#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Video Г§alДџД±Г§Д±larД± vЙ™ editorlarД±"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "MЙ™ktub, xЙ™bЙ™rlЙ™r, fayl daЕџД±nmasД±, chat vasitЙ™lЙ™ri"
#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedya - Qrafika"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Məzəli proqramlar: arkad, lövhə oyunları, strategiya, vs"
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Elektronik mЙ™ktub vЙ™ xЙ™bЙ™r oxuyucusu (pine, mutt, tin..) vЙ™ Web sЙ™yyahlarД±"
+msgid "Graphics programs such as The Gimp"
+msgstr "Qrafika proqramlarД±, mЙ™sЙ™lЙ™n The Gimp"
#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "ЕћЙ™xsi MaliyyЙ™"
+msgid "Multimedia - Sound"
+msgstr "Multimedya - SЙ™s"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
-"Д°stifadЙ™Г§i dostu proqram vЙ™ masa ГјstГј ilЙ™ bЙ™rabЙ™r qrafiki ara Гјz vasitЙ™lЙ™ri"
-
-#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr "SSH daxil bir Г§ox protokollarД±n alД±cД±larД±"
+"SЙ™s ilЙ™ Й™laqЙ™dЙ™r vasitЙ™lЙ™r: mp3 vЙ™ ya midi Г§alДџД±Г§Д±lar, qarД±ЕџdД±rД±Г§Д±lar, vs."
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+msgid "Multimedia - Video"
+msgstr "Multimedya - Video"
#: ../../share/compssUsers:999
-msgid "Internet gateway"
-msgstr "İnternet keçişı"
+msgid "Video players and editors"
+msgstr "Video Г§alДџД±Г§Д±larД± vЙ™ editorlarД±"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "SЙ™s vЙ™ video Г§alД±nmasД±/dГјzЙ™liЕџ proqramlarД±"
+msgid "Multimedia - CD Burning"
+msgstr "Multimedya - CD YandД±rma"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "BaЕџqa qrafiki ara ГјzlЙ™r"
+msgid "Tools to create and burn CD's"
+msgstr "CD yazmaq vЙ™ yandД±rmaq proqramlarД±"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Editorlar, rЙ™flЙ™r, fayl vasitЙ™lЙ™ri, terminallar"
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "BaЕџqa qrafiki ara ГјzlЙ™r (Gnome, IceWM)"
#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "ЕћЙ™xsi maliyyЙ™ idarЙ™Г§ilЙ™ri, mЙ™sЙ™lЙ™n gnucash"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "ЕћЙ™xsi MЙ™'lumat Д°darЙ™Г§isi"
#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Multimedya - CD YandД±rma"
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Palm Pilot və ya Visorunuz üçün vasitələr"
#: ../../share/compssUsers:999
-msgid "Scientific Workstation"
-msgstr "Elmi iЕџ stansiyasД±"
-
-#~ msgid "can not open /etc/inittab for reading: %s"
-#~ msgstr "/etc/inittab oxunmaq üçün açıla bilmir: %s"
+msgid "Personal Finance"
+msgstr "ЕћЙ™xsi MaliyyЙ™"
-#, fuzzy
-#~ msgid "cpu number "
-#~ msgstr "Telefon nömrəsi"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finances, such as gnucash"
+msgstr "ЕћЙ™xsi maliyyЙ™ idarЙ™Г§ilЙ™ri, mЙ™sЙ™lЙ™n gnucash"
#~ msgid ""
-#~ "You now have the opportunity to download encryption software.\n"
-#~ "\n"
-#~ "WARNING:\n"
-#~ "\n"
-#~ "Due to different general requirements applicable to these software and "
-#~ "imposed\n"
-#~ "by various jurisdictions, customer and/or end user of theses software "
-#~ "should\n"
-#~ "ensure that the laws of his/their jurisdiction allow him/them to "
-#~ "download, stock\n"
-#~ "and/or use these software.\n"
-#~ "\n"
-#~ "In addition customer and/or end user shall particularly be aware to not "
-#~ "infringe\n"
-#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
-#~ "respect the provision of these applicable laws, he/they will incure "
-#~ "serious\n"
-#~ "sanctions.\n"
+#~ "You must indicate where you wish to place the information required to "
+#~ "boot\n"
+#~ "GNU/Linux.\n"
#~ "\n"
-#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-#~ "liable\n"
-#~ "for special, indirect or incidental damages whatsoever (including, but "
-#~ "not\n"
-#~ "limited to loss of profits, business interruption, loss of commercial "
-#~ "data and\n"
-#~ "other pecuniary losses, and eventual liabilities and indemnification to "
-#~ "be paid\n"
-#~ "pursuant to a court decision) arising out of use, possession, or the "
-#~ "sole\n"
-#~ "downloading of these software, to which customer and/or end user could\n"
-#~ "eventually have access after having sign up the present agreement.\n"
-#~ "\n"
-#~ "\n"
-#~ "For any queries relating to these agreement, please contact \n"
-#~ "Mandrakesoft, Inc.\n"
-#~ "2400 N. Lincoln Avenue Suite 243\n"
-#~ "Altadena California 91001\n"
-#~ "USA"
+#~ "Unless you know exactly what you are doing, choose \"First sector of "
+#~ "drive\n"
+#~ "(MBR)\"."
#~ msgstr ""
-#~ "İndi şifrləmə üçün istifadə ediləcək tə'minatı endirə bilərsiniz.\n"
-#~ "DД°QQЖЏT:\n"
-#~ "\n"
-#~ "Bu tЙ™'minata bЙ™'zi fЙ™rqli Гјmumi ehtiyaclardan vЙ™ mГјxtЙ™lif\n"
-#~ "mГјhakЙ™mЙ™ haqlarД±ndan Г¶trГј, bu tЙ™'minatД±n son istifadЙ™Г§isi, qanunlarД±n ona "
-#~ "bu\n"
-#~ "tЙ™'minatД± internetdЙ™n endirmЙ™ vЙ™ saxlama haqqД±nД± verdiyindЙ™n Й™min "
-#~ "olmalД±dД±r.\n"
-#~ "\n"
-#~ "ЖЏlavЙ™ olaraq, mГјЕџdЙ™ri va/vЙ™ ya son istifadЙ™Г§i xГјsusilЙ™, yerlЙ™Еџdiyi "
-#~ "mГјhakЙ™mЙ™ yerinin\n"
-#~ "qanunlarД±nД± Г§eynЙ™mЙ™diyindЙ™n Й™min olmalД±dД±r. MГјЕџdЙ™ri vЙ™/vЙ™ ya son "
-#~ "istifadЙ™Г§i\n"
-#~ "qanunlarД±n Й™mr etdiyi ЕџЙ™rtlЙ™ri pozduДџu zaman ciddi cЙ™zalara\n"
-#~ "mЙ™'ruz qalacaqdД±r.\n"
-#~ "\n"
-#~ "XГјsusi ya da dolaylД± zЙ™rЙ™rlЙ™rЙ™ (gЙ™lir azalmasД±, iЕџin pozulmasД±, ticari "
-#~ "mЙ™'lumat\n"
-#~ "itkisi və digər maddi itkilər) yol açan heç bir hadisədə nə Mandrakesoft, "
-#~ "nЙ™ dЙ™ \n"
-#~ "istehsalatçıları və/va ya qaynaq vericiləri məs'ul tutulmazlar. Bu "
-#~ "tЙ™'minatД±\n"
-#~ "internetden endirirkən son istifadəçi bu sözləşməyi qəbul etdiyini \n"
-#~ "bЙ™yan etmiЕџ sayД±lД±r.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bu sözləşməylə əlaqədər hər cür sual üçün xahiş edirik\n"
-#~ "Mandrakesoft, Inc.\n"
-#~ "2400 N. Lincoln Avenue Suite 243\n"
-#~ "Altadena California 91001\n"
-#~ "USA\n"
-#~ "ГјnvanД±na yazД±nД±z."
-
-#, fuzzy
-#~ msgid "Proxy configuration"
-#~ msgstr "VЙ™kil vericilЙ™r quraЕџdД±rД±lmasД±"
-
-#, fuzzy
-#~ msgid "port"
-#~ msgstr "QapД±"
-
-#, fuzzy
-#~ msgid "Url should begin with 'http:'"
-#~ msgstr "VЙ™kil verici http://... ЕџЙ™klindЙ™ olmalД±dД±r."
-
-#, fuzzy
-#~ msgid "The port part should be numeric"
-#~ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
-
-#, fuzzy
-#~ msgid "login"
-#~ msgstr "Avtomatik GiriЕџ"
-
-#, fuzzy
-#~ msgid "password"
-#~ msgstr "Parol"
-
-#, fuzzy
-#~ msgid "re-type password"
-#~ msgstr "Parolsuz"
-
-#, fuzzy
-#~ msgid "The passwords don't match. Try again!"
-#~ msgstr "Parollar uyДџun gЙ™lmir"
-
-#~ msgid "Can't write file %s"
-#~ msgstr "%s faylД±na yazД±la bilinmЙ™di"
-
-#~ msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#~ msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-#~ msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
-
-#~ msgid "no help implemented yet.\n"
-#~ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
-
-#, fuzzy
-#~ msgid "Please click on a medium"
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#~ msgid "usage: drakfloppy\n"
-#~ msgstr "istifadЙ™ qaydasД±: drakfloppy\n"
-
-#, fuzzy
-#~ msgid ""
+#~ "Linuksu açmaq üçün lazımi bilgilərin harada saxlanılacağına qərar verin.\n"
#~ "\n"
-#~ "Usage: harddrake [-h|--help] [--test]\n"
-#~ msgstr "istifadЙ™ qaydasД±: keyboarddrake [--expert] [klavatura]\n"
+#~ "Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#~ msgid "usage: keyboarddrake [--expert] [keyboard]\n"
-#~ msgstr "istifadЙ™ qaydasД±: keyboarddrake [--expert] [klavatura]\n"
+#~ msgid "Please be patient. This operation can take several minutes."
+#~ msgstr "Səbrli olun. Bu əməliyyat bir neçə deqiqə sürə bilər."
-#~ msgid "detected on interface %s"
-#~ msgstr "%s ara ГјzГјndЙ™ tapД±ldД±"
+#~ msgid "Test ports"
+#~ msgstr "QapД±larД± sД±na"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index cf55bebf4..d274f0260 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -13,2369 +13,1121 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfig/card.pm_.c:16
-msgid "256 kB"
-msgstr "256 Кб"
-
-#: ../../Xconfig/card.pm_.c:17
-msgid "512 kB"
-msgstr "512 Кб"
-
-#: ../../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:203
-msgid "Choose a X server"
-msgstr "Абярыце X сервер"
-
-#: ../../Xconfig/card.pm_.c:203
-msgid "X server"
-msgstr "X сервер"
-
-#: ../../Xconfig/card.pm_.c:230
-#, fuzzy
-msgid "Multi-head configuration"
-msgstr "чытанне настройкi"
-
-#: ../../Xconfig/card.pm_.c:231
-msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfig/card.pm_.c:288
-msgid "Select the memory size of your graphics card"
-msgstr "Пазначце памер вiдэапамяцi"
-
-#: ../../Xconfig/card.pm_.c:349
-msgid "XFree configuration"
-msgstr "Настройка XFree"
-
-#: ../../Xconfig/card.pm_.c:351
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
-
-#: ../../Xconfig/card.pm_.c:383
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfig/card.pm_.c:384
-msgid "Use Xinerama extension"
-msgstr ""
-
-#: ../../Xconfig/card.pm_.c:389
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Канфiгураваць маю карту"
-
-#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
-#: ../../Xconfig/various.pm_.c:23
+#: ../../any.pm:1
#, c-format
-msgid "XFree %s"
-msgstr "Сервер XFree86 %s"
-
-#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
-#: ../../Xconfig/various.pm_.c:23
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user to this group."
+msgstr ""
+
+#: ../../any.pm:1 ../../bootlook.pm:1 ../../install_steps_gtk.pm:1
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/draksec:1
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s з падтрымкай 3D-паскарэння"
+msgid "Cancel"
+msgstr "Адмена"
-#: ../../Xconfig/card.pm_.c:416
+#: ../../any.pm:1
#, 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."
+msgid "Launch userdrake"
msgstr ""
-"Падтрымка 3D-паскарэння ў Вашай відэакарце выканана толькі ў XFree %s.\n"
-"XFree %s можа выкарыстоўваць толькі 2D-паскарэнне для гэтай відэакарты."
-#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
+#: ../../any.pm:1
#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgid ""
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
+"\n"
+"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
-"s."
-#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
-
-#: ../../Xconfig/card.pm_.c:429
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+msgid "Mandatory package %s is missing"
msgstr ""
-"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
-"s.\n"
-"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
-"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
-"лепей падтрымлiвае карты з 2D-паскарэннем."
-#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
+#: ../../any.pm:1
#, 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."
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
-"s.\n"
-"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
-"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ."
-#: ../../Xconfig/card.pm_.c:455
-msgid "Xpmac (installation display driver)"
-msgstr ""
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
msgid "Custom"
msgstr "Па выбару"
-#: ../../Xconfig/main.pm_.c:102
-#, fuzzy
-msgid "Graphic Card"
-msgstr "Вiдэакарта"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Allow all users"
+msgstr "Дадаць карыстальнiка"
-#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
-msgid "Monitor"
-msgstr "Манiтор"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "No sharing"
+msgstr "Чакаецца"
-#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
-msgid "Resolution"
-msgstr "Памеры экрану"
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "More"
+msgstr "Перанос"
-#: ../../Xconfig/main.pm_.c:113
-msgid "Test"
+#: ../../any.pm:1
+#, c-format
+msgid "Here is the full list of available countries"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
-#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Опцыi"
-
-#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
-#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
-#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
-#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
-#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
-#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
-msgid "Ok"
-msgstr "Ок"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose your country."
+msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
-#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
-msgid "Quit"
-msgstr "Выхад"
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Country"
+msgstr "Манцiраванне"
-#: ../../Xconfig/main.pm_.c:145
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+msgid "Use Unicode by default"
msgstr ""
-"Ці жадаеце Вы захаваць змяненні?\n"
-"Бягучая канфігурацыя:\n"
-"\n"
-"%s"
-#: ../../Xconfig/monitor.pm_.c:93
-msgid "Choose a monitor"
-msgstr "Абярыце манiтор"
-
-#: ../../Xconfig/monitor.pm_.c:97
-msgid "Plug'n Play"
-msgstr ""
-
-#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
-msgid "Generic"
-msgstr "Агульны"
-
-#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
-#: ../../standalone/harddrake2_.c:68
-#, fuzzy
-msgid "Vendor"
-msgstr "Адкат"
-
-#: ../../Xconfig/monitor.pm_.c:109
-msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "All"
+msgstr "Усё"
-#: ../../Xconfig/monitor.pm_.c:114
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Два крытычных параметры - гэта часціня вертыкальнай разгорткi, цi\n"
-"часціня аднаўлення ўсяго экрану, а таксама болей важны параметр -\n"
-"часціня гарызантальнай сiнхранiзацыi разгорткi, цi часціня вываду\n"
-"радкоў экрану.\n"
-"\n"
-"ВЕЛЬМI ВАЖНА, каб абраны вамi манiтор меў часціню сiнхранiзацыi, якая\n"
-"не перавышае фактычныя магчымасцi вашага манiтору: у процiлеглым выпадку\n"
-"вы можаце сапсаваць манiтор.\n"
-"Калi вы сумняваецеся, абярыце кансерватыўныя настройкi."
-
-#: ../../Xconfig/monitor.pm_.c:121
-msgid "Horizontal refresh rate"
-msgstr "Часціня гарызантальный разгорткi"
-
-#: ../../Xconfig/monitor.pm_.c:122
-msgid "Vertical refresh rate"
-msgstr "Часціня вертыкальнай разгорткi"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:12
-msgid "256 colors (8 bits)"
-msgstr "256 колераў (8 бiтаў)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:13
-msgid "32 thousand colors (15 bits)"
-msgstr "32 тысячы колераў (15 бiтаў)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:14
-msgid "65 thousand colors (16 bits)"
-msgstr "65 тысяч колераў (16 бiтаў)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:15
-msgid "16 million colors (24 bits)"
-msgstr "16 мiльёнаў колераў (24 бiты)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:16
-msgid "4 billion colors (32 bits)"
-msgstr "4 мiлiярда колераў (24 бiты)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:130
-msgid "Resolutions"
-msgstr "Памеры экрану"
+"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я будуць даступны пасля ўсталявання"
-#: ../../Xconfig/resolution_and_depth.pm_.c:255
-msgid "Choose the resolution and the color depth"
-msgstr "Выбар памераў экрану i глыбiнi колеру"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose a language to use."
+msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../Xconfig/resolution_and_depth.pm_.c:256
+#: ../../any.pm:1
#, c-format
-msgid "Graphics card: %s"
-msgstr "Вiдэакарта: %s"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
-#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
-#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
-#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
-#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
-#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
-#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
-#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
-#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
-#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
-#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
-#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
-#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
-#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
-#: ../../ugtk2.pm_.c:926
-msgid "Cancel"
-msgstr "Адмена"
+msgid "Choose the window manager to run:"
+msgstr "Абярыце мэнэджар вокнаў:"
-#: ../../Xconfig/test.pm_.c:29
-msgid "Test of the configuration"
-msgstr "Праверка параметраў настройкi"
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the default user:"
+msgstr "Абярыце асноўнага карыстальнiка:"
-#: ../../Xconfig/test.pm_.c:30
-msgid "Do you want to test the configuration?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: ../../Xconfig/test.pm_.c:30
-#, fuzzy
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Папярэджанне: тэсцiраванне на гэтай вiдэакарце небяспечна"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "I can set up your computer to automatically log on one user."
+msgstr ""
+"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
+"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
-#: ../../Xconfig/various.pm_.c:29
+#: ../../any.pm:1
#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Тып клавiятуры: %s\n"
+msgid "Autologin"
+msgstr "Аўтаматычны ўваход у сiстэму"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../any.pm:1
#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Тып мышы: %s\n"
+msgid "Icon"
+msgstr "Пiктаграма"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../any.pm:1
#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Мыш: %s\n"
+msgid "Shell"
+msgstr "Абалонка:"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Monitor: %s\n"
-msgstr "Манiтор: %s\n"
+msgid "Password (again)"
+msgstr "Паўтарыце пароль"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Часціня гар.разг. манiтору: %s\n"
+msgid "Password"
+msgstr "Пароль"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Часціня верт.разг. манiтору: %s\n"
+msgid "User name"
+msgstr "Iмя карыстальнiку:"
-#: ../../Xconfig/various.pm_.c:35
+#: ../../any.pm:1
#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Вiдэакарта: %s\n"
+msgid "Real name"
+msgstr "Уласнае iмя"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../any.pm:1
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Вiдэапамяць: %s Кб\n"
+msgid "Accept user"
+msgstr "Прыняць карыстальнiка"
-#: ../../Xconfig/various.pm_.c:38
+#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Параметры глыбiнi колеру: %s\n"
+msgid "Done"
+msgstr "Зроблена"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../any.pm:1
#, c-format
-msgid "Resolution: %s\n"
-msgstr "Памеры экрану: %s\n"
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Увядзiце iмя карыстальнiку\n"
+"%s"
-#: ../../Xconfig/various.pm_.c:41
+#: ../../any.pm:1
#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "Сервер XFree86: %s\n"
+msgid "Add user"
+msgstr "Дадаць карыстальнiка"
-#: ../../Xconfig/various.pm_.c:42
+#: ../../any.pm:1
#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "Сервер XFree86: %s\n"
-
-#: ../../Xconfig/various.pm_.c:61
-msgid "Graphical interface at startup"
-msgstr "Запуск X пры старце сiстэмы"
+msgid "This user name has already been added"
+msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../Xconfig/various.pm_.c:62
-msgid ""
-"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 стартаваў пры рэстарце?"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "The user name is too long"
+msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../Xconfig/various.pm_.c:73
+#: ../../any.pm:1
+#, c-format
msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
-msgstr ""
-
-#: ../../Xconfig/various.pm_.c:85
-#, fuzzy
-msgid "What norm is your TV using?"
-msgstr "Якi тып вашага ISDN злучэння?"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132
-msgid "First sector of boot partition"
-msgstr "Першы сектар загрузачнага раздзелу"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
-msgid "First sector of drive (MBR)"
-msgstr "Першы сектар прылады (MBR)"
-
-#: ../../any.pm_.c:111
-msgid "SILO Installation"
-msgstr "Усталяванне SILO"
-
-#: ../../any.pm_.c:112 ../../any.pm_.c:125
-msgid "Where do you want to install the bootloader?"
-msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-
-#: ../../any.pm_.c:124
-msgid "LILO/grub Installation"
-msgstr "Усталяванне LILO/GRUB"
-
-#: ../../any.pm_.c:136 ../../any.pm_.c:150
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:138
-msgid "LILO with text menu"
-msgstr ""
-
-#: ../../any.pm_.c:139 ../../any.pm_.c:150
-msgid "LILO with graphical menu"
-msgstr ""
-
-#: ../../any.pm_.c:142
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:146
-msgid "Boot from DOS/Windows (loadlin)"
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
+"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
+"лiчбы, `-' i `_'"
-#: ../../any.pm_.c:148 ../../any.pm_.c:150
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:158 ../../any.pm_.c:189
-msgid "Bootloader main options"
-msgstr "Галоўныя опцыi пачатковага загрузчыку"
-
-#: ../../any.pm_.c:159 ../../any.pm_.c:190
-#, fuzzy
-msgid "Bootloader to use"
-msgstr "Галоўныя опцыi пачатковага загрузчыку"
-
-#: ../../any.pm_.c:161
-msgid "Bootloader installation"
-msgstr "Усталяванне загрузчыку"
-
-#: ../../any.pm_.c:163 ../../any.pm_.c:192
-msgid "Boot device"
-msgstr "Загрузачная прылада"
-
-#: ../../any.pm_.c:164
-msgid "Compact"
-msgstr "Кампактна"
-
-#: ../../any.pm_.c:164
-msgid "compact"
-msgstr "кампактна"
-
-#: ../../any.pm_.c:165 ../../any.pm_.c:289
-msgid "Video mode"
-msgstr "Вiдэа-рэжым"
-
-#: ../../any.pm_.c:167
-msgid "Delay before booting default image"
-msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-
-#: ../../any.pm_.c:169 ../../any.pm_.c:772
-#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
-#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
-#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
-#: ../../standalone/drakconnect_.c:647
-msgid "Password"
-msgstr "Пароль"
-
-#: ../../any.pm_.c:170 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1078
-msgid "Password (again)"
-msgstr "Паўтарыце пароль"
-
-#: ../../any.pm_.c:171
-msgid "Restrict command line options"
-msgstr "Абмежаванне опцыяў каманднага радка"
-
-#: ../../any.pm_.c:171
-msgid "restrict"
-msgstr "абмежаванне"
-
-#: ../../any.pm_.c:173
-msgid "Clean /tmp at each boot"
-msgstr "Ачышчаць /tmp пры кожнай загрузцы"
-
-#: ../../any.pm_.c:174
+#: ../../any.pm:1
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
-
-#: ../../any.pm_.c:176
-msgid "Enable multi profiles"
-msgstr "Даступна шмат профiляў"
-
-#: ../../any.pm_.c:180
-msgid "Give the ram size in MB"
-msgstr "Пазначце памер RAM у Mб"
+msgid "Please give a user name"
+msgstr "Калi ласка, увядзiце iмя карыстальнiку"
-#: ../../any.pm_.c:182
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr ""
-"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
+#: ../../any.pm:1
+#, c-format
+msgid "This password is too simple"
+msgstr "Гэты пароль занадта просты"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../diskdrake/interactive.pm_.c:1204
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
msgid "The passwords do not match"
msgstr "Паролi не супадаюць"
-#: ../../any.pm_.c:191
-msgid "Init Message"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "(already added %s)"
+msgstr "(ужо дададзена %s)"
-#: ../../any.pm_.c:193
-msgid "Open Firmware Delay"
+#: ../../any.pm:1
+#, c-format
+msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:194
-msgid "Kernel Boot Timeout"
+#: ../../any.pm:1
+#, c-format
+msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:195
-msgid "Enable CD Boot?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:196
-msgid "Enable OF Boot?"
+#: ../../any.pm:1
+#, c-format
+msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:197
-#, fuzzy
-msgid "Default OS?"
-msgstr "Па дамаўленню"
+#: ../../any.pm:1
+#, c-format
+msgid "access to rpm tools"
+msgstr ""
-#: ../../any.pm_.c:231
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm:1
+#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
+"You can create additional entries or change the existing ones."
msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
-#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
-#: ../../standalone/drakfont_.c:996
-msgid "Add"
-msgstr "Дадаць"
-
-#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
-#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
-#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
-msgid "Done"
-msgstr "Зроблена"
-
-#: ../../any.pm_.c:257
-#, fuzzy
-msgid "Modify"
-msgstr "Змянiць RAID"
-
-#: ../../any.pm_.c:265
-msgid "Which type of entry do you want to add?"
-msgstr "Якi тып пункта жадаеце дадаць?"
-
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:266
-msgid "Other OS (SunOS...)"
-msgstr "Iншая АС (SunOS,...)"
-
-#: ../../any.pm_.c:267
-msgid "Other OS (MacOS...)"
-msgstr "Iншая АС (MacOS,...)"
-
-#: ../../any.pm_.c:267
+#: ../../any.pm:1
+#, c-format
msgid "Other OS (windows...)"
msgstr "Iншая АС (windows...)"
-#: ../../any.pm_.c:285
-msgid "Image"
-msgstr "Вобраз"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (MacOS...)"
+msgstr "Iншая АС (MacOS,...)"
-#: ../../any.pm_.c:286 ../../any.pm_.c:297
-msgid "Root"
-msgstr "Root"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (SunOS...)"
+msgstr "Iншая АС (SunOS,...)"
-#: ../../any.pm_.c:287 ../../any.pm_.c:315
-msgid "Append"
-msgstr "Далучыць"
+#: ../../any.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Linux"
+msgstr "Linux"
-#: ../../any.pm_.c:291
-msgid "Initrd"
-msgstr "Initrd"
+#: ../../any.pm:1
+#, c-format
+msgid "Which type of entry do you want to add?"
+msgstr "Якi тып пункта жадаеце дадаць?"
-#: ../../any.pm_.c:292
-msgid "Read-write"
-msgstr "Чытанне-запiс"
+#: ../../any.pm:1
+#, c-format
+msgid "This label is already used"
+msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: ../../any.pm_.c:299
-msgid "Table"
-msgstr "Таблiца"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "You must specify a root partition"
+msgstr "Вы павiнны мець раздзел swap"
-#: ../../any.pm_.c:300
-msgid "Unsafe"
-msgstr "Ненадзейна"
+#: ../../any.pm:1
+#, c-format
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
-msgid "Label"
-msgstr "Метка"
+#: ../../any.pm:1
+#, c-format
+msgid "Empty label not allowed"
+msgstr "Пустая метка не дазваляецца"
-#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+#: ../../any.pm:1 ../../harddrake/v4l.pm:1
+#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: ../../any.pm_.c:316
-#, fuzzy
-msgid "Initrd-size"
-msgstr "Initrd"
-
-#: ../../any.pm_.c:318
+#: ../../any.pm:1
+#, c-format
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:326
-msgid "Remove entry"
-msgstr "Выдалiць запiс"
-
-#: ../../any.pm_.c:329
-msgid "Empty label not allowed"
-msgstr "Пустая метка не дазваляецца"
-
-#: ../../any.pm_.c:330
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:330
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Вы павiнны мець раздзел swap"
-
-#: ../../any.pm_.c:331
-msgid "This label is already used"
-msgstr "Гэтая метка ўжо выкарыстоўваецца"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Initrd-size"
+msgstr "Initrd"
-#: ../../any.pm_.c:640
+#: ../../any.pm:1
#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Знойдзены %s %s iнтэрфейсы"
-
-#: ../../any.pm_.c:641
-msgid "Do you have another one?"
-msgstr "Цi ёсць у вас iншы?"
+msgid "Append"
+msgstr "Далучыць"
-#: ../../any.pm_.c:642
+#: ../../any.pm:1
#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Цi ёсць у вас %s iнтэрфейс?"
-
-#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
-msgid "No"
-msgstr "Не"
-
-#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
-#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
-#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
-msgid "Yes"
-msgstr "Так"
-
-#: ../../any.pm_.c:645
-msgid "See hardware info"
-msgstr "Гл. апiсанне абсталявання"
+msgid "Label"
+msgstr "Метка"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:662
+#: ../../any.pm:1
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Усталяванне драйверу для %s карты %s"
+msgid "Unsafe"
+msgstr "Ненадзейна"
-#: ../../any.pm_.c:663
+#: ../../any.pm:1
#, c-format
-msgid "(module %s)"
-msgstr "(модуль %s)"
+msgid "Table"
+msgstr "Таблiца"
-#: ../../any.pm_.c:674
+#: ../../any.pm:1
#, 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 ""
+msgid "Root"
+msgstr "Root"
-#: ../../any.pm_.c:680
+#: ../../any.pm:1
#, 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мя=значэнне iмя2=значэнне2 ...''.\n"
-"Напрыклад, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:682
-msgid "Module options:"
-msgstr "Опцыi модулю:"
+msgid "Read-write"
+msgstr "Чытанне-запiс"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:694
+#: ../../any.pm:1
#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Якi драйвер %s паспрабаваць?"
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../any.pm_.c:703
+#: ../../any.pm:1
#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"У некаторых выпадках %s драйверу патрэбна некаторая дадатковая iнфармацыя,\n"
-"але звычайна гэта не патрабуецца. Цi не жадаеце вы задаць для яго\n"
-"дадатковыя опцыi, цi дазволiце драйверу пратэсцiраваць машыну\n"
-"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
-"да спынення камп'ютэру, але яно нiчога не сапсуе."
+msgid "Video mode"
+msgstr "Вiдэа-рэжым"
-#: ../../any.pm_.c:707
-msgid "Autoprobe"
-msgstr "Аўтапошук"
+#: ../../any.pm:1
+#, c-format
+msgid "Image"
+msgstr "Вобраз"
-#: ../../any.pm_.c:707
-msgid "Specify options"
-msgstr "Пазначце параметры"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Default OS?"
+msgstr "Па дамаўленню"
-#: ../../any.pm_.c:719
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+msgid "Enable OF Boot?"
msgstr ""
-"Загрузка модулю %s не прайшла.\n"
-"Жадаеце паспрабаваць з iншымi параметрамi?"
-#: ../../any.pm_.c:734
-msgid "access to X programs"
+#: ../../any.pm:1
+#, c-format
+msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:735
-msgid "access to rpm tools"
+#: ../../any.pm:1
+#, c-format
+msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:736
-msgid "allow \"su\""
+#: ../../any.pm:1
+#, c-format
+msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:737
-msgid "access to administrative files"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Boot device"
+msgstr "Загрузачная прылада"
-#: ../../any.pm_.c:738
-msgid "access to network tools"
+#: ../../any.pm:1
+#, c-format
+msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:739
-msgid "access to compilation tools"
-msgstr ""
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Bootloader to use"
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
-#: ../../any.pm_.c:744
+#: ../../any.pm:1
#, c-format
-msgid "(already added %s)"
-msgstr "(ужо дададзена %s)"
-
-#: ../../any.pm_.c:749
-msgid "This password is too simple"
-msgstr "Гэты пароль занадта просты"
-
-#: ../../any.pm_.c:750
-msgid "Please give a user name"
-msgstr "Калi ласка, увядзiце iмя карыстальнiку"
+msgid "Bootloader main options"
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
-#: ../../any.pm_.c:751
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
+"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
-"лiчбы, `-' i `_'"
-
-#: ../../any.pm_.c:752
-#, fuzzy
-msgid "The user name is too long"
-msgstr "Гэта iмя карыстальнiку ўжо дададзена"
+"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
-#: ../../any.pm_.c:753
-msgid "This user name is already added"
-msgstr "Гэта iмя карыстальнiку ўжо дададзена"
+#: ../../any.pm:1
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Пазначце памер RAM у Mб"
-#: ../../any.pm_.c:757
-msgid "Add user"
-msgstr "Дадаць карыстальнiка"
+#: ../../any.pm:1
+#, c-format
+msgid "Enable multiple profiles"
+msgstr "Даступна шмат профiляў"
-#: ../../any.pm_.c:758
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Увядзiце iмя карыстальнiку\n"
-"%s"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
-#: ../../any.pm_.c:759
-msgid "Accept user"
-msgstr "Прыняць карыстальнiка"
+#: ../../any.pm:1
+#, c-format
+msgid "Clean /tmp at each boot"
+msgstr "Ачышчаць /tmp пры кожнай загрузцы"
-#: ../../any.pm_.c:770
-msgid "Real name"
-msgstr "Уласнае iмя"
+#: ../../any.pm:1
+#, c-format
+msgid "Create a bootdisk"
+msgstr "Стварыць загр. дыск"
-#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
-#: ../../printer/printerdrake.pm_.c:915
-msgid "User name"
-msgstr "Iмя карыстальнiку:"
+#: ../../any.pm:1
+#, c-format
+msgid "restrict"
+msgstr "абмежаванне"
-#: ../../any.pm_.c:774
-msgid "Shell"
-msgstr "Абалонка:"
+#: ../../any.pm:1
+#, c-format
+msgid "Restrict command line options"
+msgstr "Абмежаванне опцыяў каманднага радка"
-#: ../../any.pm_.c:776
-msgid "Icon"
-msgstr "Пiктаграма"
+#: ../../any.pm:1
+#, c-format
+msgid "Delay before booting default image"
+msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: ../../any.pm_.c:803
-msgid "Autologin"
-msgstr "Аўтаматычны ўваход у сiстэму"
+#: ../../any.pm:1
+#, c-format
+msgid "compact"
+msgstr "кампактна"
-#: ../../any.pm_.c:804
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
-"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
+#: ../../any.pm:1
+#, c-format
+msgid "Compact"
+msgstr "Кампактна"
-#: ../../any.pm_.c:808
-msgid "Choose the default user:"
-msgstr "Абярыце асноўнага карыстальнiка:"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader installation"
+msgstr "Усталяванне загрузчыку"
-#: ../../any.pm_.c:809
-msgid "Choose the window manager to run:"
-msgstr "Абярыце мэнэджар вокнаў:"
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of boot partition"
+msgstr "Першы сектар загрузачнага раздзелу"
-#: ../../any.pm_.c:824
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Калi ласка, абярыце мову для карыстання."
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of drive (MBR)"
+msgstr "Першы сектар прылады (MBR)"
-#: ../../any.pm_.c:826
-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:1
+#, c-format
+msgid "Where do you want to install the bootloader?"
+msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
-#: ../../standalone/drakxtv_.c:70
-msgid "All"
-msgstr "Усё"
+#: ../../any.pm:1
+#, c-format
+msgid "LILO/grub Installation"
+msgstr "Усталяванне LILO/GRUB"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "Allow all users"
-msgstr "Дадаць карыстальнiка"
+#: ../../any.pm:1
+#, c-format
+msgid "SILO Installation"
+msgstr "Усталяванне SILO"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "No sharing"
-msgstr "Чакаецца"
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Skip"
+msgstr "Прапусцiць"
-#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#: ../../any.pm:1
#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Выбар пакетаў для ўсталявання"
-
-#: ../../any.pm_.c:973
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
+msgid "On Floppy"
+msgstr "Захаванне на дыскету"
-#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
+#: ../../any.pm:1
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:987
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:1001
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:1003
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user in this group."
+"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:1053 ../../security/level.pm_.c:7
-msgid "Welcome To Crackers"
-msgstr "Сардэчна запрашаем у Crackers"
-
-#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
-msgid "Poor"
-msgstr "Зусім слабы"
-
-#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
-msgid "Standard"
-msgstr "Стандартны"
-
-#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
-msgid "High"
-msgstr "Высокi"
-
-#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
-#, fuzzy
-msgid "Higher"
-msgstr "Высокi"
+#: ../../any.pm:1
+#, c-format
+msgid "Creating bootdisk..."
+msgstr "Стварэнне загрузачнай дыскеты"
-#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
-msgid "Paranoid"
-msgstr "Паранаiдальны"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Insert a floppy in %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../any.pm_.c:1061
-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. Уваход не абаронены "
-"паролем."
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
-#: ../../any.pm_.c:1064
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
-"таксама не рэкамендавана."
+#: ../../any.pm:1
+#, c-format
+msgid "Second floppy drive"
+msgstr "Другi дыскавод"
-#: ../../any.pm_.c:1065
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Гэта стандартны узровень бяспекi, якi рэкамендаваны для камп'ютэру,\n"
-"якi далучаны да Internet у якасцi клiенту. Даданыя новыя праверкi\n"
-"бяспекi."
+#: ../../any.pm:1
+#, c-format
+msgid "First floppy drive"
+msgstr "Першы дыскавод"
-#: ../../any.pm_.c:1066
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Sorry, no floppy drive available"
+msgstr "Выбачайце, але дыскавод недаступны"
-#: ../../any.pm_.c:1067
-#, fuzzy
+#: ../../any.pm:1
+#, c-format
msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-"The security is now high enough to use the system as a server which can "
-"accept\n"
-"connections from many clients. Note: if your machine is only a client on the "
-"Internet, you should choose a lower level."
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures. Would you like to create a bootdisk for your system?\n"
+"%s"
msgstr ""
-"На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
-"серверу. Узровень бяспекi дастаткова высокi для работы\n"
-"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
+"З дапамогай загрузачнага дыску вы зможаце загружаць Linux таксама як i \n"
+"стандартным загрузчыкам. Гэта можа быць якасна, калi вы не жадаеце \n"
+"ўсталёўваць LILO (цi Grub), калi iншая аперацыйная сiстэма выдаляе LILO,\n"
+"цi LILO не можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама "
+"можа\n"
+"быць выкарыстаны сумесна з рамонтнай дыскетай Mandrake Linux, якая вельмi \n"
+"палегчыць выратаванне сiстэмы пасля збою.\n"
+"\n"
+"Жадаеце стварыць загрузачны дыск зараз?\n"
+"%s"
-#: ../../any.pm_.c:1070
-#, fuzzy
+#: ../../any.pm:1
+#, c-format
msgid ""
-"This is similar to the previous level, but the system is entirely closed and "
-"security features are at their maximum."
+"\n"
+"\n"
+"(WARNING! You're using XFS for your root partition,\n"
+"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
+"because XFS needs a very large driver)."
msgstr ""
-"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
-"Параметры бяспекi ўстаноўлены на максiмум."
-
-#: ../../any.pm_.c:1076
-#, fuzzy
-msgid "DrakSec Basic Options"
-msgstr "Опцыi"
-
-#: ../../any.pm_.c:1077
-#, fuzzy
-msgid "Please choose the desired security level"
-msgstr "Узровень бяспекi"
-
-#: ../../any.pm_.c:1080
-#, fuzzy
-msgid "Security level"
-msgstr "Настройкi ўзроўня бяспекi"
-#: ../../any.pm_.c:1082
-#, fuzzy
-msgid "Use libsafe for servers"
-msgstr "Абярыце дадатковыя настройкi для сервера"
-
-#: ../../any.pm_.c:1083
+#: ../../any.pm:1
+#, c-format
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-
-#: ../../any.pm_.c:1084
-msgid "Security Administrator (login or email)"
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
+"З дапамогай загрузачнага дыска вы зможаце загружаць Linux незалежна ад\n"
+" стандартнага загрузчыка. Гэта можа быць якасна, калi вы не жадаеце \n"
+"ўсталёўваць SILO, калi iншая аперацыйная сiстэма выдаляе SILO, цi SILO не \n"
+"можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама можа быць \n"
+"выкарыстан сумесна з выратавальнай дыскетай Mandrake Linux, якая вельмi \n"
+"палегчыць выратаванне сiстэмы пасля збою.\n"
+"\n"
+"Калi жадаеце стварыць загрузачны дыск зараз, устаўце дыскету ў першы\n"
+"дыскавод i нацiснiце \"Ok\"."
-#: ../../any.pm_.c:1166
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
-msgstr ""
+#: ../../bootloader.pm:1
+#, fuzzy, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:436
+#: ../../bootloader.pm:1
#, c-format
-msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-msgstr ""
+msgid "not enough room in /boot"
+msgstr "Не хапае дыскавай прасторы ў /boot"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:983
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
#. -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:986
+#: ../../bootloader.pm:1
#, 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."
+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:989
+#: ../../bootloader.pm:1
+#, c-format
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:992
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
+#: ../../bootloader.pm:1
+#, 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:995
+#: ../../bootloader.pm:1
#, 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:999
-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:1099
-msgid "Desktop"
-msgstr "Працоўны стол"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1101
-msgid "Start Menu"
-msgstr "Стартавае меню"
-
-#: ../../bootloader.pm_.c:1120
-#, fuzzy, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-
-#: ../../bootlook.pm_.c:53
-#, fuzzy
-msgid "Boot Style Configuration"
-msgstr "Настройка мадэму"
-
-#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
-#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
-#: ../../standalone/logdrake_.c:74
-#, fuzzy
-msgid "/_File"
-msgstr "Файлы:\n"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/logdrake_.c:80
-msgid "/File/_Quit"
-msgstr ""
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
-msgid "<control>Q"
-msgstr ""
-
-#: ../../bootlook.pm_.c:82
-msgid "NewStyle Categorizing Monitor"
-msgstr ""
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
-#: ../../bootlook.pm_.c:83
-#, fuzzy
-msgid "NewStyle Monitor"
-msgstr "Манiтор"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../bootlook.pm_.c:84
-#, fuzzy
-msgid "Traditional Monitor"
-msgstr "Змянiць манiтор"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Grub"
+msgstr "Grub"
-#: ../../bootlook.pm_.c:85
-msgid "Traditional Gtk+ Monitor"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "LILO with text menu"
msgstr ""
-#: ../../bootlook.pm_.c:86
-msgid "Launch Aurora at boot time"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "LILO with graphical menu"
msgstr ""
-#: ../../bootlook.pm_.c:89
-#, fuzzy
-msgid "Lilo/grub mode"
-msgstr "Рэжым злучэння"
-
-#: ../../bootlook.pm_.c:89
-#, fuzzy
-msgid "Yaboot mode"
-msgstr "Загрузачная прылада"
-
-#: ../../bootlook.pm_.c:138
-#, fuzzy
-msgid "Install themes"
-msgstr "Усталяванне сiстэмы"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "SILO"
+msgstr "SILO"
-#: ../../bootlook.pm_.c:139
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm:1
+#, c-format
msgid ""
-"Display theme\n"
-"under console"
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system from the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
msgstr ""
-#: ../../bootlook.pm_.c:140
-#, fuzzy
-msgid "Create new theme"
-msgstr "Стварэнне новага раздзелу"
-
-#: ../../bootlook.pm_.c:184
+#: ../../bootlook.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../network/netconnect.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
-msgid "Backup %s to %s.old"
+msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:187
+#: ../../bootlook.pm:1
#, c-format
-msgid "Copy %s to %s"
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
-#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
-#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
-#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
-#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
-#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
-msgid "Error"
-msgstr "Памылка"
-
-#: ../../bootlook.pm_.c:192
-msgid "Lilo message not found"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:222
-msgid "Can't write /etc/sysconfig/bootsplash."
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:222
-#, fuzzy, c-format
-msgid "Write %s"
-msgstr "Сервер XFree86 %s"
-
-#: ../../bootlook.pm_.c:224
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+#: ../../bootlook.pm:1
+#, c-format
+msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:235
+#: ../../bootlook.pm:1
#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:238
+#: ../../bootlook.pm:1
#, c-format
-msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
+msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:244
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
-msgstr ""
-
-#: ../../bootlook.pm_.c:248
-msgid "Relaunch 'lilo'"
+"\n"
+"Select the theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separately"
msgstr ""
-#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
-#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "Notice"
-msgstr "гальштук"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Themes"
+msgstr "Дрэва"
-#: ../../bootlook.pm_.c:251
-msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Splash selection"
+msgstr "Асабiсты выбар пакетаў"
-#: ../../bootlook.pm_.c:251
-#, fuzzy
-msgid "Theme installation failed!"
-msgstr "Клас усталявання"
+#: ../../bootlook.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Configure"
+msgstr "Настройка X Window"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm:1
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
-#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
-#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
-#, fuzzy
-msgid "Configure"
-msgstr "Настройка X Window"
-
-#: ../../bootlook.pm_.c:268
-#, fuzzy
-msgid "Splash selection"
-msgstr "Асабiсты выбар пакетаў"
-
-#: ../../bootlook.pm_.c:271
-#, fuzzy
-msgid "Themes"
-msgstr "Дрэва"
-
-#: ../../bootlook.pm_.c:273
-msgid ""
-"\n"
-"Select theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separatly"
-msgstr ""
-
-#: ../../bootlook.pm_.c:276
-msgid "Lilo screen"
-msgstr ""
-
-#: ../../bootlook.pm_.c:281
-msgid "Bootsplash"
-msgstr ""
-
-#: ../../bootlook.pm_.c:316
-msgid "System mode"
-msgstr ""
-
-#: ../../bootlook.pm_.c:318
-msgid "Launch the graphical environment when your system starts"
-msgstr ""
-
-#: ../../bootlook.pm_.c:323
-msgid "No, I don't want autologin"
-msgstr ""
-
-#: ../../bootlook.pm_.c:325
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr ""
-
-#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
-#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
-#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
-#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
-#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
-#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
-#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
-#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
-#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
-#: ../../ugtk2.pm_.c:355
-msgid "OK"
-msgstr ""
-
-#: ../../common.pm_.c:107
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:107
-msgid "KB"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../common.pm_.c:107
-msgid "MB"
-msgstr "Мб"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Theme installation failed!"
+msgstr "Клас усталявання"
-#: ../../common.pm_.c:115
-msgid "TB"
-msgstr ""
+#: ../../bootlook.pm:1 ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Notice"
+msgstr "гальштук"
-#: ../../common.pm_.c:123
+#: ../../bootlook.pm:1 ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "%d minutes"
-msgstr "%d хвiлiн"
-
-#: ../../common.pm_.c:125
-msgid "1 minute"
-msgstr "1 хвiлiна"
+msgid "Error"
+msgstr "Памылка"
-#: ../../common.pm_.c:127
+#: ../../bootlook.pm:1
#, c-format
-msgid "%d seconds"
-msgstr "%d секундаў"
-
-#: ../../common.pm_.c:172
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Дадаць раздзел немагчыма"
-
-#: ../../common.pm_.c:179
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:127
-msgid "France"
-msgstr "Францыя"
-
-#: ../../crypto.pm_.c:15
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:130
-#, fuzzy
-msgid "Belgium"
-msgstr "Бельгiйскi"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-msgid "Germany"
-msgstr "Нямецкi"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Greece"
-msgstr "Грэчаскi"
-
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
-#, fuzzy
-msgid "Norway"
-msgstr "Нарвежскi"
-
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
-#, fuzzy
-msgid "Sweden"
-msgstr "Гл."
-
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:128
-msgid "Netherlands"
-msgstr ""
-
-#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Italy"
-msgstr "Iтальянскi"
-
-#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
-#, fuzzy
-msgid "Austria"
-msgstr "паслядоўная"
-
-#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:131
-msgid "United States"
+msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:19
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../diskdrake/dav.pm_.c:27
-msgid "New"
-msgstr "Новы"
-
-#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
-#: ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Разманцiраваць"
-
-#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
-#: ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Манцiраванне"
-
-#: ../../diskdrake/dav.pm_.c:65
-#, fuzzy
-msgid "Server"
-msgstr "сервер"
-
-#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
-#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
-#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Кропка манцiравання"
-
-#: ../../diskdrake/dav.pm_.c:85
-#, fuzzy
-msgid "Please enter the WebDAV server URL"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: ../../diskdrake/dav.pm_.c:88
-msgid "The URL must begin with http:// or https://"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../diskdrake/dav.pm_.c:109
-#, fuzzy
-msgid "Server: "
-msgstr "сервер"
-
-#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
-#: ../../diskdrake/interactive.pm_.c:1102
-#: ../../diskdrake/interactive.pm_.c:1177
-msgid "Mount point: "
-msgstr "Пункт манцiравання:"
-
-#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
+#: ../../bootlook.pm:1
#, c-format
-msgid "Options: %s"
-msgstr "Опцыi: %s"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97
-msgid "Please make a backup of your data first"
-msgstr "Па-першае, зрабiце рэзервовую копiю вашых дадзеных"
-
-#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
-#: ../../diskdrake/interactive.pm_.c:956
-#: ../../diskdrake/interactive.pm_.c:1022
-msgid "Read carefully!"
-msgstr "Чытайце ўважлiва!"
-
-#: ../../diskdrake/hd_gtk.pm_.c:100
-msgid ""
-"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
-"enough)\n"
-"at the beginning of the disk"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-"Калi вы плануеце выкарыстоўваць boot вобласць, тады размясцiце яе\n"
-" не далей за 2048 сектароў ад пачатку дыска"
-
-#: ../../diskdrake/hd_gtk.pm_.c:154
-msgid "Wizard"
-msgstr "Майстар стварэння"
-
-#: ../../diskdrake/hd_gtk.pm_.c:187
-msgid "Choose action"
-msgstr "Абярыце дзеянне"
-#: ../../diskdrake/hd_gtk.pm_.c:191
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-"Зараз вы маеце толькi адзiн вялiкi раздзел FAT\n"
-"(які звычайна выкарыстоўвае MS Dos/Windows).\n"
-"Прапаную, па-першае, змянiць памеры раздзела\n"
-"(клiкнiце на яго, а потым на \"змяненне памераў\")"
-#: ../../diskdrake/hd_gtk.pm_.c:194
-msgid "Please click on a partition"
-msgstr "Націсніце на раздзел"
-
-#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:464
-msgid "Details"
-msgstr "Падрабязнасцi"
-
-#: ../../diskdrake/hd_gtk.pm_.c:254
-#, fuzzy
-msgid "No hard drives found"
-msgstr "Лакальны прынтэр"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-#, fuzzy
-msgid "Journalised FS"
-msgstr "памылка манцiравання"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
-msgid "Empty"
-msgstr "Пуста"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
-#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
-msgid "Other"
-msgstr "Іншыя"
-
-#: ../../diskdrake/hd_gtk.pm_.c:330
-msgid "Filesystem types:"
-msgstr "Тыпы файлавых сiстэмаў:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
-msgid "Create"
-msgstr "Стварыць"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
-#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
-msgid "Type"
-msgstr "Тып"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "Сервер XFree86 %s"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
+#: ../../bootlook.pm:1
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Выкарыстоўвайце ``%s'' замест"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
-msgid "Delete"
-msgstr "Знiшчыць"
-
-#: ../../diskdrake/hd_gtk.pm_.c:353
-msgid "Use ``Unmount'' first"
-msgstr "Спачатку зрабiце ``Unmount''"
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
-
-#: ../../diskdrake/interactive.pm_.c:177
-#, fuzzy
-msgid "Choose a partition"
-msgstr "Абярыце дзеянне"
-
-#: ../../diskdrake/interactive.pm_.c:177
-#, fuzzy
-msgid "Choose another partition"
-msgstr "Стварэнне новага раздзелу"
-
-#: ../../diskdrake/interactive.pm_.c:202
-#, fuzzy
-msgid "Exit"
-msgstr "Ext2"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to expert mode"
-msgstr "Рэжым эксперту"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to normal mode"
-msgstr "Звычайны рэжым"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Undo"
-msgstr "Адкат"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Continue anyway?"
-msgstr "Сапраўды працягваць?"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without saving"
-msgstr "Выйсцi без захавання"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without writing the partition table?"
-msgstr "Выйсцi без запiсу таблiцы раздзелаў"
-
-#: ../../diskdrake/interactive.pm_.c:257
-#, fuzzy
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-
-#: ../../diskdrake/interactive.pm_.c:271
-msgid "Clear all"
-msgstr "Ачысцiць усё"
-
-#: ../../diskdrake/interactive.pm_.c:272
-msgid "Auto allocate"
-msgstr "Размеркаваць аўтаматычна"
-
-#: ../../diskdrake/interactive.pm_.c:273
-#: ../../install_steps_interactive.pm_.c:220
-#, fuzzy
-msgid "More"
-msgstr "Перанос"
-
-#: ../../diskdrake/interactive.pm_.c:278
-#, fuzzy
-msgid "Hard drive information"
-msgstr "Iнфармацыя"
-
-#: ../../diskdrake/interactive.pm_.c:310
-msgid "All primary partitions are used"
-msgstr "Усе першасныя раздзелы выкарыстаны"
-
-#: ../../diskdrake/interactive.pm_.c:311
-msgid "I can't add any more partition"
-msgstr "Дадаць раздзел немагчыма"
-
-#: ../../diskdrake/interactive.pm_.c:312
-msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+msgid "Lilo message not found"
msgstr ""
-"Каб зрабiць больш разделаў, выдалiце адзiн i стварыце пашыраны раздзел "
-"(extended)"
-
-#: ../../diskdrake/interactive.pm_.c:322
-#, fuzzy
-msgid "Save partition table"
-msgstr "Запiс таблiцы раздзелаў"
-
-#: ../../diskdrake/interactive.pm_.c:323
-#, fuzzy
-msgid "Restore partition table"
-msgstr "Дадатковая таблiца раздзелаў"
-
-#: ../../diskdrake/interactive.pm_.c:324
-msgid "Rescue partition table"
-msgstr "Дадатковая таблiца раздзелаў"
-
-#: ../../diskdrake/interactive.pm_.c:326
-#, fuzzy
-msgid "Reload partition table"
-msgstr "Дадатковая таблiца раздзелаў"
-
-#: ../../diskdrake/interactive.pm_.c:331
-#, fuzzy
-msgid "Removable media automounting"
-msgstr "Аўтаманцiраванне зменных назапашвальнікаў"
-
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
-msgid "Select file"
-msgstr "Абярыце файл"
-#: ../../diskdrake/interactive.pm_.c:347
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Copy %s to %s"
msgstr ""
-"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
-"Працягваць далей?"
-#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
-#: ../../network/modem.pm_.c:95
-msgid "Warning"
-msgstr "Увага!"
-
-#: ../../diskdrake/interactive.pm_.c:362
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Backup %s to %s.old"
msgstr ""
-"Устаўце дыскету ў дыскавод\n"
-"Усе дадзеныя на гэтай дыскеце будуць страчаны"
-
-#: ../../diskdrake/interactive.pm_.c:373
-msgid "Trying to rescue partition table"
-msgstr "Паспрабуем выратаваць таблiцу раздзелаў"
-
-#: ../../diskdrake/interactive.pm_.c:379
-#, fuzzy
-msgid "Detailed information"
-msgstr "Iнфармацыя"
-
-#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
-msgid "Resize"
-msgstr "Змяненне памераў"
-
-#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
-msgid "Move"
-msgstr "Перанос"
-
-#: ../../diskdrake/interactive.pm_.c:396
-msgid "Format"
-msgstr "Фарматаванне"
-
-#: ../../diskdrake/interactive.pm_.c:398
-msgid "Add to RAID"
-msgstr "Дадаць да RAID"
-
-#: ../../diskdrake/interactive.pm_.c:399
-msgid "Add to LVM"
-msgstr "Дадаць да LVM"
-
-#: ../../diskdrake/interactive.pm_.c:402
-msgid "Remove from RAID"
-msgstr "Выдалiць з RAID"
-
-#: ../../diskdrake/interactive.pm_.c:403
-msgid "Remove from LVM"
-msgstr "Выдалiць з LVM"
-
-#: ../../diskdrake/interactive.pm_.c:404
-msgid "Modify RAID"
-msgstr "Змянiць RAID"
-#: ../../diskdrake/interactive.pm_.c:405
-msgid "Use for loopback"
-msgstr "Выкарыстоўваць для вiртуальнай файлавай сiстэмы"
-
-#: ../../diskdrake/interactive.pm_.c:445
-msgid "Create a new partition"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Create new theme"
msgstr "Стварэнне новага раздзелу"
-#: ../../diskdrake/interactive.pm_.c:448
-msgid "Start sector: "
-msgstr "Пачатковы сектар:"
-
-#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
-msgid "Size in MB: "
-msgstr "Памер у Мб:"
-
-#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
-msgid "Filesystem type: "
-msgstr "Тып файлавай сiстэмы:"
-
-#: ../../diskdrake/interactive.pm_.c:456
-msgid "Preference: "
-msgstr "Параметры: "
-
-#: ../../diskdrake/interactive.pm_.c:481
+#: ../../bootlook.pm:1
+#, c-format
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."
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:511
-#, fuzzy
-msgid "Remove the loopback file?"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
-
-#: ../../diskdrake/interactive.pm_.c:541
-msgid "Change partition type"
-msgstr "Змянiць тып раздзелу"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Install themes"
+msgstr "Усталяванне сiстэмы"
-#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
-#, fuzzy
-msgid "Which filesystem do you want?"
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Lilo/grub mode"
+msgstr "Рэжым злучэння"
-#: ../../diskdrake/interactive.pm_.c:548
-msgid "Switching from ext2 to ext3"
-msgstr ""
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Yaboot mode"
+msgstr "Загрузачная прылада"
-#: ../../diskdrake/interactive.pm_.c:578
+#: ../../bootlook.pm:1
#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
+msgid "Launch Aurora at boot time"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:579
+#: ../../bootlook.pm:1
#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
-
-#: ../../diskdrake/interactive.pm_.c:585
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+msgid "Traditional Gtk+ Monitor"
msgstr ""
-"Нельга ўсталяваць пункт манцiравання, таму што раздел выкарыстоўваецца для\n"
-"вiртуальнай файлавай сiстэмы.\n"
-"Спачатку выдалiце вiртуальную сiстэму"
-#: ../../diskdrake/interactive.pm_.c:606
+#: ../../bootlook.pm:1
#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "Computing FAT filesystem bounds"
-msgstr "Падлік межаў файлавай сiстэмы FAT"
-
-#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
-#: ../../install_interactive.pm_.c:131
-msgid "Resizing"
-msgstr "Змяненне памераў"
-
-#: ../../diskdrake/interactive.pm_.c:662
-#, fuzzy
-msgid "This partition is not resizeable"
-msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+msgid "Traditional Monitor"
+msgstr "Змянiць манiтор"
-#: ../../diskdrake/interactive.pm_.c:667
-msgid "All data on this partition should be backed-up"
-msgstr "Усе дадзеныя ў гэтым раздзеле павiнны быць зархiваваныя"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "NewStyle Monitor"
+msgstr "Манiтор"
-#: ../../diskdrake/interactive.pm_.c:669
+#: ../../bootlook.pm:1
#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
-
-#: ../../diskdrake/interactive.pm_.c:674
-msgid "Choose the new size"
-msgstr "Выбар новых памераў"
-
-#: ../../diskdrake/interactive.pm_.c:675
-#, fuzzy
-msgid "New size in MB: "
-msgstr "Памер у Мб:"
-
-#: ../../diskdrake/interactive.pm_.c:728
-msgid "Which disk do you want to move it to?"
-msgstr "На якi дыск перанесці?"
-
-#: ../../diskdrake/interactive.pm_.c:729
-msgid "Sector"
-msgstr "Сектар"
-
-#: ../../diskdrake/interactive.pm_.c:730
-msgid "Which sector do you want to move it to?"
-msgstr "На якi сектар перанесці?"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving"
-msgstr "Пераносім"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving partition..."
-msgstr "Пераносіцца раздзел..."
-
-#: ../../diskdrake/interactive.pm_.c:750
-msgid "Choose an existing RAID to add to"
-msgstr "Абярыце iснуючы RAID для дадання"
-
-#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
-msgid "new"
-msgstr "новы"
-
-#: ../../diskdrake/interactive.pm_.c:766
-msgid "Choose an existing LVM to add to"
-msgstr "Выбярыце iснуючы LVM для дабаўлення"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "LVM name?"
+msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:812
-msgid "This partition can't be used for loopback"
-msgstr "Гэты раздзел не можа быць выкарыстаны пад вiртуальную файлавую сiстэму"
-
-#: ../../diskdrake/interactive.pm_.c:825
-msgid "Loopback"
-msgstr "Вiртуальная файлавая сiстэма (loopback)"
-
-#: ../../diskdrake/interactive.pm_.c:826
-msgid "Loopback file name: "
-msgstr "Iмя вiртуальнага раздзелу"
-
-#: ../../diskdrake/interactive.pm_.c:831
-#, fuzzy
-msgid "Give a file name"
-msgstr "Уласнае iмя"
-
-#: ../../diskdrake/interactive.pm_.c:834
-msgid "File already used by another loopback, choose another one"
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "<control>Q"
msgstr ""
-"Файл ужо выкарыстоўваецца iншай вiртуальнай сiстэмай. Калi ласка, \n"
-"абярыце iншую назву"
-#: ../../diskdrake/interactive.pm_.c:835
-msgid "File already exists. Use it?"
-msgstr "Файл ужо iснуе. Выкарыстаць яго?"
-
-#: ../../diskdrake/interactive.pm_.c:858
-#, fuzzy
-msgid "Mount options"
-msgstr "Опцыi модулю:"
-
-#: ../../diskdrake/interactive.pm_.c:865
-msgid "Various"
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Quit"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
-msgid "device"
-msgstr "прылада"
-
-#: ../../diskdrake/interactive.pm_.c:930
-msgid "level"
-msgstr "узровень"
-
-#: ../../diskdrake/interactive.pm_.c:931
-msgid "chunk size"
-msgstr "памер блоку"
-
-#: ../../diskdrake/interactive.pm_.c:947
-msgid "Be careful: this operation is dangerous."
-msgstr "Будзьце уважлiвы. Гэтую аперацыю нельга адмянiць"
-
-#: ../../diskdrake/interactive.pm_.c:962
-#, fuzzy
-msgid "What type of partitioning?"
-msgstr "Якi тып друкаркi вы маеце?"
-
-#: ../../diskdrake/interactive.pm_.c:978
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, fuzzy, c-format
-msgid "The package %s is needed. Install it?"
-msgstr "Выбар пакетаў для ўсталявання"
-
-#: ../../diskdrake/interactive.pm_.c:992
-msgid ""
-"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
-"1024).\n"
-"Either you use LILO and it won't work, or you don't use LILO and you don't "
-"need /boot"
-msgstr ""
-"Прабачце, але нельга стварыць /boot на гэтым дыску (на цылiндры > 1024).\n"
-"Калі вы думаеце выкарыстоўваць LILO - тады гэта не будзе працаваць, LILO не "
-"выкарыстоўваеца, тады /boot не патрэбны."
+msgid "/_File"
+msgstr "Файлы:\n"
-#: ../../diskdrake/interactive.pm_.c:996
-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 ""
-"Абраны для дадатку ў якасцi каранёвага (/) раздзел фiзiчна знаходзiца далей\n"
-"1024-га цылiндру жорсткага дыску, а ў вас няма раздзелу /boot .\n"
-"Калi будзе выкарыстоўвацца дыспечар загрузкi LILO, не запамятайце дадаць\n"
-"раздзел /boot"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Boot Style Configuration"
+msgstr "Настройка мадэму"
-#: ../../diskdrake/interactive.pm_.c:1002
-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"
+#: ../../common.pm:1
+#, c-format
+msgid "consolehelper missing"
msgstr ""
-"Вы абралi RAID раздзел як каранёвы.\n"
-"Няма загрузчыку, якi б загрузiўся без /boot раздзела.\n"
-"Дадайце раздел /boot, калi ласка."
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../common.pm:1
#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"
-
-#: ../../diskdrake/interactive.pm_.c:1026
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"
+msgid "kdesu missing"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1037
-#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
+#: ../../common.pm:1
+#, fuzzy, c-format
+msgid "Screenshots will be available after install in %s"
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
-#: ../../diskdrake/interactive.pm_.c:1039
-msgid "Formatting"
-msgstr "Фарматаванне"
+#: ../../common.pm:1
+#, fuzzy, c-format
+msgid "Can't make screenshots before partitioning"
+msgstr "Дадаць раздзел немагчыма"
-#: ../../diskdrake/interactive.pm_.c:1040
+#: ../../common.pm:1
#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
+msgid "%d seconds"
+msgstr "%d секундаў"
-#: ../../diskdrake/interactive.pm_.c:1041
-#: ../../install_steps_interactive.pm_.c:466
+#: ../../common.pm:1
#, c-format
-msgid "Formatting partition %s"
-msgstr "Фарматаванне раздзелу %s"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, fuzzy
-msgid "Hide files"
-msgstr "mkraid не працаздольны"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-#, fuzzy
-msgid "Move files to the new partition"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+msgid "1 minute"
+msgstr "1 хвiлiна"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../common.pm:1
#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1064
-#, fuzzy
-msgid "Moving files to the new partition"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+msgid "%d minutes"
+msgstr "%d хвiлiн"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../common.pm:1
#, c-format
-msgid "Copying %s"
+msgid "TB"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1072
-#, fuzzy, c-format
-msgid "Removing %s"
-msgstr "Памеры экрану: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1082
+#: ../../common.pm:1
#, c-format
-msgid "partition %s is now known as %s"
+msgid "GB"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1103
-#: ../../diskdrake/interactive.pm_.c:1162
-msgid "Device: "
-msgstr "Прылада:"
-
-#: ../../diskdrake/interactive.pm_.c:1104
-#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1108
-#: ../../diskdrake/interactive.pm_.c:1116
-#: ../../diskdrake/interactive.pm_.c:1181
-msgid "Type: "
-msgstr "Тып: "
-
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Name: "
-msgstr "Iмя: "
-
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../common.pm:1
#, c-format
-msgid "Start: sector %s\n"
-msgstr "Пачатак: сектар %s\n"
+msgid "MB"
+msgstr "Мб"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../common.pm:1
#, c-format
-msgid "Size: %s"
-msgstr "Памер: %s"
+msgid "KB"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1123
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid ", %s sectors"
-msgstr ", %s сектараў"
+msgid "United States"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1125
+#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "Цылiндры з %d па %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1126
-msgid "Formatted\n"
-msgstr "Фарматаванне\n"
-
-#: ../../diskdrake/interactive.pm_.c:1127
-msgid "Not formatted\n"
-msgstr "Не адфарматавана\n"
+msgid "Austria"
+msgstr "паслядоўная"
-#: ../../diskdrake/interactive.pm_.c:1128
-msgid "Mounted\n"
-msgstr "Заманцiравана\n"
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Italy"
+msgstr "Iтальянскi"
-#: ../../diskdrake/interactive.pm_.c:1129
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+msgid "Netherlands"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1132
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Загрузачны раздзел па дамаўленню\n"
-" (для загрузкi MS-DOS, а не для lilo)\n"
+msgid "Sweden"
+msgstr "Гл."
-#: ../../diskdrake/interactive.pm_.c:1134
-#, c-format
-msgid "Level %s\n"
-msgstr "Узровень %s\n"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Norway"
+msgstr "Нарвежскi"
-#: ../../diskdrake/interactive.pm_.c:1135
-#, c-format
-msgid "Chunk size %s\n"
-msgstr "Памер фрагменту %s\n"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greece"
+msgstr "Грэчаскi"
-#: ../../diskdrake/interactive.pm_.c:1136
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-дыскi %s\n"
+msgid "Germany"
+msgstr "Нямецкi"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Iмя файлу вiртуальнай файлавай сiстэмы: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1141
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1144
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
+msgid "Czech Republic"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1163
-msgid "Read-only"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "Belgium"
+msgstr "Бельгiйскi"
-#: ../../diskdrake/interactive.pm_.c:1164
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Size: %s\n"
-msgstr "Памер: %s\n"
+msgid "France"
+msgstr "Францыя"
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"
-
-#: ../../diskdrake/interactive.pm_.c:1166
-msgid "Info: "
-msgstr "Iнфармацыя: "
+msgid "Costa Rica"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1167
+#: ../../fsedit.pm:1
#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-дыскi %s\n"
+msgid "Error opening %s for writing: %s"
+msgstr "Памылка адкрыцця %s для запiсу: %s"
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../fsedit.pm:1
#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Тып таблiцы раздзелаў: %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1169
-#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "на шыне %d id %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1199
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Тып файлавай сiстэмы:"
-
-#: ../../diskdrake/interactive.pm_.c:1200
-msgid "Choose your filesystem encryption key"
+msgid "Nothing to do"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1203
+#: ../../fsedit.pm:1
#, 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:1204
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Паролi не супадаюць"
-
-#: ../../diskdrake/interactive.pm_.c:1207
-msgid "Encryption key"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1208
-msgid "Encryption key (again)"
-msgstr ""
-
-#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
-msgid "Change type"
-msgstr "Змянiць тып раздзелу"
+msgid "Not enough free space for auto-allocating"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:162
-#, c-format
-msgid "Can't login using username %s (bad password?)"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
+"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
+"для гэтай кропкi манцiравання\n"
-#: ../../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
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"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"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
-#, 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:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
-#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
-#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s памылка фарматавання %s"
-
-#: ../../fs.pm_.c:610
+#: ../../fsedit.pm:1
#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
+msgid "This directory should remain within the root filesystem"
+msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
+#: ../../fsedit.pm:1
#, c-format
-msgid "mounting partition %s in directory %s failed"
+msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
+#: ../../fsedit.pm:1
#, c-format
-msgid "error unmounting %s: %s"
-msgstr "памылка разманцiравання %s: %s"
+msgid "There is already a partition with mount point %s\n"
+msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+msgid "Mount points must begin with a leading /"
+msgstr "Пункт манцiравання павiнен пачынацца з /"
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 32 Мб"
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "сервер"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 16 Мб"
-#: ../../fsedit.pm_.c:240
+#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
@@ -2393,295 +1145,574 @@ msgstr ""
"\n"
"Цi жадаеце страцiць усе раздзелы?\n"
-#: ../../fsedit.pm_.c:501
-#, fuzzy
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 16 Мб"
-
-#: ../../fsedit.pm_.c:502
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 32 Мб"
-
-#: ../../fsedit.pm_.c:521
-msgid "Mount points must begin with a leading /"
-msgstr "Пункт манцiравання павiнен пачынацца з /"
-
-#: ../../fsedit.pm_.c:522
+#: ../../fsedit.pm:1
#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
+msgid "server"
+msgstr "сервер"
-#: ../../fsedit.pm_.c:526
+#: ../../fsedit.pm:1
#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+msgid "with /usr"
msgstr ""
-#: ../../fsedit.pm_.c:528
-msgid "This directory should remain within the root filesystem"
-msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-
-#: ../../fsedit.pm_.c:530
-#, fuzzy
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
-"point\n"
+#: ../../fsedit.pm:1
+#, c-format
+msgid "simple"
msgstr ""
-"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
-"для гэтай кропкi манцiравання\n"
-#: ../../fsedit.pm_.c:532
+#: ../../fs.pm:1
#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr ""
-"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
-"для гэтай кропкi манцiравання\n"
+msgid "Enabling swap partition %s"
+msgstr "Фарматаванне раздзелу %s"
-#: ../../fsedit.pm_.c:599
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+#: ../../fs.pm:1 ../../partition_table.pm:1
+#, c-format
+msgid "error unmounting %s: %s"
+msgstr "памылка разманцiравання %s: %s"
-#: ../../fsedit.pm_.c:601
-msgid "Nothing to do"
+#: ../../fs.pm:1
+#, c-format
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fsedit.pm_.c:694
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Mounting partition %s"
+msgstr "Фарматаванне раздзелу %s"
+
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Checking %s"
+msgstr "Памеры экрану: %s\n"
+
+#: ../../fs.pm:1
#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Памылка адкрыцця %s для запiсу: %s"
+msgid "Formatting partition %s"
+msgstr "Фарматаванне раздзелу %s"
-#: ../../harddrake/data.pm_.c:71
-msgid "cpu /* "
-msgstr ""
+#: ../../fs.pm:1
+#, c-format
+msgid "Creating and formatting file %s"
+msgstr "Стварэнне i фарматаванне файла %s"
-#: ../../harddrake/sound.pm_.c:170
-msgid "No alternative driver"
-msgstr ""
+#: ../../fs.pm:1
+#, c-format
+msgid "I don't know how to format %s in type %s"
+msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
-#: ../../harddrake/sound.pm_.c:171
+#: ../../fs.pm:1
#, c-format
+msgid "%s formatting of %s failed"
+msgstr "%s памылка фарматавання %s"
+
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
+"Click on \"Next ->\" if you want to delete all data and partitions present\n"
+"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
+"be able to recover any data and partitions present on this hard drive,\n"
+"including any Windows data.\n"
+"\n"
+"Click on \"<- Previous\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
+"Націсніце \"Так\", калі жадаеце выдаліць усе дадзеныя\n"
+"і раздзелы на гэтым дыску. Будзце уважлівыя, пасля гэтай аперацыі вы не\n"
+"\n"
+"здолееце аднавіць любыя дадзеныя і раздзелы, улічваючы і дадзеныя Windows\n"
+"\n"
+"\n"
+"Націсніце \"Адмена\" каб адмяніць аперацыю без страты дадзеных і раздзелаў"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
-msgid "Sound configuration"
-msgstr "Настройка"
-
-#: ../../harddrake/sound.pm_.c:174
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
+"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 ""
+"Абярыце жорскі дыск які жадаеце ачысціць для ўсталявання\n"
+"новага раздзелу Mandrake Linux. Будзце ўважлівыя, усе дадзеныя на дыску "
+"будуць\n"
+" знішчаны і іх немагчыма будзе аднавіць."
-#: ../../harddrake/sound.pm_.c:176
+#: ../../help.pm:1
#, c-format
msgid ""
+"As a review, DrakX will present a summary of various information it has\n"
+"about your system. Depending on your installed hardware, you may have some\n"
+"or all of the following entries:\n"
"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:178
-#, fuzzy
-msgid "Driver:"
-msgstr "сервер"
-
-#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
-#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
-#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
-#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
-#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
-#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
-msgid "Help"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary.\n"
+"\n"
+" * \"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one.\n"
+"\n"
+" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+"primary language you have chosen. But here, just as in your choice of a\n"
+"keyboard, you may not be in the country for which the chosen language\n"
+"should correspond. You may need to click on the \"Timezone\" button to\n"
+"configure the clock for the correct timezone.\n"
+"\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" resolution. If that does not suits you, click on\n"
+"the button to reconfigure your grapical interface.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now, you can by clicking on this button.\n"
+"\n"
+" * \"Sound card\": if a sound card is detected on your system, it is\n"
+"displayed here. If you notice the sound card displayed is not the one that\n"
+"is actually present on your system, you can click on the button and choose\n"
+"another driver.\n"
+"\n"
+" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+"here. If you have a TV card and it is not detected, click on the button to\n"
+"try to configure it manually.\n"
+"\n"
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated with the card."
msgstr ""
-#: ../../harddrake/sound.pm_.c:185
-msgid "Switching between ALSA and OSS help"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"\"Sound card\": if a sound card is detected on your system, it is displayed\n"
+"here. If you notice the sound card displayed is not the one that is\n"
+"actually present on your system, you can click on the button and choose\n"
+"another driver."
msgstr ""
-#: ../../harddrake/sound.pm_.c:186
+#: ../../help.pm:1
+#, c-format
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
+"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
+"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
+"detected and installed in the bootloader menu. If this is not the case, you\n"
+"can add an entry by hand in this screen. Be careful to choose the correct\n"
+"parameters.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
+"Yaboot's main options are:\n"
"\n"
-"It also provides a much higher API than OSS.\n"
+" * Init Message: a simple text message displayed before the boot prompt.\n"
"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information.\n"
+"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
+"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
+"\n"
+" * 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\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 ""
-#: ../../harddrake/sound.pm_.c:202
+#: ../../help.pm:1
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
+"You can add additional entries in yaboot for other operating systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
"\n"
-"It has been reported to oopses the kernel on unloading.\n"
+"For other OSs, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Праверка параметраў настройкi"
-
-#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
-#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
-#: ../../standalone/service_harddrake_.c:64
-msgid "Please wait"
-msgstr "Калi ласка, пачакайце"
-
-#: ../../harddrake/sound.pm_.c:210
-msgid "No known driver"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is the name you will have to type at the yaboot prompt to\n"
+"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"
+"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is often used to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button\n"
+"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
+"The following are some examples:\n"
+"\n"
+" 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"
+"\n"
+" * Initrd: this option can be used either to load initial modules before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation.\n"
+"\n"
+" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
+"need to allocate a large ramdisk, this option can be used to specify a\n"
+"ramdisk larger than the default.\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially mounted as\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"You can override the default with this option.\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support.\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
+"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
-#: ../../harddrake/sound.pm_.c:211
+#: ../../help.pm:1
#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:214
-msgid "Unkown driver"
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
+"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
+"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
+"your machine. If you're not sure, you can check the list of hardware\n"
+"detected in your machine by selecting \"See hardware info \" and clicking\n"
+"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
+"->\" button to return to the SCSI interface question.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
msgstr ""
-#: ../../harddrake/sound.pm_.c:215
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Now, it's time to select a printing system for your computer. Other OSs may\n"
+"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
+"is best for a particular type of configuration.\n"
+"\n"
+" * \"pdq\" -- which is an acronym for ``print, don't queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
+"\" will handle only very simple network cases and is somewhat slow when\n"
+"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
+"printing to your local printer or to one halfway around the planet. It is\n"
+"simple to configure and can act as a server or a client for the ancient\n"
+"\"lpd \" printing system, so it compatible with older operating systems\n"
+"that may still need print services. While quite powerful, the basic setup\n"
+"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
+"sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
+"front-ends for printing or choosing printer options and for managing the\n"
+"printer.\n"
+"\n"
+"If you make a choice now, and later find that you don't like your printing\n"
+"system you may change it by running PrinterDrake from the Mandrake Control\n"
+"Center and clicking the expert button."
+msgstr ""
+
+#: ../../help.pm:1
#, c-format
msgid ""
-"The \"%s\" driver for your sound card is unlisted\n"
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. DrakX will analyze the disk boot sector and act according to\n"
+"what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. This way you will be able to load either GNU/Linux or another\n"
+"OS.\n"
+"\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
+"\n"
+"If it cannot make a determination, DrakX will ask you where to place the\n"
+"bootloader.\n"
+"\n"
+"\"Boot device\": in most cases, you will not change the default (\"First\n"
+"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
+"(\"On Floppy\").\n"
+"\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
+"\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
"\n"
-"Please send the output of the \"lspcidrake -v\" command to\n"
-"<install at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver \"%s\""
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Аддалены прынтэр"
-
-#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Агульны"
-
-#: ../../harddrake/v4l.pm_.c:97
-msgid "Unknown|CPH05X (bt878) [many vendors]"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options that will be available at boot time will be displayed.\n"
+"\n"
+"If there are other operating systems installed on your machine they will\n"
+"automatically be added to the boot menu. You can fine-tune the existing\n"
+"options by clicking \"Add\" to create a new entry; selecting an entry and\n"
+"clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" validates\n"
+"your changes.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone who goes to the console and reboots the machine. You can delete the\n"
+"corresponding entries for the operating systems to remove them from the\n"
+"bootloader menu, but you will need a boot disk in order to boot those other\n"
+"operating systems!"
msgstr ""
+"LILO (ад LInux LOader) i Grub - гэта загрузчыкi. Яны могуць загрузiць "
+"другую\n"
+"GNU/Linux цi любую iншую аперацыйную сiстэму, усталяваную на кампутары.\n"
+"Звычайна, гэтыя iншыя аперацыйныя сiстэмы карэктна вызначаюцца i\n"
+"ўсталёўваюцца. Калi гэта не атрымалася, то вы можаце дадаць любы запiс\n"
+"самастойна. Будзьце ўпэўнены, што вы задалi карэктныя параметры.\n"
+"\n"
+"\n"
+"Таксама вы можаце пажадаць i не дабаўляць iншыя аперацыйныя сiстэмы.\n"
+"У такiм выпадку патрэбна выдалiць адпаведныя запiсы. Але ж тады вам \n"
+"патрэбна будзе загрузачная дыскета, каб загрузiцца!"
-#: ../../harddrake/v4l.pm_.c:98
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"This dialog allows to finely tune your bootloader:\n"
+"\n"
+" * \"Bootloader to use\": there are three choices for your bootloader:\n"
+"\n"
+" * \"GRUB\": if you prefer grub (text menu).\n"
+"\n"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
+"\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface.\n"
+"\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+"\n"
+" * \"Delay before booting the default image\": after a boot or a reboot of\n"
+"the computer, this is the delay given to the user at the console to select\n"
+"a boot entry other than the default.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Skip\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"system! Be sure you know what you do before changing any of the options. !!\n"
+"\n"
+"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
+"that are reserved for the expert user."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:224
+#: ../../help.pm:1
+#, c-format
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
+"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 the password that you chose too easy. As you\n"
+"can see, you are not forced to enter a password, but we strongly advise you\n"
+"against. GNU/Linux is as prone to operator error as any other operating\n"
+"system. Since \"root\" can overcome all limitations and unintentionally\n"
+"erase all data on partitions by carelessly accessing the partitions\n"
+"themselves, it is important that it 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"
+"easy to compromise a system.\n"
+"\n"
+"One caveat -- do not make the password too long or complicated because you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it in. To reduce\n"
+"the chance of a blind typing error you will need to enter the password\n"
+"twice. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
+"\n"
+"If you wish access to this computer to be controlled by an authentication\n"
+"server, clisk the \"Advanced\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you do not\n"
+"know which to use, ask your network administrator.\n"
+"\n"
+"If you happen to have problems with reminding passwords, you can choose to\n"
+"have \"No password\", if your computer won't be connected to the Internet,\n"
+"and if you trust anybody having access to it."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:227
-#, fuzzy
-msgid "Card model:"
-msgstr "Адрасы памяці карты (DMA)"
-
-#: ../../harddrake/v4l.pm_.c:228
-#, fuzzy
-msgid "Tuner type:"
-msgstr "Змянiць тып раздзелу"
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "Number of capture buffers:"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:229
-msgid "number of capture buffers for mmap'ed capture"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
+"\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the provided list.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and to\n"
+"go back to the list of choices.\n"
+"\n"
+"Wheel mice are occasionally not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"Next ->\" button, a mouse image is displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activated correctly. Once you\n"
+"see the on-screen scroll wheel moving as you scroll your mouse wheel, test\n"
+"the buttons and check that the mouse pointer moves on-screen as you move\n"
+"your mouse."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:231
-#, fuzzy
-msgid "PLL setting:"
-msgstr "фарматаванне"
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "Radio support:"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Your choice of preferred language will affect the language of the\n"
+"documentation, the installer and the system in general. Select first the\n"
+"region you are located in, and then the language you speak.\n"
+"\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation, thereby installing the\n"
+"language-specific files for system documentation and applications. For\n"
+"example, if you will host users from Spain on your machine, select English\n"
+"as the default language in the tree view and \"Espanol\" in the Advanced\n"
+"section.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. Once\n"
+"you have selected additional locales, click the \"Next ->\" button to\n"
+"continue.\n"
+"\n"
+"To switch between the various languages installed on the system, you can\n"
+"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+"language used by the entire system. Running the command as a regular user\n"
+"will only change the language settings for that particular user."
msgstr ""
-#: ../../harddrake/v4l.pm_.c:232
-msgid "enable radio support"
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Depending on the default language you chose in Section , DrakX will\n"
+"automatically select a particular type of keyboard configuration. However,\n"
+"you might not have a keyboard that corresponds exactly to your language:\n"
+"for example, if you are an English speaking Swiss person, you may have a\n"
+"Swiss keyboard. Or if you speak English but are located in Quebec, you may\n"
+"find yourself in the same situation where your native language and keyboard\n"
+"do not match. In either case, this installation step will allow you to\n"
+"select an appropriate keyboard from a list.\n"
+"\n"
+"Click on the \"More \" button to be presented with the complete list of\n"
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding that will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
msgstr ""
-#: ../../help.pm_.c:13
+#: ../../help.pm:1
+#, c-format
msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more this concept. But unlike \"root\", which is the\n"
-"administrator, the users you add here will not be entitled to change\n"
-"anything except their own files and their own configurations. You will have\n"
-"to create at least one regular user for yourself. That account is where you\n"
-"should log in for routine use. Although it is very practical to log in as\n"
-"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
-"could mean that your system would not work any more. If you make a serious\n"
-"mistake as a regular user, you may only lose some information, but not the\n"
-"entire system.\n"
-"\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\n"
-"first 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"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
-"one from a security point of view, but that is no reason to neglect it:\n"
-"after all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of the people meant to use that computer. When you are\n"
-"finish adding all the users you want, select \"Done\".\n"
+"This step is activated only if an old GNU/Linux partition has been found on\n"
+"your machine.\n"
"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default).\n"
+"DrakX now needs to know if you want to perform a new install or an upgrade\n"
+"of an existing Mandrake Linux system:\n"
+"\n"
+" * \"Install\": For the most part, this completely wipes out the old\n"
+"system. If you wish to change how your hard drives are partitioned, or\n"
+"change the file system, you should use this option. However, depending on\n"
+"your partitioning scheme, you can prevent some of your existing data from\n"
+"being over- written.\n"
"\n"
-"When you are finished adding all users, you will be proposed to choose a\n"
-"user which can automatically log into the system when the computer boots\n"
-"up. If you are interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click \"Yes\".\n"
-"If you are not interested in this feature, click \"No\"."
+" * \"Upgrade\": this installation class allows you to update the packages\n"
+"currently installed on your Mandrake Linux system. Your current\n"
+"partitioning scheme and user data is not altered. Most of other\n"
+"configuration steps remain available, similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
+"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-#: ../../help.pm_.c:48
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
+"\"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
@@ -2693,26 +1724,27 @@ msgid ""
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
-msgstr ""
-"Далей адзначаны усе існуючыя раздзелы Linux, знойдзеныя на вашым дыску,\n"
-" якія зроблены майстрам вылучэння дыскаў. Вы можаце пакінуць іх так і "
-"выкарыстўваць\n"
-" далей, бо яны добра падыходзяць для звычайнага выкарыстання. Калі вы\n"
-" ўносіце змены, вы павінны, вылучыць хаця раздзел (\"/\"). Рабіце\n"
-" раздзел не вельмі малым, бо ў адваротным выпадку вы ня здолееце усталяваць\n"
-" дастаткова праграмнага забеспячэння.Калі вы жадаеце захаваць вашыя "
-"дадзеныя\n"
-" на асобным раздзеле, вы павінны абраць пункт манціравання \"/home\".\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"Кожны раздзел пазначаны наступным чынам \"Імя\", \"Свойствы\".\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
+msgstr ""
+"На вашым дыску было знойдзена болей за адзін раздзел\n"
+"Windows. Калі ласка, абярыце той, памер якога жадаеце змяніць, "
+"кабусталяваць\n"
+"сістэму Mandrake Linux.\n"
"\n"
"\n"
-"\"Імя\" кадавана так - \"тып дыску\", \"нумар дыску\", \"нумар раздзелу\" \n"
+"Для iфармацыі, кожны раздзел адзначаны як: \"Linux імя\", \"Windows\n"
+"імя\" \"Cвойствы\".\n"
+"\"Linux Імя\" кадавана так - \"тып дыску\", \"нумар дыску\",\"нумар "
+"раздзелу\n"
"(напрыклад, \"hda1\").\n"
"\n"
"\n"
"\"Тып дыску\" кадаваны як \"hd\", калі гэта IDE, і \"sd\" калі SCSI.\n"
+"\n"
+"\"Нумар дыску\" - сімвал пасля \"hd\" ці \"sd\". Для IDE дыскаў:\n"
" * \"а\" \"master\" на першасным канале IDE \n"
" * \"b\" \"slave\" на першасным канале IDE\n"
" * \"c\" \"master\" на другасным канале IDE\n"
@@ -2720,295 +1752,275 @@ msgstr ""
"\n"
"\n"
"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
-"жорскі дыск\", і г.д."
-
-#: ../../help.pm_.c:79
-msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"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 ""
+"жорскі дыск\", і г.д.\n"
+"\n"
+"\"Windows Імя\" сімвал вашага дыску ў Windows (першы дыск ці\n"
+"раздзел пазначаецца як \"C:\")."
-#: ../../help.pm_.c:84
+#: ../../help.pm:1
+#, c-format
msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
+"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"
+"defined, either from a previous installation of GNU/Linux or from another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
-"Packages are sorted in groups corresponding to a particular use of your\n"
-"machine. The groups themselves are sorted into four sections:\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation,\n"
-"select one or more of the corresponding groups;\n"
+" * \"Clear all\": this option deletes all partitions on the selected hard\n"
+"drive\n"
"\n"
-" * \"Development\": if your machine is to be used for programming, choose\n"
-"the desired group(s);\n"
+" * \"Auto allocate\": this option enables you to automatically create ext3\n"
+"and swap partitions in free space of your hard drive\n"
"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
+"\"More\": gives access to additional features:\n"
"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
+" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
+"for later partition-table recovery, if necessary. It is strongly\n"
+"recommended that you perform this step.\n"
"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you unselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
+" * \"Restore partition table\": allows you to restore a previously saved\n"
+"partition table from a floppy disk.\n"
"\n"
-" * \"With X\": install the fewest packages possible to have a working\n"
-"graphical desktop;\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"
+"doesn't always work.\n"
"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
+" * \"Reload partition table\": discards all changes and reloads the\n"
+"partition table that was originally on the hard drive.\n"
"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\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"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\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\n"
+"understanding of partitioning.\n"
"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful to repair or\n"
-"update an existing system."
-msgstr ""
-
-#: ../../help.pm_.c:135
-msgid ""
-"Finally, depending on whether or not you chose to be able to select\n"
-"individual packages, you will be presented a tree containing all packages\n"
-"classified by groups and subgroups. While browsing the tree, you can select\n"
-"entire groups, subgroups, or individual packages.\n"
+" * \"Undo\": use this option to cancel your changes.\n"
"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An installation time estimate is displayed\n"
-"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
-"of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information about the\n"
+"hard drive.\n"
"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
+" * \"Done\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of the previous step on how to\n"
-"create such a floppy disk."
-msgstr ""
-
-#: ../../help.pm_.c:171
-msgid ""
-"You are now able to set up your Internet/network connection. If you wish to\n"
-"connect your computer to the Internet or to a local network, click \"OK\".\n"
-"The autodetection of network devices and modem will be launched. If this\n"
-"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
-"also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
+"When a partition is selected, you can use:\n"
"\n"
-"You can consult the ``Starter Guide'' chapter about Internet connections\n"
-"for details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:193
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You may now choose which services you wish to start at boot time.\n"
+"At this point, DrakX will allow you to choose the security level desired\n"
+"for the machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine will contain crucial data, or if it will be a machine\n"
+"directly exposed to the Internet. The trade-off of a higher security level\n"
+"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
+"chapter of the ``Command Line Manual'' to get more information about the\n"
+"meaning of these levels.\n"
"\n"
-"Here are listed all the services available with the current installation.\n"
-"Review them carefully and uncheck those which are not always needed at boot\n"
-"time.\n"
-"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
+"If you do not know what to choose, keep the default option."
msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm:1
+#, c-format
msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Bugs may have been\n"
+"fixed, security issues resolved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. A package-selection tree will\n"
+"appear: review the selection, and press \"Install\" to retrieve and install\n"
+"the selected package( s), or \"Cancel\" to abort."
msgstr ""
-#: ../../help.pm_.c:224
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely.\n"
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a file system).\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to\n"
+"erase any data they contain. If you wish to do that, please select those\n"
+"partitions as well.\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
+"reformat partitions containing data that you wish to keep (typically\n"
+"\"/home\").\n"
"\n"
-"You will be presented the list of available resolutions and color depth\n"
-"available for your hardware. Choose the one that best suit your needs (you\n"
-"will be able to change that after installation though). When you are\n"
-"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
-"then appear and ask you if you can see it.\n"
+"Please be careful when selecting partitions. After formatting, all data on\n"
+"the selected partitions will be deleted and you will not be able to recover\n"
+"it.\n"
"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
+"Click on \"Next ->\" when you are ready to format partitions.\n"
"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen. Refer then to the video\n"
-"configuration section of the user guide for more information on how to\n"
-"configure your display."
+"Click on \"<- Previous\" if you want to choose another partition for your\n"
+"new Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
+"Усе раздзелы, якія былі толькі вызначаны павінны быць\n"
+"адфарматаваны (фарматаваць - значыць стварыць файлаваю сістэму).\n"
+"\n"
+"\n"
+"У той жа час, вы можаце перафарматаваць ужо існуючыя раздзелы, каб сцёрці\n"
+"дадзеныя якія яны ўтрымліваюць. Калі вы жадаеце зрабіць гэта, абярыце "
+"раздзелы\n"
+"якія жадаеце адфарматаваць.\n"
+"\n"
+"\n"
+"Заўважце, вы павінны перафарматаваць усе створаныя раздзелы. Вы павінны\n"
+"перафарматаваць раздзелы, якія ўтрымліваюць аперацыйную сістэму (тыпу \"/"
+"\",\n"
+"\"/usr\" ці \"/var\"), але не павінны перафарматаваць раздзелы, якія "
+"утрымліваюць\n"
+"дадзеныя, якія вы жадаеце захаваць (звычайна /home).\n"
+"\n"
+"\n"
+"Калі ласка, будзце ўважлівыя, абіраючы раздзелы, бо пасля фарматавання\n"
+"усе дадзеныя будуць незваротна выдаленыя.\n"
+"\n"
+"\n"
+"Націсніце \"Так\" калі вы гатовыя фарматаваць раздзеля.\n"
+"\n"
+"\n"
+"Націсніце \"Адмена\" калі жадаеце абраць іншыя раздзелы для "
+"усталяваннявашай\n"
+"новай аперацыйнай сістэмы Mandrake Linux."
-#: ../../help.pm_.c:246
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
+"you should see after your computer has finished doing its hardware tests is\n"
+"the bootloader menu, giving you the choice of which operating system to\n"
+"start.\n"
+"\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"that will automatically perform a whole installation without the help of an\n"
+"operator, similar to the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"Replay\". This is a partially automated installation. The\n"
+"partitioning step is the only interactive procedure.\n"
+"\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a number of similar machines.\n"
+"See the Auto install section on our web site for more information.\n"
+"\n"
+" * \"Save packages selection\"(*): saves a list of the package selected in\n"
+"this installation. To use this selection with another installation, insert\n"
+"the floppy and start the installation. At the prompt, press the [F1] key\n"
+"and type >>linux defcfg=\"floppy\" <<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-#: ../../help.pm_.c:253
-msgid ""
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
-"MBR) of your main disk (unless you are using another boot manager), to\n"
-"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
-"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector, and then you will not be able\n"
-"to start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
-"floppy disk you will insert must be empty or contain data which you do not\n"
-"need. You will not have to format it since DrakX will rewrite the whole\n"
-"disk."
-msgstr ""
-
-#: ../../help.pm_.c:277
-#, fuzzy
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"You now need to choose where you want to install the Mandrake Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space, you will need\n"
-"to partition it. Basically, partitioning a hard drive consists of logically\n"
-"dividing it to create space to install your new Mandrake Linux system.\n"
+"At this point, you need to decide where you want to install the Mandrake\n"
+"Linux operating system on your hard drive. If your hard drive is empty or\n"
+"if an existing operating system is using all the available space you will\n"
+"have to partition the drive. Basically, partitioning a hard drive consists\n"
+"of logically dividing it to create the space needed to install your new\n"
+"Mandrake Linux system.\n"
"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to lost data if there is an existing operating system already\n"
+"installed on the drive, partitioning can be intimidating and stressful if\n"
+"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
-"Guide''. From the installation interface, you can use the wizards as\n"
-"described here by clicking the dialog's \"Wizard\" button.\n"
+"Depending on your hard drive configuration, several options are available:\n"
"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
-"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available.\n"
-"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
+" * \"Use free space\": this option will perform an automatic partitioning\n"
+"of your blank drive(s). If you use this option there will be no further\n"
+"prompts.\n"
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option. You will then be asked to choose the mount points associated to\n"
+"option. You will then be asked to choose the mount points associated with\n"
"each of the partitions. The legacy mount points are selected by default,\n"
-"and you should generally keep them.\n"
+"and for the most part it's a good idea to keep them.\n"
"\n"
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see ``Erase entire disk'' 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"
-"Microsoft Windows on the same computer.\n"
+"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
+"without the loss of any data, provided you previously defragment the\n"
+"Windows partition and that it uses the FAT format. Backing up your data is\n"
+"strongly recommended.. Using this option is recommended if you want to use\n"
+"both Mandrake Linux and Microsoft Windows on the same computer.\n"
"\n"
" Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"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"
+"then when you started. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software.\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
+"system, choose this option. Be careful, because you will not be able to\n"
+"undo your choice after you confirm.\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"Remove Windows\": this will simply erase everything on the drive and\n"
"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
+"will be lost.\n"
"\n"
" !! 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 option. You\n"
-"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing. To know how to use the DiskDrake utility used\n"
-"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
-"Guide''''"
+" * \"Custom disk partitionning\": choose this option if you want to\n"
+"manually partition your hard drive. Be careful -- it is a powerful but\n"
+"dangerous choice and you can very easily lose all your data. That's why\n"
+"this option is really only recommended if you have done something like this\n"
+"before and have some experience. For more instructions on how to use the\n"
+"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
+"the ``Starter Guide''."
msgstr ""
"У гэтым пункце, вы павінны абраць дзе на вашым жорскім \n"
"дыску усталяваць аперацыйную сістэму Mandrake Linux. Калі дыск пусты\n"
@@ -3069,743 +2081,431 @@ msgstr ""
" лёгка згубіць свае дадзеныя. Таму не абірайце гэтую опцыю калі выне ведаеце "
"што робіце."
-#: ../../help.pm_.c:347
+#: ../../help.pm:1
+#, c-format
msgid ""
-"There you are. Installation is now completed and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
-"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
-"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is\n"
-"completely rewritten, all data is lost.\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
"\n"
-" This feature is very handy when installing a great number of similar\n"
-"machines. See the Auto install section on our web site;\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
-#: ../../help.pm_.c:378
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem on it).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"it.\n"
-"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
-"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"Усе раздзелы, якія былі толькі вызначаны павінны быць\n"
-"адфарматаваны (фарматаваць - значыць стварыць файлаваю сістэму).\n"
-"\n"
-"\n"
-"У той жа час, вы можаце перафарматаваць ужо існуючыя раздзелы, каб сцёрці\n"
-"дадзеныя якія яны ўтрымліваюць. Калі вы жадаеце зрабіць гэта, абярыце "
-"раздзелы\n"
-"якія жадаеце адфарматаваць.\n"
-"\n"
-"\n"
-"Заўважце, вы павінны перафарматаваць усе створаныя раздзелы. Вы павінны\n"
-"перафарматаваць раздзелы, якія ўтрымліваюць аперацыйную сістэму (тыпу \"/"
-"\",\n"
-"\"/usr\" ці \"/var\"), але не павінны перафарматаваць раздзелы, якія "
-"утрымліваюць\n"
-"дадзеныя, якія вы жадаеце захаваць (звычайна /home).\n"
-"\n"
-"\n"
-"Калі ласка, будзце ўважлівыя, абіраючы раздзелы, бо пасля фарматавання\n"
-"усе дадзеныя будуць незваротна выдаленыя.\n"
-"\n"
-"\n"
-"Націсніце \"Так\" калі вы гатовыя фарматаваць раздзеля.\n"
-"\n"
-"\n"
-"Націсніце \"Адмена\" калі жадаеце абраць іншыя раздзелы для "
-"усталяваннявашай\n"
-"новай аперацыйнай сістэмы Mandrake Linux."
-#: ../../help.pm_.c:404
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
-"\n"
-"Please be patient."
+"In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
msgstr ""
-"Ваша новая аперацыйная сістэма Mandrake Linux зараз усталёўваецца.\n"
-"Гэта аперацыя адыме пэўны час(што залежыць ад памеру абранага ўсталявання і "
-"хуткасці\n"
-" камп'ютэру) .\n"
-"\n"
-"\n"
-"Калі ласка, пачакайце."
-#: ../../help.pm_.c:412
+#: ../../help.pm:1
+#, c-format
msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"Resolution\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor."
msgstr ""
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms included in it, click on the \"Refuse\" button which will\n"
-"immediately terminate the installation. To continue with the installation,\n"
-"click on the \"Accept\" button."
-msgstr ""
-
-#: ../../help.pm_.c:432
+#: ../../help.pm:1
+#, c-format
msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
-"get more information about the meaning of these levels.\n"
+"Monitor\n"
"\n"
-"If you do not know what to choose, keep the default option."
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own."
msgstr ""
-#: ../../help.pm_.c:442
+#: ../../help.pm:1
+#, c-format
msgid ""
-"At this point, you need to choose which partition(s) will be used for the\n"
-"installation of your Mandrake Linux system. If partitions have already been\n"
-"defined, either from a previous installation of GNU/Linux or from another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
-" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
+"You will be presented the list of different parameters to change to get an\n"
+"optimal graphical display: Graphic Card\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
-"swap partitions on your hard drive's free space;\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
-"\"More\": gives access to additional features:\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs.\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
-"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 a 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"
+"Monitor\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your initial\n"
-"partition table;\n"
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own.\n"
"\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\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"
+"Resolution\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor.\n"
"\n"
-" * \"Done\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
"\n"
-"When a partition is selected, you can use:\n"
+"Test\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"Yes\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
"\n"
-" * Ctrl-d to delete a partition;\n"
"\n"
-" * Ctrl-m to set the mount point.\n"
"\n"
-"To get information about the different filesystem types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
+"Options\n"
"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
+" You can here choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"No\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-#: ../../help.pm_.c:513
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
-"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+"Graphic Card\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
msgstr ""
-"На вашым дыску было знойдзена болей за адзін раздзел\n"
-"Windows. Калі ласка, абярыце той, памер якога жадаеце змяніць, "
-"кабусталяваць\n"
-"сістэму Mandrake Linux.\n"
-"\n"
-"\n"
-"Для iфармацыі, кожны раздзел адзначаны як: \"Linux імя\", \"Windows\n"
-"імя\" \"Cвойствы\".\n"
-"\"Linux Імя\" кадавана так - \"тып дыску\", \"нумар дыску\",\"нумар "
-"раздзелу\n"
-"(напрыклад, \"hda1\").\n"
-"\n"
-"\n"
-"\"Тып дыску\" кадаваны як \"hd\", калі гэта IDE, і \"sd\" калі SCSI.\n"
-"\n"
-"\"Нумар дыску\" - сімвал пасля \"hd\" ці \"sd\". Для IDE дыскаў:\n"
-" * \"а\" \"master\" на першасным канале IDE \n"
-" * \"b\" \"slave\" на першасным канале IDE\n"
-" * \"c\" \"master\" на другасным канале IDE\n"
-" * \"d\" \"slave\" на другасным канале IDE\n"
-"\n"
-"\n"
-"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
-"жорскі дыск\", і г.д.\n"
-"\n"
-"\"Windows Імя\" сімвал вашага дыску ў Windows (першы дыск ці\n"
-"раздзел пазначаецца як \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Калі ласка, пачакайце. Гэтая аперацыя адыме пэўны час."
-#: ../../help.pm_.c:547
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
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\") over your\n"
-"installation. You can also choose to do a new installation or upgrade your\n"
-"existing Mandrake Linux system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. However, depending on\n"
-"what is currently installed on your machine, you may be able to keep some\n"
-"old partitions (Linux or otherwise) unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the\n"
-"packages currently installed on your Mandrake Linux system. It keeps your\n"
-"hard drives' current partitions as well as user configurations. All other\n"
-"configuration steps remain available, similar to a normal installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this new installation class allows you to\n"
-"upgrade an existing Mandrake Linux system while keeping all system\n"
-"configurations unchanged. Adding new packages to the current installation\n"
-"is also possible.\n"
-"\n"
-"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
-"or later.\n"
-"\n"
-"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
+"system clock and the hardware clock are in the same timezone. This is\n"
+"useful when the machine also hosts another operating system like Windows.\n"
"\n"
-" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-"perform a highly customized installation. Some of the decisions you will\n"
-"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
-"so it is not recommended that those without a fair amount of experience\n"
-"select this installation class."
+"The \"Automatic time synchronization \" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. For this\n"
+"feature to work, you must have a working Internet connection. It is best to\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server that can used by other machines on your local network."
msgstr ""
-"Калі ласка, націсніце \"Усталёўка\" калі не маецца аніякай папярэдняйверсіі "
-"Mandrake Linux\n"
-"альбо вы жадаеце выкарыстоўваць некалькі аперацыйных сістэмаў.\n"
-"\n"
-"\n"
-"У залежнасці ад вашых ведаў GNU/Linux, вы можыце абраць адзін з наступных "
-"класаў, каб усталёўваць і мадыфікаваць \n"
-"вашую аперацыйную сістэму Mandrake Linux:\n"
-"\n"
-"* Рэкамендавана: абярыце гэты клас, калі вы ніколі не ўсталёўваліGNU/Linux. "
-"Усталяванне будзе вельмі простым,\n"
-" вам будзе задана толькі некалькі пытанняў.\n"
-"\n"
-"\n"
-"* Па выбару: калі вы дастаткова знаёмыя з GNU/Linux, вы можаце зрабіць выбар "
-"між выкарыстаннем сістэмы як Працоўная\n"
-" станцыя, Сервер, Распрацоўка. Вы павінны будзеце адказаць на большую "
-"колькасць пытанняў чым пад час усталявання\n"
-" класу \"Рэкамэндавана\", таму вы павінны ведаць, як працуе GNU/Linux, каб "
-"абраць гэты клас усталявання.\n"
-"\n"
-"\n"
-"* Эксперт: вы можаце абраць гэты клас, калі вы маеце добрыя веды ў GNU/"
-"Linux. Як і пры ўсталяванні класу\n"
-" \"Настроена\", вы можаце зрабіць выбар між выкарыстаннем сістэмы як "
-"Працоўная станцыя, Сервер,\n"
-" Распрацоўка. Будзьце вельмі асцярожныя перад тым, як абраць гэты клас "
-"усталявання. Вы будзеце здольныя выканаць усталяванне ў\n"
-" адпаведнасці з вашымі жаданнямі. Адказы на некаторыя пытанні могуць быць "
-"вельмі складанымі, калі вы не маеце добрых ведаў у GNU/Linux.\n"
-" Таму не абірайце гэты клас інсталяцыі, калі вы не ведаеце тое, што робіце."
-#: ../../help.pm_.c:582
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen). However, you might not have a keyboard that\n"
-"corresponds exactly to your language: for example, if you are an English\n"
-"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
-"keyboard. Or if you speak English but are located in Quebec, you may find\n"
-"yourself in the same situation. In both cases, you will have to go back to\n"
-"this installation step and select an appropriate keyboard from the list.\n"
+"This step is used to choose which services you wish to start at boot time.\n"
"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards.\n"
+"DrakX will list all the services available on the current installation.\n"
+"Review each one carefully and uncheck those which are not always needed at\n"
+"boot time.\n"
"\n"
-"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
-"asked in the next dialog to choose the key binding that will switch the\n"
-"keyboard layout between the latin and non-latin layouts."
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you are not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services that you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-#: ../../help.pm_.c:598
+#: ../../help.pm:1
+#, c-format
msgid ""
-"The first step is to choose your preferred language.\n"
-"\n"
-"Please choose your preferred language for installation and system usage.\n"
-"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you host users from Spain on your machine,\n"
-"select English as the main language in the tree view and in the Advanced\n"
-"section, click on the box corresponding to \"Spanish|Spain\".\n"
-"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue.\n"
-"\n"
-"To switch from one language to the other, you can launch the\n"
-"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
-"language, or as a simple user to only change that user's default language."
+"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation."
msgstr ""
-#: ../../help.pm_.c:617
+#: ../../help.pm:1
+#, c-format
msgid ""
-"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
-"it assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
+"You will now set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"Next\n"
+"->\". Mandrake Linux will attempt to autodetect network devices and modems.\n"
+"If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
+"also choose not to configure the network, or to do it later, in which case\n"
+"clicking the \"Cancel\" button will take you to the next step.\n"
"\n"
-"If you wish to specify a different type of mouse, select the appropriate\n"
-"type from the provided list.\n"
+"When configuring your network, the available connections options are:\n"
+"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
+"simple LAN connection (Ethernet).\n"
"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again.\n"
+"We will not detail each configuration option - just make sure that you have\n"
+"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
+"from your Internet Service Provider or system administrator.\n"
"\n"
-"Sometimes, wheel mouses are not automatically detected. You will need to\n"
-"manually select it in the list. Be sure to select the one corresponding to\n"
-"the correct port it is attached to. After you have pressed the \"OK\"\n"
-"button, a mouse image will be displayed. You then need to move the wheel of\n"
-"your mouse to activate it correctly. Then test that all buttons and\n"
-"movements are correct."
-msgstr ""
-
-#: ../../help.pm_.c:638
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"You can consult the ``Starter Guide'' chapter about Internet connections\n"
+"for details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection."
msgstr ""
-#: ../../help.pm_.c:642
+#: ../../help.pm:1
+#, c-format
msgid ""
-"This is the most crucial decision in regards with the security of your\n"
-"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
-"system administrator and is the only one authorized to make updates, add\n"
-"users, change the overall system configuration, and so on. In short,\n"
-"\"root\" can do everything! That is why you must choose a password that is\n"
-"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
-"see, you can choose not to enter a password, but we strongly advise you\n"
-"against this if only for one reason: do not think that because you booted\n"
-"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
-"\"root\" can overcome all limitations and unintentionally erase all data on\n"
-"partitions by carelessly accessing the partitions themselves, it is\n"
-"important for it 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"
-"easy to compromise a system.\n"
-"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
-"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes are discovered after this version of Mandrake Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one as \"authentication\". If you have no\n"
-"clue, ask your network administrator.\n"
+"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
+"which appears whenever the installer automatically selects a package to\n"
+"resolve a dependency issue. Some packages have relationships between each\n"
+"other such that installation of a package requires that some other program\n"
+"is already installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
msgstr ""
-#: ../../help.pm_.c:678
+#: ../../help.pm:1
+#, c-format
msgid ""
-"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"if in doubt, DrakX will display a dialog with various options.\n"
-"\n"
-" * \"Bootloader to use\": you have three choices:\n"
-"\n"
-" * \"GRUB\": if you prefer grub (text menu);\n"
-"\n"
-" * \"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\n"
-"interface.\n"
-"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"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"
-"another boot entry than the default one.\n"
+"It is now time to specify which programs you wish to install on your\n"
+"system. There are thousands of packages available for Mandrake Linux, and\n"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various containers, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' container installed.\n"
"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved for the expert user."
-msgstr ""
-
-#: ../../help.pm_.c:718
-#, fuzzy
-msgid ""
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the applications that are in the workstation\n"
+"container.\n"
"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
-"installation step.\n"
+" * \"Development\": if plan on using your machine for programming, choose\n"
+"the appropriate packages from the container.\n"
"\n"
-"You may also not want to give access to these other operating systems to\n"
-"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 (ад LInux LOader) i Grub - гэта загрузчыкi. Яны могуць загрузiць "
-"другую\n"
-"GNU/Linux цi любую iншую аперацыйную сiстэму, усталяваную на кампутары.\n"
-"Звычайна, гэтыя iншыя аперацыйныя сiстэмы карэктна вызначаюцца i\n"
-"ўсталёўваюцца. Калi гэта не атрымалася, то вы можаце дадаць любы запiс\n"
-"самастойна. Будзьце ўпэўнены, што вы задалi карэктныя параметры.\n"
+" * \"Server\": if your machine is intended to be a server, select which of\n"
+"the more common services you wish to install on your machine.\n"
"\n"
+" * \"Graphical Environment\": this is where you will choose your preferred\n"
+"graphical environment. At least one must be selected if you want to have a\n"
+"graphical interface available.\n"
"\n"
-"Таксама вы можаце пажадаць i не дабаўляць iншыя аперацыйныя сiстэмы.\n"
-"У такiм выпадку патрэбна выдалiць адпаведныя запiсы. Але ж тады вам \n"
-"патрэбна будзе загрузачная дыскета, каб загрузiцца!"
-
-#: ../../help.pm_.c:732
-#, fuzzy
-msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"GNU/Linux.\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
-msgstr ""
-"Неабходна пазначыць, дзе вы жадаеце размясцiць iнфармацыю, якая неабходна\n"
-"для загрузкi Linux.\n"
+" * \"With X\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server.\n"
"\n"
-"Калi вы не адчуваеце абсалютна дакладна, што вы робiце, \n"
-"абярыце \"Першы сектар на дыску (MBR)\"."
-
-#: ../../help.pm_.c:739
-msgid ""
-"Here, we select a printing system for your computer. Other OSes may offer\n"
-"you one, but Mandrake Linux offers two.\n"
+" * \"Truly minimal install\": will install the absolute minimum number of\n"
+"packages necessary to get a working Linux system. With this installation\n"
+"you will only have a command line interface. The total size of this\n"
+"installation is 65 megabytes.\n"
"\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 first 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"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
"\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."
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
msgstr ""
-#: ../../help.pm_.c:759
+#: ../../help.pm:1
+#, c-format
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
-"have no SCSI hardware. If you are unsure, you can check the list of\n"
-"hardware detected in your machine by selecting \"See hardware info\" and\n"
-"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
-"button to return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
-"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to manually provide options to the driver."
+"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM so it will eject\n"
+"the current CD and ask you to insert the correct CD as required."
msgstr ""
-#: ../../help.pm_.c:781
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
-"\n"
-"For other OSes, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
-"\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\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"
+"Here are Listed the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a filesystem check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-
-#: ../../help.pm_.c:828
-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"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
+"Далей адзначаны усе існуючыя раздзелы Linux, знойдзеныя на вашым дыску,\n"
+" якія зроблены майстрам вылучэння дыскаў. Вы можаце пакінуць іх так і "
+"выкарыстўваць\n"
+" далей, бо яны добра падыходзяць для звычайнага выкарыстання. Калі вы\n"
+" ўносіце змены, вы павінны, вылучыць хаця раздзел (\"/\"). Рабіце\n"
+" раздзел не вельмі малым, бо ў адваротным выпадку вы ня здолееце усталяваць\n"
+" дастаткова праграмнага забеспячэння.Калі вы жадаеце захаваць вашыя "
+"дадзеныя\n"
+" на асобным раздзеле, вы павінны абраць пункт манціравання \"/home\".\n"
"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
+"Кожны раздзел пазначаны наступным чынам \"Імя\", \"Свойствы\".\n"
"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
+"\"Імя\" кадавана так - \"тып дыску\", \"нумар дыску\", \"нумар раздзелу\" \n"
+"(напрыклад, \"hda1\").\n"
"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
+"\"Тып дыску\" кадаваны як \"hd\", калі гэта IDE, і \"sd\" калі SCSI.\n"
+" * \"а\" \"master\" на першасным канале IDE \n"
+" * \"b\" \"slave\" на першасным канале IDE\n"
+" * \"c\" \"master\" на другасным канале IDE\n"
+" * \"d\" \"slave\" на другасным канале IDE\n"
"\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 ""
+"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
+"жорскі дыск\", і г.д."
-#: ../../help.pm_.c:860
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may (or may not), see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the\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. Consult the correpsonding chapter of the ``Starter\n"
-"Guide'' for more information on how to setup a new printer. The interface\n"
-"presented there is similar to the one used at installation time;\n"
-"\n"
-" * \"Sound card\": if a sound card is detected on your system, it will be\n"
-"displayed here.\n"
+"GNU/Linux is a multi-user system, meaning each user can have their own\n"
+"preferences, their own files and so on. You can read the ``Starter Guide''\n"
+"to learn more about multi-user systems. But unlike \"root\", which is the\n"
+"system administrator, the users you add at this point will not be\n"
+"authorized to change anything except their own files and their own\n"
+"configuration, protecting the system from unintentional or malicious\n"
+"changes that impact the system as a whole. You will have to create at least\n"
+"one regular user for yourself -- this is the account which you should use\n"
+"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
+"to do anything and everything, it may also be very dangerous! A mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, the worst that will happen is that you will lose\n"
+"some information, but not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you typed in and copy it to the \"User name\" field, which is the name this\n"
+"user will enter to log onto the system. If you like, you may override the\n"
+"default and change the username. The next step is to enter a password. From\n"
+"a security point of view, a non-privileged (regular) user password is not\n"
+"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
+"making it blank or too simple: after all, your files could be the ones at\n"
+"risk.\n"
+"\n"
+"Once you click on \"Accept user\", you can add other users. Add a user for\n"
+"each one of your friends: your father or your sister, for example. Click\n"
+"\"Next ->\" when you have finished adding users.\n"
"\n"
-" * \"TV card\": if a TV card is detected on your system, it will be\n"
-"displayed here.\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
+"When you are finished adding all users, you will be asked to choose a user\n"
+"that can automatically log into the system when the computer boots up. If\n"
+"you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Next\n"
+"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
+"to use this feature?\" box."
msgstr ""
-#: ../../help.pm_.c:891
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
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!"
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
+"computer."
msgstr ""
-"Абярыце жорскі дыск які жадаеце ачысціць для ўсталявання\n"
-"новага раздзелу Mandrake Linux. Будзце ўважлівыя, усе дадзеныя на дыску "
-"будуць\n"
-" знішчаны і іх немагчыма будзе аднавіць."
-#: ../../help.pm_.c:896
-#, fuzzy
-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"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+#: ../../install2.pm:1
+#, c-format
+msgid "You must also format %s"
msgstr ""
-"Націсніце \"Так\", калі жадаеце выдаліць усе дадзеныя\n"
-"і раздзелы на гэтым дыску. Будзце уважлівыя, пасля гэтай аперацыі вы не\n"
-"\n"
-"здолееце аднавіць любыя дадзеныя і раздзелы, улічваючы і дадзеныя Windows\n"
-"\n"
-"\n"
-"Націсніце \"Адмена\" каб адмяніць аперацыю без страты дадзеных і раздзелаў"
-#: ../../install2.pm_.c:111
+#: ../../install2.pm:1
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3813,174 +2513,185 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:167
+#: ../../install_any.pm:1
#, c-format
-msgid "You must also format %s"
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"Памылка: для стварэння новых файлавых сiстэмаў не знайдзены адпаведныя \n"
+"прылады. Праверце абсталяванне для пошуку iмавернай прычыны."
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They don't have any known security\n"
-"issues, but some new could be found. In that case, you must make sure to "
-"upgrade\n"
-"as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
+msgid "Error reading file %s"
+msgstr "Памылка чытання файлу %s"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:471
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
+#: ../../install_any.pm:1
+#, c-format
+msgid "This floppy is not FAT formatted"
+msgstr ""
-#: ../../install_any.pm_.c:879
+#: ../../install_any.pm:1
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_any.pm_.c:883
-msgid "This floppy is not FAT formatted"
-msgstr ""
+#: ../../install_any.pm:1
+#, c-format
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
-#: ../../install_any.pm_.c:895
+#: ../../install_any.pm:1
+#, c-format
msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#, c-format
-msgid "Error reading file %s"
-msgstr "Памылка чытання файлу %s"
+msgid "No"
+msgstr "Не"
-#: ../../install_any.pm_.c:1040
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
-"Памылка: для стварэння новых файлавых сiстэмаў не знайдзены адпаведныя \n"
-"прылады. Праверце абсталяванне для пошуку iмавернай прычыны."
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Yes"
+msgstr "Так"
-#: ../../install_interactive.pm_.c:21
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
-"Часткова інфармацыю пра іх можна атрымаць тут: %s"
-#: ../../install_interactive.pm_.c:56
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
-"Вы павiнны мець каранёвы раздзел.\n"
-"Для гэтага стварыце раздзел (альбо адзначце ўжо iснуючы).\n"
-"Потым абярыце ``Кропка манцiравання'' i ўстанавiце яе ў `/'"
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System configuration"
+msgstr "Настройка"
-#: ../../install_interactive.pm_.c:61
-msgid "You must have a swap partition"
-msgstr "Вы павiнны мець раздзел swap"
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System installation"
+msgstr "Усталяванне SILO"
-#: ../../install_interactive.pm_.c:62
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr ""
-"Няма раздзела swap.\n"
-"\n"
-"Усё адно працягваць?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing down the network"
+msgstr "Адлучэнне ад сеткi"
-#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
-#, fuzzy
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Вы павiнны мець раздзел swap"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing up the network"
+msgstr "Далучэнне да сеткi"
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Выкарыстоўваць незанятую прастору"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Падрыхтоўка разделаў не ўдалася: %s"
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Майстар падрыхтоўкi раздзелаў DrakX знайшоў наступныя варыянты:"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partitions"
-msgstr "Выкарыстоўваць iснуючы раздзел"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "I can't find any room for installing"
+msgstr "Дадаць раздзел немагчыма"
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Няма iснуючых раздзелаў, якiя можна выкарыстаць"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Вы можаце цяпер разбiць ваш дыск %s\n"
+"Па заканчэннi не забудзьцеся захаваць змяненнi, скарыстаўшы `w'"
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Выкарыстоўваць раздзел Windows для вiртуальнай файлавай сiстэмы"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use fdisk"
+msgstr "Выкарыстоўваць fdisk"
-#: ../../install_interactive.pm_.c:112
-#, fuzzy
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Custom disk partitioning"
+msgstr "Выкарыстоўваць iснуючы раздзел"
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Выбар памераў"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Усе iснуючыя раздзелы на дыску %s i дадзеныя на iх будуць страчаны"
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Каранёвы раздзел ў Mб: "
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "На якi з маючыхся жорсткiх дыскаў Вы жадаеце ўсталяваць Linux?"
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Памер swap раздзелу ў Mб:"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Erase entire disk"
+msgstr "Сцёрцi дадзеныя на ўсiм дыску"
-#: ../../install_interactive.pm_.c:126
-msgid "Use the free space on the Windows partition"
-msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Remove Windows(TM)"
+msgstr "Выдалiць Windows(TM)"
-#: ../../install_interactive.pm_.c:129
-msgid "Which partition do you want to resize?"
-msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
+"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
+
+#: ../../install_interactive.pm:1
+#, c-format
msgid "Resizing Windows partition"
msgstr "Вылiчэнне межаў файлавай сiстэмы Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"У праграмы змены памераў раздзела FAT не атрымалася\n"
-"апрацаваць Ваш раздзел, памылка: %s"
+msgid "Resizing"
+msgstr "Змяненне памераў"
-#: ../../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:1
+#, c-format
+msgid "partition %s"
+msgstr "Раздзел %s"
-#: ../../install_interactive.pm_.c:138
-#, fuzzy
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which size do you want to keep for Windows on"
+msgstr "Якую прастору захаваць для Windows?"
+
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
@@ -4000,324 +2711,167 @@ msgstr ""
"дадзеных i толькi потым зноў вярнiцеся да праграмы ўсталявання.\n"
"Калi падрыхтавалiся, нацiснiце Ok."
-#: ../../install_interactive.pm_.c:148
-msgid "Which size do you want to keep for Windows on"
-msgstr "Якую прастору захаваць для Windows?"
-
-#: ../../install_interactive.pm_.c:149
+#: ../../install_interactive.pm:1
#, c-format
-msgid "partition %s"
-msgstr "Раздзел %s"
-
-#: ../../install_interactive.pm_.c:156
-#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
-
-#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partition to resize or to use as loopback (or not enough "
-"space left)"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
-"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
-
-#: ../../install_interactive.pm_.c:177
-msgid "Erase entire disk"
-msgstr "Сцёрцi дадзеныя на ўсiм дыску"
-
-#: ../../install_interactive.pm_.c:177
-msgid "Remove Windows(TM)"
-msgstr "Выдалiць Windows(TM)"
-
-#: ../../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: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:191
-#, fuzzy
-msgid "Custom disk partitioning"
-msgstr "Выкарыстоўваць iснуючы раздзел"
+"Ваш раздзел з Windows занадта фрагментаваны. \n"
+"Рэкамендуем спачатку запусцiць праграму ``defrag''"
-#: ../../install_interactive.pm_.c:195
-msgid "Use fdisk"
-msgstr "Выкарыстоўваць fdisk"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Computing the size of the Windows partition"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Вы можаце цяпер разбiць ваш дыск %s\n"
-"Па заканчэннi не забудзьцеся захаваць змяненнi, скарыстаўшы `w'"
-
-#: ../../install_interactive.pm_.c:227
-#, fuzzy
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
-
-#: ../../install_interactive.pm_.c:243
-#, fuzzy
-msgid "I can't find any room for installing"
-msgstr "Дадаць раздзел немагчыма"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Майстар падрыхтоўкi раздзелаў DrakX знайшоў наступныя варыянты:"
+"У праграмы змены памераў раздзела FAT не атрымалася\n"
+"апрацаваць Ваш раздзел, памылка: %s"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Падрыхтоўка разделаў не ўдалася: %s"
-
-#: ../../install_interactive.pm_.c:260
-msgid "Bringing up the network"
-msgstr "Далучэнне да сеткi"
-
-#: ../../install_interactive.pm_.c:265
-msgid "Bringing down the network"
-msgstr "Адлучэнне ад сеткi"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Узнiкла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
-"таму працягвайце на сваю рызыку."
+msgid "Which partition do you want to resize?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
-#: ../../install_steps.pm_.c:211
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgid "Use the free space on the Windows partition"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
-#: ../../install_steps.pm_.c:380
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
-"Некаторыя важныя пакеты не былi ўсталяваны карэктна.\n"
-"Другi ваш cdrom дыск цi ваш cdrom маюць дэфекты.\n"
-"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl Mandrake/RPMS/*."
-"rpm\"\n"
+"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
+"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
-#: ../../install_steps.pm_.c:450
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Welcome to %s"
-msgstr "Сардэчна запрашаем у %s"
-
-#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
-msgid "No floppy drive available"
-msgstr "Дыскавод недаступны"
+msgid "Swap partition size in MB: "
+msgstr "Памер swap раздзелу ў Mб:"
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Пераход на крок `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:146
-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 "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"У Вашай сiстэме маецца недахоп рэсурсаў, таму магчымы праблемы\n"
-"пры ўсталяваннi Mandrake Linux. У гэтым выпадку паспрабуйце тэкставую\n"
-"праграму ўсталявання. Для гэтага нацiснiце `F1' у час загрузкi, а потым\n"
-"набярыце `text' i нацiснiце <ENTER>."
-
-#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
-msgid "Install Class"
-msgstr "Клас Усталявання"
-
-#: ../../install_steps_gtk.pm_.c:160
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Калi ласка, абярыце адзiн з класаў усталявання:"
-
-#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
-msgid "Package Group Selection"
-msgstr "Выбар групы пакетаў"
-
-#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
-msgid "Individual package selection"
-msgstr "Асабiсты выбар пакетаў"
+msgid "Root partition size in MB: "
+msgstr "Каранёвы раздзел ў Mб: "
-#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Агульны памер: %d / %d Mб"
+msgid "Choose the sizes"
+msgstr "Выбар памераў"
-#: ../../install_steps_gtk.pm_.c:334
-msgid "Bad package"
-msgstr "Дрэнны пакет"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Name: %s\n"
-msgstr "Iмя: %s\n"
+msgid "Use the Windows partition for loopback"
+msgstr "Выкарыстоўваць раздзел Windows для вiртуальнай файлавай сiстэмы"
-#: ../../install_steps_gtk.pm_.c:336
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Version: %s\n"
-msgstr "Версiя: %s\n"
+msgid "There is no existing partition to use"
+msgstr "Няма iснуючых раздзелаў, якiя можна выкарыстаць"
-#: ../../install_steps_gtk.pm_.c:337
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Памер: %d Kб\n"
+msgid "Use existing partitions"
+msgstr "Выкарыстоўваць iснуючы раздзел"
-#: ../../install_steps_gtk.pm_.c:338
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Importance: %s\n"
-msgstr "Значнасць: %s\n"
-
-#: ../../install_steps_gtk.pm_.c:360
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
-
-#: ../../install_steps_gtk.pm_.c:365
-msgid "The following packages are going to be installed"
-msgstr "Наступныя пакеты будуць даданы да сiстэмы"
-
-#: ../../install_steps_gtk.pm_.c:366
-msgid "The following packages are going to be removed"
-msgstr "Наступныя пакеты будуць выдалены"
-
-#: ../../install_steps_gtk.pm_.c:378
-msgid "You can't select/unselect this package"
-msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
+msgid "Not enough free space to allocate new partitions"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: ../../install_steps_gtk.pm_.c:390
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use free space"
+msgstr "Выкарыстоўваць незанятую прастору"
-#: ../../install_steps_gtk.pm_.c:392
-msgid "You can't unselect this package. It is already installed"
-msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+#: ../../install_interactive.pm:1 ../../install_steps.pm:1
+#, fuzzy, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Вы павiнны мець раздзел swap"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-"Гэты пакет павiнен быць абноўлены\n"
-"Вы ўпэўнены, што хочаце адмянiць вылучэнне?"
-
-#: ../../install_steps_gtk.pm_.c:398
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Яго патрэбна абнавiць"
-
-#: ../../install_steps_gtk.pm_.c:403
-msgid "Show automatically selected packages"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
+"Няма раздзела swap.\n"
+"\n"
+"Усё адно працягваць?"
-#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#: ../../standalone/drakbackup_.c:4211
-msgid "Install"
-msgstr "Усталёўка"
-
-#: ../../install_steps_gtk.pm_.c:407
-#, fuzzy
-msgid "Load/Save on floppy"
-msgstr "Захаванне на дыскету"
-
-#: ../../install_steps_gtk.pm_.c:408
-#, fuzzy
-msgid "Updating package selection"
-msgstr "Асабiсты выбар пакетаў"
-
-#: ../../install_steps_gtk.pm_.c:413
-#, fuzzy
-msgid "Minimal install"
-msgstr "Выдалiць з сiстэмы"
-
-#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
-msgid "Choose the packages you want to install"
-msgstr "Выбар пакетаў для ўсталявання"
-
-#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
-msgid "Installing"
-msgstr "Усталёўваем"
-
-#: ../../install_steps_gtk.pm_.c:450
-msgid "Estimating"
-msgstr "Чакаецца"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "Time remaining "
-msgstr "Засталося часу "
-
-#: ../../install_steps_gtk.pm_.c:469
-#, fuzzy
-msgid "Please wait, preparing installation..."
-msgstr "Падрыхтоўка ўсталяваньня"
-
-#: ../../install_steps_gtk.pm_.c:551
+#: ../../install_interactive.pm:1
#, c-format
-msgid "%d packages"
-msgstr "%d пакетаў"
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+"Вы павiнны мець каранёвы раздзел.\n"
+"Для гэтага стварыце раздзел (альбо адзначце ўжо iснуючы).\n"
+"Потым абярыце ``Кропка манцiравання'' i ўстанавiце яе ў `/'"
-#: ../../install_steps_gtk.pm_.c:556
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Installing package %s"
-msgstr "Усталяванне пакету %s"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-#: ../../standalone/drakautoinst_.c:197
-msgid "Accept"
-msgstr "Прыняць"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-msgid "Refuse"
-msgstr "Адказаць"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
+"Часткова інфармацыю пра іх можна атрымаць тут: %s"
-#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
+#: ../../install_messages.pm:1
#, c-format
msgid ""
-"Change your Cd-Rom!\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+"\n"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Змянiце ваш Cd-Rom!\n"
+"Вiншуем, усталяванне завершана.\n"
+"Выдалiце загрузачны дыск i нацiснiце enter для перазагрузкi.\n"
"\n"
-"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
-"пасля.\n"
-"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
-"Cd."
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
-#: ../../install_steps_interactive.pm_.c:804
-#: ../../install_steps_interactive.pm_.c:808
-msgid "Go on anyway?"
-msgstr "Усё роўна працягваць?"
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
-msgid "There was an error ordering packages:"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+"\n"
+"За iнфармацыяй пра змяненнi дадзенага выпуску Mandrake Linux,\n"
+"звяртайцесь на \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
+"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
-#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
-msgid "There was an error installing packages:"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:10
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"\n"
"Warning\n"
@@ -4349,20 +2903,8 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Адбылася памылка"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-
-#: ../../install_steps_interactive.pm_.c:112
-msgid "License agreement"
-msgstr "Ліцэнзійная дамова"
-
-#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"Introduction\n"
"\n"
@@ -4483,249 +3025,687 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:197
-msgid "Are you sure you refuse the licence?"
-msgstr ""
+#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Пераход на крок `%s'\n"
-#: ../../install_steps_interactive.pm_.c:217
-#: ../../install_steps_interactive.pm_.c:995
-#: ../../standalone/keyboarddrake_.c:25
-msgid "Keyboard"
-msgstr "Клавiятура"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Go on anyway?"
+msgstr "Усё роўна працягваць?"
-#: ../../install_steps_interactive.pm_.c:218
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Калi ласка, абярыце тып клавiятуры."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error installing packages:"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-#: ../../install_steps_interactive.pm_.c:219
-msgid "Here is the full list of keyboards available"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
+"Змянiце ваш Cd-Rom!\n"
+"\n"
+"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
+"пасля.\n"
+"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
+"Cd."
-#: ../../install_steps_interactive.pm_.c:237
-msgid "Which installation class do you want?"
-msgstr "Якi клас усталявання вы жадаеце?"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Refuse"
+msgstr "Адказаць"
-#: ../../install_steps_interactive.pm_.c:241
-#, fuzzy
-msgid "Install/Update"
-msgstr "Усталёўка"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Accept"
+msgstr "Прыняць"
-#: ../../install_steps_interactive.pm_.c:241
-#, fuzzy
-msgid "Is this an install or an update?"
-msgstr "Абярыце ўсталяванне цi абнаўленне"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Installing package %s"
+msgstr "Усталяванне пакету %s"
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Recommended"
-msgstr "Рэкамендавана"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "%d packages"
+msgstr "%d пакетаў"
-#: ../../install_steps_interactive.pm_.c:253
-#: ../../install_steps_interactive.pm_.c:256
-msgid "Expert"
-msgstr "Эксперт"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Падрабязнасцi"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-msgid "Upgrade"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Details"
+msgstr "Падрабязнасцi"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade packages only"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Please wait, preparing installation..."
+msgstr "Падрыхтоўка ўсталяваньня"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Time remaining "
+msgstr "Засталося часу "
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Estimating"
+msgstr "Чакаецца"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing"
+msgstr "Усталёўваем"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Выбар пакетаў для ўсталявання"
+
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Minimal install"
+msgstr "Выдалiць з сiстэмы"
+
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Updating package selection"
msgstr "Асабiсты выбар пакетаў"
-#: ../../install_steps_interactive.pm_.c:282
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "калi ласка, пазначце тып вашай мышы."
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "Load/Save on floppy"
+msgstr "Захаванне на дыскету"
-#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
-msgid "Mouse Port"
-msgstr "Порт мышы"
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "<- Previous"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Install"
+msgstr "Усталёўка"
-#: ../../install_steps_interactive.pm_.c:297
-msgid "Buttons emulation"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:299
-msgid "Button 2 Emulation"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Яго патрэбна абнавiць"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
+"Гэты пакет павiнен быць абноўлены\n"
+"Вы ўпэўнены, што хочаце адмянiць вылучэнне?"
-#: ../../install_steps_interactive.pm_.c:300
-msgid "Button 3 Emulation"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It is already installed"
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't select/unselect this package"
+msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Наступныя пакеты будуць выдалены"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Наступныя пакеты будуць даданы да сiстэмы"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"You can't select this package as there is not enough space left to install it"
msgstr ""
+"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "Configuring PCMCIA cards..."
-msgstr "Настройка карт PCMCIA ..."
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Значнасць: %s\n"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Памер: %d Kб\n"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "Configuring IDE"
-msgstr "Настройка IDE"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Version: %s\n"
+msgstr "Версiя: %s\n"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "IDE"
-msgstr "IDE"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Name: %s\n"
+msgstr "Iмя: %s\n"
-#: ../../install_steps_interactive.pm_.c:345
-msgid "No partition available"
-msgstr "няма даступных раздзелаў"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Bad package"
+msgstr "Дрэнны пакет"
-#: ../../install_steps_interactive.pm_.c:348
-msgid "Scanning partitions to find mount points"
+#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Other"
+msgstr "Іншыя"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Агульны памер: %d / %d Mб"
+
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Next ->"
+msgstr "Далей ->"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Individual package selection"
+msgstr "Асабiсты выбар пакетаў"
+
+#: ../../install_steps_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#, c-format
+msgid "Help"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:356
-msgid "Choose the mount points"
-msgstr "Абярыце пункты манцiравання"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package Group Selection"
+msgstr "Выбар групы пакетаў"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_gtk.pm:1
+#, c-format
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"
+"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 ""
+"У Вашай сiстэме маецца недахоп рэсурсаў, таму магчымы праблемы\n"
+"пры ўсталяваннi Mandrake Linux. У гэтым выпадку паспрабуйце тэкставую\n"
+"праграму ўсталявання. Для гэтага нацiснiце `F1' у час загрузкi, а потым\n"
+"набярыце `text' i нацiснiце <ENTER>."
-#: ../../install_steps_interactive.pm_.c:395
-#, fuzzy
-msgid "No root partition found to perform an upgrade"
-msgstr "Каранёвы раздзел не знойдзены"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Save packages selection"
+msgstr "Асабiсты выбар пакетаў"
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Каранёвы раздзел"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automated"
+msgstr "Аўтаматычны"
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Якi радзел каранёвы (/) для вашай сiстэмы?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Replay"
+msgstr "Перазагрузiць"
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Каб мадыфiкацыя таблiцы раздзелаў здейснiлася, патрэбна перазагрузка."
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Выбар раздзелаў для фарматавання"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Generate auto install floppy"
+msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Праверыць на наяўнасць дрэнных блокаў?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Reboot"
+msgstr "Root"
-#: ../../install_steps_interactive.pm_.c:463
-msgid "Formatting partitions"
-msgstr "Фарматавання раздзелаў"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
+msgstr ""
+"Некаторыя крокi не завершаны.\n"
+"Вы сапраўды жадаеце выйсцi зараз?"
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Стварэнне i фарматаванне файла %s"
+msgid "Creating auto install floppy..."
+msgstr "Стварэнне дыскеты для ўсталявання"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:470
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:472
-msgid "Not enough swap space to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Installing bootloader"
+msgstr "Усталяванне загрузчыку"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-"Не хапае месца ў буферы падкачкi (swap) для ўсталявання, павялiчце яго."
+"Памылка ўсталявання аboot, \n"
+"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
-#: ../../install_steps_interactive.pm_.c:479
-#, fuzzy
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Прагляд даступных пакетаў"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: ../../install_steps_interactive.pm_.c:480
-msgid "Looking for available packages..."
-msgstr "Прагляд даступных пакетаў"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
-#, fuzzy
-msgid "Looking at packages already installed..."
-msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Падрыхтоўка загрузчыка"
-#: ../../install_steps_interactive.pm_.c:487
-msgid "Finding packages to upgrade..."
-msgstr "Пошук пакетаў для абнаўлення"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Domain Admin Password"
+msgstr "Падцвердзiць пароль"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Domain Admin User Name"
+msgstr "Iмя дамену"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Windows Domain"
+msgstr "Навуковыя прыкладанні"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication Windows Domain"
+msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:505
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
-"Ваша сiстэма не мае дастакова месца для ўсталявання цi абнаўлення (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:541
-msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Server"
+msgstr "NIS сервер:"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Domain"
+msgstr "NIS Domain"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication NIS"
+msgstr "Аўтэнтыфiкацыя NIS"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "NIS"
+msgstr "Выкарыстоўваць NIS"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "LDAP Server"
+msgstr "сервер"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:543
-#, fuzzy
-msgid "Load from floppy"
-msgstr "Аднаўленне з дыскеты"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication LDAP"
+msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Save on floppy"
-msgstr "Захаванне на дыскету"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:547
-#, fuzzy
-msgid "Loading from floppy"
-msgstr "Аднаўленне з дыскеты"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Local files"
+msgstr "Лакальны прынтэр"
-#: ../../install_steps_interactive.pm_.c:547
-#, fuzzy
-msgid "Package selection"
-msgstr "Выбар групы пакетаў"
+#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#, c-format
+msgid "Authentication"
+msgstr "Аўтэнтыфiкацыя"
-#: ../../install_steps_interactive.pm_.c:552
-#, fuzzy
-msgid "Insert a floppy containing package selection"
-msgstr "Устаўце дыскету ў дыскавод %s"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr ""
+"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
-#: ../../install_steps_interactive.pm_.c:634
-msgid "Selected size is larger than available space"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No password"
+msgstr "Няма паролю"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Set root password"
+msgstr "Пароль для root"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:649
-#, fuzzy
-msgid "Type of install"
-msgstr "Выбар пакетаў для усталявання"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:650
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, fuzzy, c-format
+msgid "Services"
+msgstr "прылада"
+
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "System"
+msgstr "Mouse Systems"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Bootloader"
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Boot"
+msgstr "Root"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "disabled"
+msgstr "Таблiца"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "activated"
+msgstr "Актыўны"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Firewall"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:653
-#, fuzzy
-msgid "With X"
-msgstr "Чакайце"
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Security"
+msgstr "кучаравы"
-#: ../../install_steps_interactive.pm_.c:655
-msgid "With basic documentation (recommended!)"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Security Level"
+msgstr "Настройкi ўзроўня бяспекi"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "Настройка X Window"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Network"
+msgstr "Сетка:"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "Сеткавы iнтэрфейс"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "Запуск X пры старце сiстэмы"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:656
-msgid "Truly minimal install (especially no urpmi)"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "TV card"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:741
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Цi ёсць у вас iншы?"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Sound card"
+msgstr "Стандартны"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Remote CUPS server"
+msgstr "Аддалены сервер CUPS"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "No printer"
+msgstr "Iмя друкаркi"
+
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer"
+msgstr "Прынтэр"
+
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Mouse"
+msgstr "Порт мышы"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Timezone"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Keyboard"
+msgstr "Клавiятура"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Summary"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "NTP Server"
+msgstr "NIS сервер:"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Hardware clock set to GMT"
+msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Якi ваш часавы пояс?"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "Выбар люстра для атрымання пакетаў"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\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:1
+#, fuzzy, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Post-install configuration"
+msgstr "Настройка пасля ўсталявання"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Installing package %s\n"
+"%d%%"
+msgstr ""
+"Усталяванне пакету %s\n"
+"%d%%"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing installation"
+msgstr "Падрыхтоўка ўсталяваньня"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "Cd-Rom пазначаны \"%s\""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4735,3219 +3715,6488 @@ msgstr ""
"Калi вы не маеце анi воднага з гэтых CD дыскаў, нацiснiце Адмянiць.\n"
"Калi некаторых з CD дыскаў не маеце, адмянiце iх выдзяленне i нацiснiце Ок."
-#: ../../install_steps_interactive.pm_.c:746
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom пазначаны \"%s\""
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Preparing installation"
-msgstr "Падрыхтоўка ўсталяваньня"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "With X"
+msgstr "Чакайце"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Installing package %s\n"
-"%d%%"
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"Усталяванне пакету %s\n"
-"%d%%"
-#: ../../install_steps_interactive.pm_.c:822
-msgid "Post-install configuration"
-msgstr "Настройка пасля ўсталявання"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Выбар пакетаў для усталявання"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Please insert the Boot floppy used in drive %s"
+msgid "Insert a floppy containing package selection"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: ../../install_steps_interactive.pm_.c:834
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgid "Loading from floppy"
+msgstr "Аднаўленне з дыскеты"
-#: ../../install_steps_interactive.pm_.c:861
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Package selection"
+msgstr "Выбар групы пакетаў"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save on floppy"
+msgstr "Захаванне на дыскету"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Load from floppy"
+msgstr "Аднаўленне з дыскеты"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"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"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
+"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:876
-#, fuzzy
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr ""
+"Ваша сiстэма не мае дастакова месца для ўсталявання цi абнаўлення (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:881
-msgid "Choose a mirror from which to get the packages"
-msgstr "Выбар люстра для атрымання пакетаў"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Пошук пакетаў для абнаўлення"
-#: ../../install_steps_interactive.pm_.c:890
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Looking at packages already installed..."
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
-#: ../../install_steps_interactive.pm_.c:918
-msgid "Which is your timezone?"
-msgstr "Якi ваш часавы пояс?"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Прагляд даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:923
-#, fuzzy
-msgid "Hardware clock set to GMT"
-msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Прагляд даступных пакетаў"
-#: ../../install_steps_interactive.pm_.c:924
-msgid "Automatic time synchronization (using NTP)"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
+"Не хапае месца ў буферы падкачкi (swap) для ўсталявання, павялiчце яго."
-#: ../../install_steps_interactive.pm_.c:931
-#, fuzzy
-msgid "NTP Server"
-msgstr "NIS сервер:"
+#: ../../install_steps_interactive.pm:1
+#, 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:965
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Remote CUPS server"
-msgstr "Аддалены сервер CUPS"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Праверыць на наяўнасць дрэнных блокаў?"
-#: ../../install_steps_interactive.pm_.c:966
-#, fuzzy
-msgid "No printer"
-msgstr "Iмя друкаркi"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Выбар раздзелаў для фарматавання"
-#: ../../install_steps_interactive.pm_.c:982
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Цi ёсць у вас iншы?"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Каб мадыфiкацыя таблiцы раздзелаў здейснiлася, патрэбна перазагрузка."
-#: ../../install_steps_interactive.pm_.c:984
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+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:986
-msgid "No sound card detected. Try \"harddrake\" after installation"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the mount points"
+msgstr "Абярыце пункты манцiравання"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
-msgid "Summary"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "няма даступных раздзелаў"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring IDE"
+msgstr "Настройка IDE"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring PCMCIA cards..."
+msgstr "Настройка карт PCMCIA ..."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:994
-#, fuzzy
-msgid "Mouse"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 2 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Buttons emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose which serial port your mouse is connected to."
+msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Mouse Port"
msgstr "Порт мышы"
-#: ../../install_steps_interactive.pm_.c:996
-msgid "Timezone"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your type of mouse."
+msgstr "калi ласка, пазначце тып вашай мышы."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:997
-#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
-msgid "Printer"
-msgstr "Прынтэр"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Раздзел %s"
-#: ../../install_steps_interactive.pm_.c:999
-#, fuzzy
-msgid "ISDN card"
-msgstr "Унутраная ISDN карта"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Абярыце ўсталяванне цi абнаўленне"
-#: ../../install_steps_interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:1009
-#, fuzzy
-msgid "Sound card"
-msgstr "Стандартны"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Усталёўка"
-#: ../../install_steps_interactive.pm_.c:1012
-msgid "TV card"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1055
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1084
-msgid "LDAP"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Калi ласка, абярыце тып клавiятуры."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "License agreement"
+msgstr "Ліцэнзійная дамова"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "default:LTR"
+msgstr "Па дамаўленню"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "An error occurred"
+msgstr "Адбылася памылка"
+
+#: ../../install_steps_newt.pm:1
+#, c-format
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
+" <Tab>/<Alt-Tab> памiж элементамi | <Space> выбар | <F12> наступны экран "
-#: ../../install_steps_interactive.pm_.c:1056
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1093
-#, fuzzy
-msgid "NIS"
-msgstr "Выкарыстоўваць NIS"
+#: ../../install_steps_newt.pm:1
+#, c-format
+msgid "Mandrake Linux Installation %s"
+msgstr "Усталяванне Mandrake Linux %s"
-#: ../../install_steps_interactive.pm_.c:1057
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1107
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Навуковыя прыкладанні"
+#: ../../install_steps.pm:1
+#, c-format
+msgid "No floppy drive available"
+msgstr "Дыскавод недаступны"
-#: ../../install_steps_interactive.pm_.c:1058
-#: ../../install_steps_interactive.pm_.c:1080
-#, fuzzy
-msgid "Local files"
-msgstr "Лакальны прынтэр"
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Welcome to %s"
+msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Пароль для root"
+#: ../../install_steps.pm:1
+#, c-format
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
+"\"\n"
+msgstr ""
+"Некаторыя важныя пакеты не былi ўсталяваны карэктна.\n"
+"Другi ваш cdrom дыск цi ваш cdrom маюць дэфекты.\n"
+"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl Mandrake/RPMS/*."
+"rpm\"\n"
-#: ../../install_steps_interactive.pm_.c:1069
-msgid "No password"
-msgstr "Няма паролю"
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Дубляванне пункту манцiравання %s"
-#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps.pm:1
#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
+"Узнiкла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
+"таму працягвайце на сваю рызыку."
-#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
-#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
-msgid "Authentication"
-msgstr "Аўтэнтыфiкацыя"
+#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Please wait"
+msgstr "Калi ласка, пачакайце"
-#: ../../install_steps_interactive.pm_.c:1088
-#, fuzzy
-msgid "Authentication LDAP"
-msgstr "Аўтэнтыфiкацыя"
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
+#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
+#, c-format
+msgid "Ok"
+msgstr "Ок"
-#: ../../install_steps_interactive.pm_.c:1089
-msgid "LDAP Base dn"
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive/newt.pm:1
+#, fuzzy, c-format
+msgid "Finish"
+msgstr "Фiнскi"
+
+#: ../../interactive.pm:1 ../../standalone/draksec:1
+#, c-format
+msgid "Basic"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
-#, fuzzy
-msgid "LDAP Server"
-msgstr "сервер"
+#: ../../interactive.pm:1
+#, c-format
+msgid "Advanced"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096
-#, fuzzy
-msgid "Authentication NIS"
-msgstr "Аўтэнтыфiкацыя NIS"
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, fuzzy, c-format
+msgid "Remove"
+msgstr "Аддалены прынтэр"
-#: ../../install_steps_interactive.pm_.c:1097
-msgid "NIS Domain"
-msgstr "NIS Domain"
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, fuzzy, c-format
+msgid "Modify"
+msgstr "Змянiць RAID"
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "NIS Server"
-msgstr "NIS сервер:"
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "Add"
+msgstr "Дадаць"
+
+#: ../../interactive.pm:1
+#, fuzzy, c-format
+msgid "Choose a file"
+msgstr "Абярыце дзеянне"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../keyboard.pm:1
+#, c-format
msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
-#, fuzzy
-msgid "Authentication Windows Domain"
-msgstr "Аўтэнтыфiкацыя"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1108
-#, fuzzy
-msgid "Domain Admin User Name"
-msgstr "Iмя дамену"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1109
-#, fuzzy
-msgid "Domain Admin Password"
-msgstr "Падцвердзiць пароль"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1144
-msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-"З дапамогай загрузачнага дыска вы зможаце загружаць Linux незалежна ад\n"
-" стандартнага загрузчыка. Гэта можа быць якасна, калi вы не жадаеце \n"
-"ўсталёўваць SILO, калi iншая аперацыйная сiстэма выдаляе SILO, цi SILO не \n"
-"можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама можа быць \n"
-"выкарыстан сумесна з выратавальнай дыскетай Mandrake Linux, якая вельмi \n"
-"палегчыць выратаванне сiстэмы пасля збою.\n"
-"\n"
-"Калi жадаеце стварыць загрузачны дыск зараз, устаўце дыскету ў першы\n"
-"дыскавод i нацiснiце \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "First floppy drive"
-msgstr "Першы дыскавод"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ctrl and Alt keys simultaneously"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1161
-msgid "Second floppy drive"
-msgstr "Другi дыскавод"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "CapsLock key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1162
-#: ../../printer/printerdrake.pm_.c:2397
-msgid "Skip"
-msgstr "Прапусцiць"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Control and Shift keys simultaneously"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1167
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
+msgid "Both Shift keys simultaneously"
msgstr ""
-"З дапамогай загрузачнага дыску вы зможаце загружаць Linux таксама як i \n"
-"стандартным загрузчыкам. Гэта можа быць якасна, калi вы не жадаеце \n"
-"ўсталёўваць LILO (цi Grub), калi iншая аперацыйная сiстэма выдаляе LILO,\n"
-"цi LILO не можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама "
-"можа\n"
-"быць выкарыстаны сумесна з рамонтнай дыскетай Mandrake Linux, якая вельмi \n"
-"палегчыць выратаванне сiстэмы пасля збою.\n"
-"\n"
-"Жадаеце стварыць загрузачны дыск зараз?\n"
-"%s"
-#: ../../install_steps_interactive.pm_.c:1173
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right Alt key"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Sorry, no floppy drive available"
-msgstr "Выбачайце, але дыскавод недаступны"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Yugoslavian (latin)"
+msgstr "Азербайджанскі (latin)"
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Вьетнамскi \"нумар радка\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard (international)"
+msgstr "US клавiятура (мiжнародная)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard"
+msgstr "US клавiятура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "UK keyboard"
+msgstr "UK клавiятура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ukrainian"
+msgstr "Украiнскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Турэцкi (сучасная \"Q\" мадэль)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Турэцкi (традыцыёная \"F\" мадэль)"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgid "Tajik keyboard"
+msgstr "Тайская клавiятура"
-#: ../../install_steps_interactive.pm_.c:1192
-msgid "Creating bootdisk..."
-msgstr "Стварэнне загрузачнай дыскеты"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Thai keyboard"
+msgstr "Тайская клавiятура"
-#: ../../install_steps_interactive.pm_.c:1199
-msgid "Preparing bootloader..."
-msgstr "Падрыхтоўка загрузчыка"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Tamil (Typewriter-layout)"
+msgstr "Армянскi (typewriter)"
-#: ../../install_steps_interactive.pm_.c:1210
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tamil (ISCII-layout)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1216
-msgid "Do you want to use aboot?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Serbian (cyrillic)"
+msgstr "Азербайджанскі (кірыліца)"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTY)"
+msgstr "Славацкi (QWERTY)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTZ)"
+msgstr "Славацкi (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovenian"
+msgstr "Славенскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swedish"
+msgstr "Швецкi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian (Yawerty)"
+msgstr "Рускi (Я-В-Е-Р-Т-И)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian"
+msgstr "Рускi"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Romanian (qwerty)"
+msgstr "Рускi (Я-В-Е-Р-Т-И)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Romanian (qwertz)"
+msgstr "Рускi (Я-В-Е-Р-Т-И)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Canadian (Quebec)"
+msgstr "Канадскi (Квебэк)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Portuguese"
+msgstr "Партугальскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwertz layout)"
+msgstr "Польскi (qwertz раскладка)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwerty layout)"
+msgstr "Польскi (стандартная раскладка)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Norwegian"
+msgstr "Нарвежскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dutch"
+msgstr "Галандскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (US)"
msgstr ""
-"Памылка ўсталявання аboot, \n"
-"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
-#: ../../install_steps_interactive.pm_.c:1226
-#, fuzzy
-msgid "Installing bootloader"
-msgstr "Усталяванне загрузчыку"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (UK)"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Mongolian (cyrillic)"
+msgstr "Азербайджанскі (кірыліца)"
-#: ../../install_steps_interactive.pm_.c:1240
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
+msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1274
-#: ../../standalone/drakautoinst_.c:76
+#: ../../keyboard.pm:1
#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Устаўце дыскету ў дыскавод %s"
+msgid "Macedonian"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1278
-msgid "Creating auto install floppy..."
-msgstr "Стварэнне дыскеты для ўсталявання"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Malayalam"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1289
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Latvian"
+msgstr "Размеркаванне"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Лiтоўскi \"фанетычны\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Лiтоўскi \"нумар радка\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (new)"
+msgstr "Лiтоўскi AZERTY (новы)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (old)"
+msgstr "Лiтоўскi AZERTY (стары)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Laotian"
+msgstr "Размеркаванне"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Latin American"
+msgstr "Лацiна-Амерыканскi"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Korean keyboard"
+msgstr "UK клавiятура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Japanese 106 keys"
+msgstr "Японскi 106 клавiш"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Inuktitut"
msgstr ""
-"Некаторыя крокi не завершаны.\n"
-"Вы сапраўды жадаеце выйсцi зараз?"
-#: ../../install_steps_interactive.pm_.c:1300
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+msgid "Italian"
+msgstr "Iтальянскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Icelandic"
+msgstr "Iсландскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Iranian"
+msgstr "Iранскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli (Phonetic)"
+msgstr "Iўрыт (фанетычны)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli"
+msgstr "Iўрыт"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Croatian"
+msgstr "Харвацкi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Hungarian"
+msgstr "Мадьярскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gurmukhi"
msgstr ""
-"Вiншуем, усталяванне завершана.\n"
-"Выдалiце загрузачны дыск i нацiснiце enter для перазагрузкi.\n"
-"\n"
-"\n"
-"За iнфармацыяй пра змяненнi дадзенага выпуску Mandrake Linux,\n"
-"звяртайцесь на \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
-"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1313
-msgid "http://www.mandrakelinux.com/en/90errata.php3"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gujarati"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1318
-#, fuzzy
-msgid "Generate auto install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Greek"
+msgstr "Грэчаскi"
-#: ../../install_steps_interactive.pm_.c:1320
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Грузiнскi (\"Лацiнская\" раскладка)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Грузiнскi (\"Руская\" раскладка)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "French"
+msgstr "Французскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Finnish"
+msgstr "Фiнскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Spanish"
+msgstr "Iспанскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Estonian"
+msgstr "Эстонскi"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Нарвежскi)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Danish"
+msgstr "Дацкi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Devanagari"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Automated"
-msgstr "Аўтаматычны"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German (no dead keys)"
+msgstr "Нямецкi (няма заблакiраваных клавiш)"
-#: ../../install_steps_interactive.pm_.c:1325
-#, fuzzy
-msgid "Replay"
-msgstr "Перазагрузiць"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German"
+msgstr "Нямецкi"
-#: ../../install_steps_interactive.pm_.c:1328
-#, fuzzy
-msgid "Save packages selection"
-msgstr "Асабiсты выбар пакетаў"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTY)"
+msgstr "Чешскi (QWERTY)"
-#: ../../install_steps_newt.pm_.c:20
+#: ../../keyboard.pm:1
#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Усталяванне Mandrake Linux %s"
+msgid "Czech (QWERTZ)"
+msgstr "Чешскi (QWERTZ)"
-#. -PO This string must fit in a 80-char wide text screen
-#: ../../install_steps_newt.pm_.c:33
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (French layout)"
+msgstr "Швейцарскi (Французская раскладка)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (German layout)"
+msgstr "Швейцарскi (Нямецкая раскладка)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belarusian"
+msgstr "Беларускі"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bosnian"
+msgstr "Эстонскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Brazilian (ABNT-2)"
+msgstr "Бразiльскi (ABNT-2)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (BDS)"
+msgstr "Балгарскi"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (phonetic)"
+msgstr "Армянскi (фанетычны)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bengali"
+msgstr "Таблiца"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belgian"
+msgstr "Бельгiйскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Azerbaidjani (latin)"
+msgstr "Азербайджанскі (latin)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (phonetic)"
+msgstr "Армянскi (фанетычны)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (typewriter)"
+msgstr "Армянскi (typewriter)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (old)"
+msgstr "Армянскi (стары)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Albanian"
+msgstr "Iранскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish"
+msgstr "Польскi"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak"
+msgstr "Dvorak"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Zimbabwe"
+msgstr "можа быць"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Zambia"
msgstr ""
-" <Tab>/<Alt-Tab> памiж элементамi | <Space> выбар | <F12> наступны экран "
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "South Africa"
msgstr ""
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Serbia"
+msgstr "паслядоўная"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mayotte"
msgstr ""
-#: ../../interactive.pm_.c:152
-#, fuzzy
-msgid "Choose a file"
-msgstr "Абярыце дзеянне"
+#: ../../lang.pm:1
+#, c-format
+msgid "Yemen"
+msgstr ""
-#: ../../interactive.pm_.c:318
-msgid "Advanced"
+#: ../../lang.pm:1
+#, c-format
+msgid "Samoa"
msgstr ""
-#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
-msgid "Basic"
+#: ../../lang.pm:1
+#, c-format
+msgid "Wallis and Futuna"
msgstr ""
-#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
-#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
-msgid "<- Previous"
+#: ../../lang.pm:1
+#, c-format
+msgid "Vanuatu"
msgstr ""
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
-#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
-#, fuzzy
-msgid "Next"
-msgstr "Тэкст"
+#: ../../lang.pm:1
+#, c-format
+msgid "Vietnam"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
-msgid "Bad choice, try again\n"
-msgstr "Дрэнны выбар, паспрабуйце яшче\n"
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (U.S.)"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
+#: ../../lang.pm:1
#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Ваш выбар? (змоўчанне %s) "
+msgid "Virgin Islands (British)"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:54
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+msgid "Venezuela"
msgstr ""
-#: ../../interactive/stdio.pm_.c:70
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#: ../../lang.pm:1
#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Ваш выбар? (змоўчанне %s) "
+msgid "Vatican"
+msgstr "Размеркаванне"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uzbekistan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uruguay"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:95
+#: ../../lang.pm:1
+#, c-format
+msgid "United States Minor Outlying Islands"
+msgstr ""
+
+#: ../../lang.pm:1
#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Опцыi: %s"
+msgid "Uganda"
+msgstr "Адкат"
-#: ../../interactive/stdio.pm_.c:96
-#, fuzzy
-msgid "Do you want to click on this button?"
-msgstr "Вы жадаеце выкарыстоўваць aboot?"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Ukraine"
+msgstr "Украiнскi"
-#: ../../interactive/stdio.pm_.c:105
-msgid " enter `void' for void entry"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tanzania"
msgstr ""
-#: ../../interactive/stdio.pm_.c:105
+#: ../../lang.pm:1
#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Ваш выбар? (змоўчанне %s) "
+msgid "Taiwan"
+msgstr "Размеркаванне"
-#: ../../interactive/stdio.pm_.c:123
+#: ../../lang.pm:1
#, c-format
-msgid "=> There are many things to choose from (%s).\n"
+msgid "Tuvalu"
msgstr ""
-#: ../../interactive/stdio.pm_.c:126
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+#: ../../lang.pm:1
+#, c-format
+msgid "Trinidad and Tobago"
msgstr ""
-#: ../../interactive/stdio.pm_.c:139
+#: ../../lang.pm:1
#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+msgid "Turkey"
msgstr ""
-#: ../../interactive/stdio.pm_.c:146
-msgid "Re-submit"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tonga"
msgstr ""
-#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
-msgid "Czech (QWERTZ)"
-msgstr "Чешскi (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tunisia"
+msgstr ""
-#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
-msgid "German"
-msgstr "Нямецкi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkmenistan"
+msgstr ""
-#: ../../keyboard.pm_.c:155
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../lang.pm:1
+#, c-format
+msgid "East Timor"
+msgstr ""
-#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
-msgid "Spanish"
-msgstr "Iспанскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tokelau"
+msgstr ""
-#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
-msgid "Finnish"
-msgstr "Фiнскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tajikistan"
+msgstr ""
-#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
-msgid "French"
-msgstr "Французскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Thailand"
+msgstr ""
-#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
-msgid "Norwegian"
-msgstr "Нарвежскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Togo"
+msgstr ""
-#: ../../keyboard.pm_.c:160
-msgid "Polish"
-msgstr "Польскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "French Southern Territories"
+msgstr ""
-#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
-msgid "Russian"
+#: ../../lang.pm:1
+#, c-format
+msgid "Chad"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Swaziland"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Syria"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "El Salvador"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Suriname"
+msgstr "Iмя для размеркаванага рэсурсу"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Somalia"
+msgstr "NIS Domain"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Senegal"
+msgstr "Таблiца"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "San Marino"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sierra Leone"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Slovakia"
+msgstr "Славенскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Svalbard and Jan Mayen Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Slovenia"
+msgstr "Славенскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Helena"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Singapore"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Sudan"
+msgstr "SunOS"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Seychelles"
+msgstr "Абалонка:"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Solomon Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saudi Arabia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Rwanda"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Russia"
msgstr "Рускi"
-#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
-msgid "Swedish"
-msgstr "Швецкi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Romania"
+msgstr "NIS Domain"
-#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
-msgid "UK keyboard"
-msgstr "UK клавiятура"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Reunion"
+msgstr "Памеры экрану"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
-msgid "US keyboard"
-msgstr "US клавiятура"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Qatar"
+msgstr "Стартавае меню"
-#: ../../keyboard.pm_.c:167
-#, fuzzy
-msgid "Albanian"
-msgstr "Iранскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Palau"
+msgstr ""
-#: ../../keyboard.pm_.c:168
-msgid "Armenian (old)"
-msgstr "Армянскi (стары)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Paraguay"
+msgstr ""
-#: ../../keyboard.pm_.c:169
-msgid "Armenian (typewriter)"
-msgstr "Армянскi (typewriter)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Portugal"
+msgstr "Порт"
-#: ../../keyboard.pm_.c:170
-msgid "Armenian (phonetic)"
-msgstr "Армянскi (фанетычны)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Palestine"
+msgstr "Асабiсты выбар пакетаў"
-#: ../../keyboard.pm_.c:175
-msgid "Azerbaidjani (latin)"
-msgstr "Азербайджанскі (latin)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Puerto Rico"
+msgstr ""
-#: ../../keyboard.pm_.c:177
-msgid "Belgian"
-msgstr "Бельгiйскi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Pitcairn"
+msgstr "Прынтэр"
-#: ../../keyboard.pm_.c:178
-#, fuzzy
-msgid "Bengali"
-msgstr "Таблiца"
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Pierre and Miquelon"
+msgstr ""
-#: ../../keyboard.pm_.c:179
-#, fuzzy
-msgid "Bulgarian (phonetic)"
-msgstr "Армянскi (фанетычны)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Poland"
+msgstr "Iсландскi"
-#: ../../keyboard.pm_.c:180
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Балгарскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Pakistan"
+msgstr ""
-#: ../../keyboard.pm_.c:181
-msgid "Brazilian (ABNT-2)"
-msgstr "Бразiльскi (ABNT-2)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Philippines"
+msgstr ""
-#: ../../keyboard.pm_.c:184
-#, fuzzy
-msgid "Bosnian"
-msgstr "Эстонскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Papua New Guinea"
+msgstr ""
-#: ../../keyboard.pm_.c:185
-msgid "Belarusian"
-msgstr "Беларускі"
+#: ../../lang.pm:1
+#, c-format
+msgid "French Polynesia"
+msgstr ""
-#: ../../keyboard.pm_.c:186
-msgid "Swiss (German layout)"
-msgstr "Швейцарскi (Нямецкая раскладка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Peru"
+msgstr ""
-#: ../../keyboard.pm_.c:187
-msgid "Swiss (French layout)"
-msgstr "Швейцарскi (Французская раскладка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Panama"
+msgstr ""
-#: ../../keyboard.pm_.c:189
-msgid "Czech (QWERTY)"
-msgstr "Чешскi (QWERTY)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Oman"
+msgstr "NIS Domain"
-#: ../../keyboard.pm_.c:191
-msgid "German (no dead keys)"
-msgstr "Нямецкi (няма заблакiраваных клавiш)"
+#: ../../lang.pm:1
+#, c-format
+msgid "New Zealand"
+msgstr ""
-#: ../../keyboard.pm_.c:192
-msgid "Devanagari"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Niue"
+msgstr "гальштук"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nauru"
msgstr ""
-#: ../../keyboard.pm_.c:193
-msgid "Danish"
-msgstr "Дацкi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Nepal"
+msgstr ""
-#: ../../keyboard.pm_.c:194
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Nicaragua"
+msgstr ""
-#: ../../keyboard.pm_.c:195
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (Нарвежскi)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Nigeria"
+msgstr "паслядоўная"
-#: ../../keyboard.pm_.c:196
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (US)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Norfolk Island"
+msgstr ""
-#: ../../keyboard.pm_.c:197
-msgid "Estonian"
-msgstr "Эстонскi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Niger"
+msgstr "Высокi"
-#: ../../keyboard.pm_.c:201
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Грузiнскi (\"Руская\" раскладка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "New Caledonia"
+msgstr ""
-#: ../../keyboard.pm_.c:202
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Грузiнскi (\"Лацiнская\" раскладка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Namibia"
+msgstr ""
-#: ../../keyboard.pm_.c:203
-msgid "Greek"
-msgstr "Грэчаскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Mozambique"
+msgstr ""
-#: ../../keyboard.pm_.c:204
-msgid "Gujarati"
+#: ../../lang.pm:1
+#, c-format
+msgid "Malaysia"
msgstr ""
-#: ../../keyboard.pm_.c:205
-msgid "Gurmukhi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Mexico"
+msgstr "Порт мышы"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malawi"
msgstr ""
-#: ../../keyboard.pm_.c:206
-msgid "Hungarian"
+#: ../../lang.pm:1
+#, c-format
+msgid "Maldives"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritius"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malta"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Montserrat"
+msgstr "Порт мышы"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritania"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Martinique"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Northern Mariana Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mongolia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Myanmar"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mali"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Macedonia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Marshall Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Madagascar"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Moldova"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Monaco"
+msgstr "Манiтор"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Morocco"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Libya"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Latvia"
+msgstr "Размеркаванне"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Luxembourg"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lithuania"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lesotho"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Liberia"
+msgstr "паслядоўная"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sri Lanka"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liechtenstein"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Lucia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lebanon"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Laos"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kazakhstan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cayman Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Kuwait"
+msgstr "Выхад"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Korea"
+msgstr "Перанос"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Korea (North)"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Comoros"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kiribati"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cambodia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kyrgyzstan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Kenya"
+msgstr "Клавiятура"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Japan"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Jordan"
+msgstr "Iранскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jamaica"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Iceland"
+msgstr "Iсландскi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Iran"
+msgstr "Iранскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iraq"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "British Indian Ocean Territory"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "India"
+msgstr "Iранскi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Israel"
+msgstr "Iўрыт"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Ireland"
+msgstr "Iсландскi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Indonesia"
+msgstr "няма"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Hungary"
msgstr "Мадьярскi"
-#: ../../keyboard.pm_.c:207
-msgid "Croatian"
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Croatia"
msgstr "Харвацкi"
-#: ../../keyboard.pm_.c:208
-msgid "Israeli"
-msgstr "Iўрыт"
+#: ../../lang.pm:1
+#, c-format
+msgid "Honduras"
+msgstr ""
-#: ../../keyboard.pm_.c:209
-msgid "Israeli (Phonetic)"
-msgstr "Iўрыт (фанетычны)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Heard and McDonald Islands"
+msgstr ""
-#: ../../keyboard.pm_.c:210
-msgid "Iranian"
-msgstr "Iранскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Hong Kong"
+msgstr ""
-#: ../../keyboard.pm_.c:211
-msgid "Icelandic"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea-Bissau"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guam"
+msgstr "Забавы"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guatemala"
+msgstr "Шлюз"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "South Georgia and the South Sandwich Islands"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Equatorial Guinea"
+msgstr ""
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guadeloupe"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Guinea"
+msgstr "Агульны"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gambia"
+msgstr ""
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greenland"
msgstr "Iсландскi"
-#: ../../keyboard.pm_.c:212
-msgid "Italian"
-msgstr "Iтальянскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gibraltar"
+msgstr ""
-#: ../../keyboard.pm_.c:213
-msgid "Inuktitut"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ghana"
msgstr ""
-#: ../../keyboard.pm_.c:214
-msgid "Japanese 106 keys"
-msgstr "Японскi 106 клавiш"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "French Guiana"
+msgstr "Французскi"
-#: ../../keyboard.pm_.c:217
-#, fuzzy
-msgid "Korean keyboard"
-msgstr "UK клавiятура"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Georgia"
+msgstr "Нарвежскi"
-#: ../../keyboard.pm_.c:218
-msgid "Latin American"
-msgstr "Лацiна-Амерыканскi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Grenada"
+msgstr ""
-#: ../../keyboard.pm_.c:219
-#, fuzzy
-msgid "Laotian"
-msgstr "Размеркаванне"
+#: ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "United Kingdom"
+msgstr ""
-#: ../../keyboard.pm_.c:220
-msgid "Lithuanian AZERTY (old)"
-msgstr "Лiтоўскi AZERTY (стары)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gabon"
+msgstr ""
-#: ../../keyboard.pm_.c:222
-msgid "Lithuanian AZERTY (new)"
-msgstr "Лiтоўскi AZERTY (новы)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Faroe Islands"
+msgstr "Iсландскi"
-#: ../../keyboard.pm_.c:223
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Лiтоўскi \"нумар радка\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Micronesia"
+msgstr ""
-#: ../../keyboard.pm_.c:224
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Лiтоўскi \"фанетычны\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Falkland Islands (Malvinas)"
+msgstr ""
-#: ../../keyboard.pm_.c:225
-#, fuzzy
-msgid "Latvian"
-msgstr "Размеркаванне"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Fiji"
+msgstr "Фiнскi"
-#: ../../keyboard.pm_.c:226
-msgid "Malayalam"
+#: ../../lang.pm:1
+#, c-format
+msgid "Finland"
msgstr ""
-#: ../../keyboard.pm_.c:227
-msgid "Macedonian"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Ethiopia"
+msgstr "Эстонскi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Spain"
+msgstr "Iспанскi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Eritrea"
+msgstr "Эксперт"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
msgstr ""
-#: ../../keyboard.pm_.c:228
-msgid "Myanmar (Burmese)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Egypt"
+msgstr "Пуста"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Estonia"
+msgstr "Эстонскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ecuador"
msgstr ""
-#: ../../keyboard.pm_.c:229
-#, fuzzy
-msgid "Mongolian (cyrillic)"
-msgstr "Азербайджанскі (кірыліца)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Algeria"
+msgstr "паслядоўная"
-#: ../../keyboard.pm_.c:230
-msgid "Maltese (UK)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
msgstr ""
-#: ../../keyboard.pm_.c:231
-msgid "Maltese (US)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Dominica"
+msgstr "NIS Domain"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Denmark"
msgstr ""
-#: ../../keyboard.pm_.c:232
-msgid "Dutch"
-msgstr "Галандскi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Djibouti"
+msgstr "Адмянiць"
-#: ../../keyboard.pm_.c:234
-msgid "Polish (qwerty layout)"
-msgstr "Польскi (стандартная раскладка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cyprus"
+msgstr ""
-#: ../../keyboard.pm_.c:235
-msgid "Polish (qwertz layout)"
-msgstr "Польскi (qwertz раскладка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Christmas Island"
+msgstr ""
-#: ../../keyboard.pm_.c:236
-msgid "Portuguese"
-msgstr "Партугальскi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Cape Verde"
+msgstr "Згарнуць дрэва"
-#: ../../keyboard.pm_.c:237
-msgid "Canadian (Quebec)"
-msgstr "Канадскi (Квебэк)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cuba"
+msgstr ""
-#: ../../keyboard.pm_.c:239
-#, fuzzy
-msgid "Romanian (qwertz)"
-msgstr "Рускi (Я-В-Е-Р-Т-И)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Colombia"
+msgstr ""
-#: ../../keyboard.pm_.c:240
-#, fuzzy
-msgid "Romanian (qwerty)"
-msgstr "Рускi (Я-В-Е-Р-Т-И)"
+#: ../../lang.pm:1
+#, c-format
+msgid "China"
+msgstr ""
-#: ../../keyboard.pm_.c:242
-msgid "Russian (Yawerty)"
-msgstr "Рускi (Я-В-Е-Р-Т-И)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cameroon"
+msgstr ""
-#: ../../keyboard.pm_.c:244
-msgid "Slovenian"
-msgstr "Славенскi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Chile"
+msgstr "Порт мышы"
-#: ../../keyboard.pm_.c:245
-msgid "Slovakian (QWERTZ)"
-msgstr "Славацкi (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr ""
-#: ../../keyboard.pm_.c:246
-msgid "Slovakian (QWERTY)"
-msgstr "Славацкi (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr ""
-#: ../../keyboard.pm_.c:248
-#, fuzzy
-msgid "Serbian (cyrillic)"
-msgstr "Азербайджанскі (кірыліца)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Switzerland"
+msgstr ""
-#: ../../keyboard.pm_.c:250
-#, fuzzy
-msgid "Tamil (Unicode)"
-msgstr "i18n (добра)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Brazzaville)"
+msgstr ""
-#: ../../keyboard.pm_.c:251
-msgid "Tamil (TSCII)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Central African Republic"
msgstr ""
-#: ../../keyboard.pm_.c:252
-msgid "Thai keyboard"
-msgstr "Тайская клавiятура"
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Kinshasa)"
+msgstr ""
-#: ../../keyboard.pm_.c:254
-#, fuzzy
-msgid "Tajik keyboard"
-msgstr "Тайская клавiятура"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cocos (Keeling) Islands"
+msgstr ""
-#: ../../keyboard.pm_.c:255
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Турэцкi (традыцыёная \"F\" мадэль)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Canada"
+msgstr "Канадскi (Квебэк)"
-#: ../../keyboard.pm_.c:256
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Турэцкi (сучасная \"Q\" мадэль)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Belize"
+msgstr "Змяненне памераў"
-#: ../../keyboard.pm_.c:258
-msgid "Ukrainian"
-msgstr "Украiнскi"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Belarus"
+msgstr "Беларускі"
-#: ../../keyboard.pm_.c:261
-msgid "US keyboard (international)"
-msgstr "US клавiятура (мiжнародная)"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Botswana"
+msgstr "Эстонскi"
-#: ../../keyboard.pm_.c:262
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Вьетнамскi \"нумар радка\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bouvet Island"
+msgstr ""
-#: ../../keyboard.pm_.c:263
-#, fuzzy
-msgid "Yugoslavian (latin)"
-msgstr "Азербайджанскі (latin)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bhutan"
+msgstr ""
-#: ../../keyboard.pm_.c:270
-msgid "Right Alt key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahamas"
msgstr ""
-#: ../../keyboard.pm_.c:271
-msgid "Both Shift keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Brazil"
msgstr ""
-#: ../../keyboard.pm_.c:272
-msgid "Control and Shift keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bolivia"
msgstr ""
-#: ../../keyboard.pm_.c:273
-msgid "CapsLock key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Brunei Darussalam"
msgstr ""
-#: ../../keyboard.pm_.c:274
-msgid "Ctrl and Alt keys simultaneously"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Bermuda"
+msgstr "Нямецкi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Benin"
+msgstr "Бельгiйскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
msgstr ""
-#: ../../keyboard.pm_.c:275
-msgid "Alt and Shift keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahrain"
msgstr ""
-#: ../../keyboard.pm_.c:276
-msgid "\"Menu\" key"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Bulgaria"
+msgstr "Мадьярскi"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burkina Faso"
msgstr ""
-#: ../../keyboard.pm_.c:277
-msgid "Left \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Bangladesh"
msgstr ""
-#: ../../keyboard.pm_.c:278
-msgid "Right \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
msgstr ""
-#: ../../loopback.pm_.c:32
+#: ../../lang.pm:1
#, c-format
-msgid "Circular mounts %s\n"
-msgstr "Манцiраванне дыску %s\n"
+msgid "Bosnia and Herzegovina"
+msgstr ""
-#: ../../lvm.pm_.c:103
-msgid "Remove the logical volumes first\n"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Azerbaijan"
+msgstr "Iранскi"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Aruba"
+msgstr "Grub"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Australia"
+msgstr "паслядоўная"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "American Samoa"
msgstr ""
-#: ../../modules.pm_.c:290
-msgid ""
-"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Argentina"
msgstr ""
-#: ../../modules/interactive.pm_.c:16
-msgid "You can configure each parameter of the module here."
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
msgstr ""
-#: ../../modules/parameters.pm_.c:18
-#, fuzzy
-msgid "modinfo is not available"
-msgstr "Дыскавод недаступны"
+#: ../../lang.pm:1
+#, c-format
+msgid "Angola"
+msgstr ""
-#: ../../modules/parameters.pm_.c:50
-#, fuzzy
-msgid "a number"
-msgstr "Нумар тэлефону"
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
+msgstr ""
-#: ../../modules/parameters.pm_.c:52
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Armenia"
+msgstr "Армянскi (стары)"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Albania"
+msgstr "Iранскi"
+
+#: ../../lang.pm:1
#, c-format
-msgid "%d comma separated numbers"
+msgid "Anguilla"
msgstr ""
-#: ../../modules/parameters.pm_.c:52
+#: ../../lang.pm:1
#, c-format
-msgid "%d comma separated strings"
+msgid "Antigua and Barbuda"
msgstr ""
-#: ../../modules/parameters.pm_.c:54
-msgid "comma separated numbers"
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
msgstr ""
-#: ../../modules/parameters.pm_.c:54
-#, fuzzy
-msgid "comma separated strings"
-msgstr "Фарматаванне раздзелаў"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Andorra"
+msgstr "Адкат"
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Мыш"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Afghanistan"
+msgstr "Iранскi"
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../loopback.pm:1
+#, c-format
+msgid "Circular mounts %s\n"
+msgstr "Манцiраванне дыску %s\n"
-#: ../../mouse.pm_.c:33
-#, fuzzy
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Звычайная мыш з 2 кнопкамі"
+#: ../../lvm.pm:1
+#, c-format
+msgid "Remove the logical volumes first\n"
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
+#: ../../modules.pm:1
+#, c-format
+msgid ""
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgstr ""
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MOVE YOUR WHEEL!"
+msgstr "Рушце колам мышы!"
+
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "To activate the mouse,"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Please test the mouse"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "Няма мышы"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "none"
+msgstr "няма"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons"
+msgstr "3 кнопкi"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "2 buttons"
+msgstr "2 кнопкi"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "1 button"
+msgstr "2 кнопкi"
+
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "busmouse"
+msgstr "Няма мышы"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
-msgid "Microsoft Explorer"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
-#, fuzzy
-msgid "1 button"
-msgstr "2 кнопкi"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Звычайная мыш з 3 кнопкамі"
-#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+#: ../../mouse.pm:1
+#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Звычайная мыш з 2 кнопкамі"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm:1
+#, c-format
+msgid "serial"
+msgstr "паслядоўная"
+
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Wheel"
msgstr "З колам"
-#: ../../mouse.pm_.c:51
-msgid "serial"
-msgstr "паслядоўная"
+#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Generic"
+msgstr "Агульны"
-#: ../../mouse.pm_.c:54
-msgid "Generic 3 Button Mouse"
-msgstr "Звычайная мыш з 3 кнопкамі"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:55
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../mouse.pm_.c:56
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Звычайная мыш з 2 кнопкамі"
-#: ../../mouse.pm_.c:57
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../mouse.pm_.c:59
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
+#: ../../mouse.pm:1 ../../security/level.pm:1
+#, c-format
+msgid "Standard"
+msgstr "Стандартны"
-#: ../../mouse.pm_.c:60
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Sun - Mouse"
+msgstr "Sun - Мыш"
-#: ../../mouse.pm_.c:62
-msgid "MM Series"
-msgstr "MM Series"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Toggle between flat and group sorted"
+msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
-#: ../../mouse.pm_.c:63
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Collapse Tree"
+msgstr "Згарнуць дрэва"
-#: ../../mouse.pm_.c:64
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Expand Tree"
+msgstr "Разгарнуць дрэва"
-#: ../../mouse.pm_.c:68
-#, fuzzy
-msgid "busmouse"
-msgstr "Няма мышы"
+#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Info"
+msgstr "Iнфармацыя"
-#: ../../mouse.pm_.c:71
-msgid "2 buttons"
-msgstr "2 кнопкi"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Is this correct?"
+msgstr "Гэта дакладна?"
-#: ../../mouse.pm_.c:72
-msgid "3 buttons"
-msgstr "3 кнопкi"
+#: ../../my_gtk.pm:1
+#, c-format
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr ""
-#: ../../mouse.pm_.c:75
-msgid "none"
-msgstr "няма"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Error writing to file %s"
+msgstr "Памылка запiсу ў файл %s"
-#: ../../mouse.pm_.c:77
-msgid "No mouse"
-msgstr "Няма мышы"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Bad backup file"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../mouse.pm_.c:490
-msgid "Please test the mouse"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Restoring from file %s failed: %s"
+msgstr "Аднаўленне з файла %s не атрымалася: %s"
-#: ../../mouse.pm_.c:491
-#, fuzzy
-msgid "To activate the mouse,"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+#: ../../partition_table.pm:1
+#, c-format
+msgid ""
+"You have a hole in your partition table but I can't use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
+msgstr ""
+"Вы маеце дзiрку ў таблiцы радзелаў, але я не маю магчымасцi яе скарыстаць.\n"
+"Адзiны выхад у тым, каб перамясцiць першасныя раздзелы так, каб дзiрка iшла\n"
+"адразу за пашыраным (extended) раздзелам"
-#: ../../mouse.pm_.c:492
-msgid "MOVE YOUR WHEEL!"
-msgstr "Рушце колам мышы!"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Extended partition not supported on this platform"
+msgstr "Пашыраны раздзел не падтрымлiваецца гэтай платформай"
-#: ../../my_gtk.pm_.c:65
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "mount failed: "
+msgstr "памылка манцiравання: "
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "maybe"
+msgstr "можа быць"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "nice"
+msgstr "добра"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "very nice"
+msgstr "вельмi добра"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "important"
+msgstr "важна"
+
+#: ../../pkgs.pm:1
+#, c-format
+msgid "must have"
+msgstr "павiнны мець"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed"
+msgstr "mkraid не працаздольны"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
+
+#: ../../raid.pm:1
+#, c-format
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Не атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Stop"
+msgstr "Сектар"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Start"
+msgstr "Стартавае меню"
+
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "On boot"
+msgstr "Yaboot"
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
-#, fuzzy
-msgid "Finish"
-msgstr "Фiнскi"
+#: ../../services.pm:1
+#, c-format
+msgid "Services and deamons"
+msgstr ""
-#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
-#: ../../ugtk2.pm_.c:435
-msgid "Next ->"
-msgstr "Далей ->"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "stopped"
+msgstr "Далучыць"
-#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
-msgid "Is this correct?"
-msgstr "Гэта дакладна?"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "running"
+msgstr "Увага!"
-#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
-msgid "Info"
-msgstr "Iнфармацыя"
+#: ../../services.pm:1
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Абярыце, якiя сервiсы запускаць аўтаматычна пры загрузцы"
-#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
-msgid "Expand Tree"
-msgstr "Разгарнуць дрэва"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Database Server"
+msgstr "Сервер друку"
-#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
-msgid "Collapse Tree"
-msgstr "Згарнуць дрэва"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Remote Administration"
+msgstr "Опцыi аддаленага прынтэру lpd"
-#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
-msgid "Toggle between flat and group sorted"
-msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
+#: ../../services.pm:1
+#, c-format
+msgid "File sharing"
+msgstr ""
-#: ../../network/adsl.pm_.c:23
-msgid "use pppoe"
-msgstr "выкарыстоўваць pppoe"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Internet"
+msgstr "цiкава"
-#: ../../network/adsl.pm_.c:24
-#, fuzzy
-msgid "use pptp"
-msgstr "выкарыстоўваць pppoe"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Printing"
+msgstr "Прынтэр"
-#: ../../network/adsl.pm_.c:25
-msgid "use dhcp"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Запускае i прыпыняе X Font Server пры загрузцы i выключэннi."
+
+#: ../../services.pm:1
+#, c-format
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../network/adsl.pm_.c:26
-msgid "Alcatel speedtouch usb"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
+"Syslog - гэта сродак, з дапамогай якога многiя дэманы запiсваюць "
+"паведамленнi\n"
+"ў розныя файлы статыстыкi. Гэта вельмi добра для агляду працы розных службаў."
-#: ../../network/adsl.pm_.c:27
-msgid "Sagem (using pppoe) usb"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the sound system on your machine"
msgstr ""
-#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Далучэнне да Iнтэрнэту"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
+msgstr ""
+"Пратакол rwho дае магчымасць карыстальнiкам атрымаць спiс ўсiх\n"
+"карыстальнiкаў, увайшоўшых на машыну, выканаў rwho дэман (падобны на finger)."
-#: ../../network/adsl.pm_.c:30
+#: ../../services.pm:1
+#, c-format
msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few ones use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
+"Пратакол rusers дазваляе карыстальнiкам сеткi вызначаць, хто\n"
+"ўвайшоў i працуе на машынах ў сетцы."
-#: ../../network/adsl.pm_.c:166
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
+"Пратакол rstat дазваляе карыстальнiкам сеткi атрымлiваць\n"
+"памеры нагрузкi для кожнай машыны сеткi."
-#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "сервер"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"Дэман маршрутызацыi дазваляе дынамiчным таблiцам IP маршрутызацыi\n"
+"аднаўляцца праз RIP пратакол. RIP выкарыстоўваецца ў малых сетках, больш\n"
+"складаныя пратаколы маршрутызацыi - у вялiкiх сетках."
-#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Iмя дамену"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
-#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "Сервер друку"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Захаваць i аднавiць сiстэмны энтрапiйны пул для высокай якасцi\n"
+"генерацыі выпадковых лікаў."
-#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "сервер"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix - гэта паштовы транспартны агент, праграма, якая\n"
+"перамяшчае пошту з адной машыны на йншую."
-#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "сеткавая карта не знойдзена"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+"Portmapper (аглядальнiк партоў) кiруе RPC злучэннямi, якiя звычайна\n"
+"выкарыстоўваюцца такiмi пратаколамi як NFS i NIS. Portmap сервер павiнен "
+"выконвацца\n"
+"на машынах якiя працуюць як серверы для пратаколаў, якiя скарыстоўваюць RPC."
-#: ../../network/drakfirewall.pm_.c:129
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
msgstr ""
+"Падтрымка PCMCIA - гэта звычайна падтрымка такiх рэчаў, як Ethernet i\n"
+"мадэмы ў наўтбуках. Вам няма неабходнасцi канфiгураваць iх, калi на вашай\n"
+"машыне iх няма, цi яна не наўтбук."
-#: ../../network/drakfirewall.pm_.c:135
+#: ../../services.pm:1
+#, c-format
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-#: ../../network/drakfirewall.pm_.c:152
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP\n"
+"сеткi. Гэтая служба ўплывае на наяўнасць сувязi памiж NFS файламi."
-#: ../../network/drakfirewall.pm_.c:153
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
msgstr ""
+"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP сеткi.\n"
+"Гэтая служба забяспечваецца NFS серверам, якi канфiгурыруеца праз\n"
+"/etc/exports файл."
-#: ../../network/drakfirewall.pm_.c:159
+#: ../../services.pm:1
#, c-format
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
+"Актывiзаваць/дэактывiзаваць усе сеткавыя iнтэрфейсы, сканфiгураваныя для\n"
+"старту пры загрузцы сiстэмы."
-#: ../../network/drakfirewall.pm_.c:167
-#, fuzzy
-msgid "Everything (no firewall)"
-msgstr "Ўсё сканфiгуравана!"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"Манцiраваць i разманцiраваць усе сеткавыя файлавыя сiстэмы (NFS),\n"
+" SMB (Lan Manager/Windows) i NCP (Netware) пункты манцiравання."
-#: ../../network/drakfirewall.pm_.c:169
-#, fuzzy
-msgid "Other ports"
-msgstr "Iншыя краiны"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) - гэта сервер даменных iмёнаў, якi выкарыстоўваецца для\n"
+"перакладання iмён вузлоў у IP адрасы."
-#: ../../network/ethernet.pm_.c:37
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcp-client"
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-"Якi dhcp клiент вы плануеце выкарыстоўваць?\n"
-"Па змоўчанню, гэта dhcp-client"
-#: ../../network/ethernet.pm_.c:88
-#, fuzzy
+#: ../../services.pm:1
+#, c-format
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
-"скарыстайце канфiгурацыйны iнструмэнт."
+"lpd - гэты дэман друку, патрэбны для карэктнай працы lpr. Гэта\n"
+"сервер, якi кiруе працай прынтэру(аў)."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
-msgid "Choose the network interface"
-msgstr "Пазначце сеткавы iнтэрфейс"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm:1
+#, c-format
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
-#: ../../network/ethernet.pm_.c:93
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
-"далучэння да iнтэрнэт"
-#: ../../network/ethernet.pm_.c:176
-msgid "no network card found"
-msgstr "сеткавая карта не знойдзена"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Гэты пакет загружае абраную раскладку клавiятуры як набор з\n"
+"/etc/sysconfig/keyboard. Ёна можа быць абрана таксама з дапамогай "
+"kbdconfig.\n"
+"Вы можаце зрабiць даступнай яе для шматлікіх машынаў."
-#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
-msgid "Configuring network"
-msgstr "Настройка сеткi"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
-#: ../../network/ethernet.pm_.c:201
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please enter your host name if you know it.\n"
-"Some DHCP servers require the hostname to work.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''."
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
msgstr ""
-"Увядзiце iмя сваёй машыны (host).\n"
-"Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
-"напрыклад ``mybox.mylab.myco.com''.\n"
-"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
+"Iнтэрнэт суперсервер-дэман (завецца inetd) запускае пры старце \n"
+"колькасць розных iнтэрнэт службаў, якiя неабходны. Яго можна выкарыстоўваць "
+"для пуску\n"
+"шматлікіх службаў, уключаючы telnet, ftp, rsh i rlogin. Блакуючы inetd, "
+"блакуем\n"
+"усе службы, за якiя ён адказвае."
-#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
-msgid "Host name"
-msgstr "Iмя машыны"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache - гэта World Wide Web сервер. Ён выкарыстоўзваеца для абслугоўвання\n"
+"HTML файлаў i CGI."
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
-#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
-#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
-#: ../../network/netconnect.pm_.c:253
-#, fuzzy
-msgid "Network Configuration Wizard"
-msgstr "Канфiгурацыя сеткi"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
-#: ../../network/isdn.pm_.c:22
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "Унутраная ISDN карта"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM дадае падтрымку мышы да праграмаў, якiя працуюць у тэкставым рэжыме,\n"
+"такiх як Midnight Commander. Гэта дазваляе выкарыстоўваць мыш пры "
+"капiраваннi i ўстаўцы,\n"
+"i ўключае падтрымку ўсплываючых (pop-up) меню ў тэкставым рэжыме."
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Унутраная ISDN карта"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"cron - стандартная UNIX праграма, якая выконвае праграмы карыстальнiка\n"
+"праз пазначаныя перыяды часу. Vixie cron дадае рад дапаўненняў да "
+"стандартнага\n"
+"UNIX cron, уключаючы лепшы ўзровень бяспекi i моцныя канфiгурацыйныя опцыi."
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Якi тып вашага ISDN злучэння?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+"Каманды, якiя выконваюцца, фiксуюцца па камандзе i часе яе выканання\n"
+"i выконваюцца групы каманд, калi загрузка памяцi нiжэй дастатковай."
-#: ../../network/isdn.pm_.c:45
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerful\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
+"apmd is used for monitoring battery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"ampd выкарыстоўваецца для адслежвання статусу батарэi i вядзення "
+"статыстыкi.\n"
+"Яго можна выкарыстоўваць для выключэння машыны пры нiзкiм зарадзе батарэi."
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "New configuration (isdn-light)"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+#: ../../services.pm:1
+#, c-format
+msgid "Anacron is a periodic command scheduler."
+msgstr "Anacron, перыядычны камандны планавальнiк."
-#: ../../network/isdn.pm_.c:54
-#, fuzzy
-msgid "Old configuration (isdn4net)"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
-#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
-#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
-#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
-msgid "ISDN Configuration"
-msgstr "Настройка ISDN"
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "Installing packages..."
+msgstr "Усталяванне пакету %s"
-#: ../../network/isdn.pm_.c:166
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"Абярыце вашага правайдара.\n"
-"калi яго няма ў гэтым спiсе, абярыце тып ``Iншы''"
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../network/isdn.pm_.c:179
-#, fuzzy
-msgid "Europe protocol (EDSS1)"
-msgstr "Еўропа (EDSS1)"
-
-#: ../../network/isdn.pm_.c:181
-#, fuzzy
-msgid "Protocol for the rest of the world"
-msgstr "Падключэнне"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
-#: ../../network/isdn.pm_.c:181
-#, fuzzy
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-"Падключэнне \n"
-" не праз D-канал (вылучаныя каналы)"
-#: ../../network/isdn.pm_.c:185
-msgid "Which protocol do you want to use?"
-msgstr "Якi пратакол вы жадаеце выкарыстоўваць?"
+#: ../../standalone.pm:1
+#, c-format
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../network/isdn.pm_.c:196
+#: ../../standalone.pm:1
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+msgid ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
-#: ../../network/isdn.pm_.c:203
-msgid "What kind of card do you have?"
-msgstr "Якi тып карты вы маеце?"
+#: ../../standalone.pm:1
+#, c-format
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "I don't know"
-msgstr "Не вядома"
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "[keyboard]"
+msgstr "Клавiятура"
-#: ../../network/isdn.pm_.c:204
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
+msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../standalone.pm:1
+#, c-format
msgid ""
+"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
"\n"
-"Калi вы маеце ISA карту, велiчынi на наступным экране павiнны быць "
-"сапраўднымi.\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
"\n"
-"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+msgstr ""
-#: ../../network/isdn.pm_.c:214
-msgid "Abort"
-msgstr "Адмянiць"
+#: ../../steps.pm:1
+#, c-format
+msgid "Exit install"
+msgstr "Заканчэнне ўсталявання"
-#: ../../network/isdn.pm_.c:214
-msgid "Continue"
-msgstr "Працягнуць"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Install system updates"
+msgstr "Усталяванне сiстэмы"
-#: ../../network/isdn.pm_.c:220
-msgid "Which is your ISDN card?"
-msgstr "Якая ў вас ISDN карта?"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure services"
+msgstr "Настройка службаў"
-#: ../../network/isdn.pm_.c:239
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-"Вызначана ISDN PCI карта, але невядомы яе тып. Калi ласка, пазначце PCI "
-"карту на наступным экране."
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure X"
+msgstr "Настройка X Window"
-#: ../../network/isdn.pm_.c:248
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Карта ISDN PCI не знойдзена. Калi ласка, пазначце на наступным экране."
+#: ../../steps.pm:1
+#, c-format
+msgid "Install bootloader"
+msgstr "Усталяванне загрузчыку"
-#: ../../network/modem.pm_.c:57
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure networking"
+msgstr "Настройка сеткi"
-#: ../../network/modem.pm_.c:67
-msgid "Dialup options"
-msgstr "Параметры камутаванага злучэння (Dialup)"
+#: ../../steps.pm:1
+#, c-format
+msgid "Add a user"
+msgstr "Дадаць карыстальнiка"
-#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
-msgid "Connection name"
-msgstr "Iмя злучэння"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install system"
+msgstr "Усталяванне сiстэмы"
-#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
-msgid "Phone number"
-msgstr "Нумар тэлефону"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose packages to install"
+msgstr "Выбар пакетаў"
-#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
-msgid "Login ID"
-msgstr "Iмя (login ID)"
+#: ../../steps.pm:1
+#, c-format
+msgid "Format partitions"
+msgstr "Фарматаванне раздзелаў"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Partitioning"
+msgstr "Прынтэр"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "PAP"
-msgstr "PAP"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your keyboard"
+msgstr "Выбар клавiятуры"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Script-based"
-msgstr "на аснове скрыпту"
+#: ../../steps.pm:1
+#, c-format
+msgid "Select installation class"
+msgstr "Клас усталявання"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Terminal-based"
-msgstr "на аснове тэрмiналу"
+#: ../../steps.pm:1
+#, c-format
+msgid "Hard drive detection"
+msgstr "Вызначэнне жорсткага дыску"
-#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
-msgid "Domain name"
-msgstr "Iмя дамену"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure mouse"
+msgstr "Настройка мышы"
-#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
-#, fuzzy
-msgid "First DNS Server (optional)"
-msgstr "Першы сервер DNS"
+#: ../../steps.pm:1
+#, c-format
+msgid "License"
+msgstr ""
-#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
-#, fuzzy
-msgid "Second DNS Server (optional)"
-msgstr "Другi сервер DNS:"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your language"
+msgstr "Выбар мовы"
+
+#: ../../ugtk2.pm:1
+#, c-format
+msgid "utopia 25"
+msgstr ""
+
+#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
+#, c-format
+msgid "logdrake"
+msgstr ""
+
+#: ../../ugtk.pm:1
+#, c-format
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../network/modem.pm_.c:95
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"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САННЯ ВАШАГА КАМП'ЮТЭРУ."
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
+"s."
-#: ../../network/modem.pm_.c:97
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s з падтрымкай 3D-паскарэння"
+
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
+"s.\n"
+"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
+"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
+"лепей падтрымлiвае карты з 2D-паскарэннем."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Do nothing"
-msgstr "Чакаецца"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Падтрымка 3D-паскарэння ў Вашай відэакарце выканана толькі ў XFree %s.\n"
+"XFree %s можа выкарыстоўваць толькі 2D-паскарэнне для гэтай відэакарты."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Install rpm"
-msgstr "Усталёўка"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s"
+msgstr "Сервер XFree86 %s"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Title"
-msgstr "Таблiца"
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Канфiгураваць маю карту"
-#: ../../network/netconnect.pm_.c:29
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Use Xinerama extension"
+msgstr ""
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Configure all heads independently"
+msgstr ""
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree configuration"
+msgstr "Настройка XFree"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Select the memory size of your graphics card"
+msgstr "Пазначце памер вiдэапамяцi"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
+"Your system supports multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
-#, fuzzy
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Multi-head configuration"
+msgstr "чытанне настройкi"
+
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Choose an X server"
+msgstr "Абярыце X сервер"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "X server"
+msgstr "X сервер"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "64 MB or more"
+msgstr "64 Мб цi болей"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "32 MB"
+msgstr "32 Мб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "16 MB"
+msgstr "16 Мб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "8 MB"
+msgstr "8 Мб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "4 MB"
+msgstr "4 Мб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "2 MB"
+msgstr "2 Мб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "1 MB"
+msgstr "1 Мб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "512 kB"
+msgstr "512 Кб"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "256 kB"
+msgstr "256 Кб"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"You can reconfigure your connection."
+"%s"
msgstr ""
+"Ці жадаеце Вы захаваць змяненні?\n"
+"Бягучая канфігурацыя:\n"
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"%s"
-#: ../../network/netconnect.pm_.c:29
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Options"
+msgstr "Опцыi"
-#: ../../network/netconnect.pm_.c:32
-#, fuzzy
+#: ../../Xconfig/main.pm:1
+#, c-format
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolution"
+msgstr "Памеры экрану"
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Monitor"
+msgstr "Манiтор"
+
+#: ../../Xconfig/main.pm:1
+#, fuzzy, c-format
+msgid "Graphic Card"
+msgstr "Вiдэакарта"
+
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakperm:1
+#: ../../standalone/draksplash:1 ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
+#, c-format
+msgid "Quit"
+msgstr "Выхад"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Vertical refresh rate"
+msgstr "Часціня вертыкальнай разгорткi"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Horizontal refresh rate"
+msgstr "Часціня гарызантальный разгорткi"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"You can connect to Internet or reconfigure your connection."
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"Два крытычных параметры - гэта часціня вертыкальнай разгорткi, цi\n"
+"часціня аднаўлення ўсяго экрану, а таксама болей важны параметр -\n"
+"часціня гарызантальнай сiнхранiзацыi разгорткi, цi часціня вываду\n"
+"радкоў экрану.\n"
"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"ВЕЛЬМI ВАЖНА, каб абраны вамi манiтор меў часціню сiнхранiзацыi, якая\n"
+"не перавышае фактычныя магчымасцi вашага манiтору: у процiлеглым выпадку\n"
+"вы можаце сапсаваць манiтор.\n"
+"Калi вы сумняваецеся, абярыце кансерватыўныя настройкi."
-#: ../../network/netconnect.pm_.c:32
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgstr ""
-#: ../../network/netconnect.pm_.c:36
-#, fuzzy
-msgid "Connect"
-msgstr "Iмя злучэння"
+#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Vendor"
+msgstr "Адкат"
-#: ../../network/netconnect.pm_.c:37
-#, fuzzy
-msgid "Disconnect"
-msgstr "Настройка ISDN"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play"
+msgstr ""
-#: ../../network/netconnect.pm_.c:38
-#, fuzzy
-msgid "Configure the connection"
-msgstr "Настройка сеткi"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Choose a monitor"
+msgstr "Абярыце манiтор"
-#: ../../network/netconnect.pm_.c:41
-msgid "Internet connection & configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Graphics card: %s"
+msgstr "Вiдэакарта: %s"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Choose the resolution and the color depth"
+msgstr "Выбар памераў экрану i глыбiнi колеру"
-#: ../../network/netconnect.pm_.c:94
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolutions"
+msgstr "Памеры экрану"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 мiлiярда колераў (24 бiты)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "16 million colors (24 bits)"
+msgstr "16 мiльёнаў колераў (24 бiты)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "65 thousand colors (16 bits)"
+msgstr "65 тысяч колераў (16 бiтаў)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "32 thousand colors (15 bits)"
+msgstr "32 тысячы колераў (15 бiтаў)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "256 colors (8 bits)"
+msgstr "256 колераў (8 бiтаў)"
+
+#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
-msgid "We are now going to configure the %s connection."
+msgid "Is this the correct setting?"
+msgstr "Гэта дакладна?"
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Leaving in %d seconds"
+msgstr "%d секундаў"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid ""
+"An error occurred:\n"
+"%s\n"
+"Try to change some parameters"
msgstr ""
-"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:103
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Папярэджанне: тэсцiраванне на гэтай вiдэакарце небяспечна"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Do you want to test the configuration?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Test of the configuration"
+msgstr "Праверка параметраў настройкi"
+
+#: ../../Xconfig/various.pm:1
#, fuzzy, c-format
+msgid "What norm is your TV using?"
+msgstr "Якi тып вашага ISDN злучэння?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
+"Do you have this feature?"
msgstr ""
-"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
-#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
-msgid "Network Configuration"
-msgstr "Канфiгурацыя сеткi"
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid ""
+"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 стартаваў пры рэстарце?"
-#: ../../network/netconnect.pm_.c:133
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphical interface at startup"
+msgstr "Запуск X пры старце сiстэмы"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Сервер XFree86: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 server: %s\n"
+msgstr "Сервер XFree86: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Памеры экрану: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Параметры глыбiнi колеру: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics memory: %s kB\n"
+msgstr "Вiдэапамяць: %s Кб\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics card: %s\n"
+msgstr "Вiдэакарта: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Часціня верт.разг. манiтору: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor HorizSync: %s\n"
+msgstr "Часціня гар.разг. манiтору: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor: %s\n"
+msgstr "Манiтор: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse device: %s\n"
+msgstr "Мыш: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse type: %s\n"
+msgstr "Тып мышы: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Keyboard layout: %s\n"
+msgstr "Тып клавiятуры: %s\n"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Options: %s"
+msgstr "Опцыi: %s"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount point: "
+msgstr "Пункт манцiравання:"
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Server: "
+msgstr "сервер"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Please enter the WebDAV server URL"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount point"
+msgstr "Кропка манцiравання"
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Server"
+msgstr "сервер"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount"
+msgstr "Манцiраванне"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Unmount"
+msgstr "Разманцiраваць"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "New"
+msgstr "Новы"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
msgstr ""
-#: ../../network/netconnect.pm_.c:157
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``%s'' instead"
+msgstr "Выкарыстоўвайце ``%s'' замест"
+
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Type"
+msgstr "Тып"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``Unmount'' first"
+msgstr "Спачатку зрабiце ``Unmount''"
+
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Delete"
+msgstr "Знiшчыць"
+
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create"
+msgstr "Стварыць"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Filesystem types:"
+msgstr "Тыпы файлавых сiстэмаў:"
+
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Empty"
+msgstr "Пуста"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Windows"
+msgstr "Навуковыя прыкладанні"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "HFS"
+msgstr "HFS"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "SunOS"
+msgstr "SunOS"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Swap"
+msgstr "Swap"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Journalised FS"
+msgstr "памылка манцiравання"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Ext2"
+msgstr "Ext2"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "No hard drives found"
+msgstr "Лакальны прынтэр"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please click on a partition"
+msgstr "Націсніце на раздзел"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
msgid ""
-"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"
+"You have one big MicroSoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
+"Зараз вы маеце толькi адзiн вялiкi раздзел FAT\n"
+"(які звычайна выкарыстоўвае MS Dos/Windows).\n"
+"Прапаную, па-першае, змянiць памеры раздзела\n"
+"(клiкнiце на яго, а потым на \"змяненне памераў\")"
-#: ../../network/netconnect.pm_.c:163
-#, fuzzy
-msgid "Choose the profile to configure"
-msgstr "Абярыце асноўнага карыстальнiка:"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Choose action"
+msgstr "Абярыце дзеянне"
-#: ../../network/netconnect.pm_.c:164
-msgid "Use auto detection"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Wizard"
+msgstr "Майстар стварэння"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
msgstr ""
+"Калi вы плануеце выкарыстоўваць boot вобласць, тады размясцiце яе\n"
+" не далей за 2048 сектароў ад пачатку дыска"
-#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
-#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
-#: ../../standalone/drakfloppy_.c:118
-#, fuzzy
-msgid "Expert Mode"
-msgstr "Эксперт"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please make a backup of your data first"
+msgstr "Па-першае, зрабiце рэзервовую копiю вашых дадзеных"
-#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
-msgid "Detecting devices..."
-msgstr "Вызначэнне прыладаў..."
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read carefully!"
+msgstr "Чытайце ўважлiва!"
-#: ../../network/netconnect.pm_.c:214
-msgid "Normal modem connection"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key (again)"
msgstr ""
-#: ../../network/netconnect.pm_.c:214
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
-msgid "detected on port %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgid "The encryption keys do not match"
+msgstr "Паролi не супадаюць"
-#: ../../network/netconnect.pm_.c:215
-#, fuzzy
-msgid "Winmodem connection"
-msgstr "Злучэнне прынтэру"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr ""
+"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
-#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "detected"
-msgstr "Аддалены прынтэр"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose your filesystem encryption key"
+msgstr ""
-#: ../../network/netconnect.pm_.c:216
-#, fuzzy
-msgid "ISDN connection"
-msgstr "Настройка ISDN"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Filesystem encryption key"
+msgstr "Тып файлавай сiстэмы:"
-#: ../../network/netconnect.pm_.c:216
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "detected %s"
-msgstr ""
+msgid "Type: "
+msgstr "Тып: "
-#: ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "ADSL connection"
-msgstr "Размеркаванне"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "на шыне %d id %d\n"
-#: ../../network/netconnect.pm_.c:218
-#, fuzzy
-msgid "Cable connection"
-msgstr "Злучэнне прынтэру"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Тып таблiцы раздзелаў: %s\n"
-#: ../../network/netconnect.pm_.c:218
-#, fuzzy
-msgid "cable connection detected"
-msgstr "Злучэнне прынтэру"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-дыскi %s\n"
-#: ../../network/netconnect.pm_.c:219
-#, fuzzy
-msgid "LAN connection"
-msgstr "Размеркаванне"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Info: "
+msgstr "Iнфармацыя: "
-#: ../../network/netconnect.pm_.c:219
-msgid "ethernet card(s) detected"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s\n"
+msgstr "Памер: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read-only"
msgstr ""
-#: ../../network/netconnect.pm_.c:222
-#, fuzzy
-msgid "Choose the connection you want to configure"
-msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Device: "
+msgstr "Прылада:"
-#: ../../network/netconnect.pm_.c:246
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:247
-#, fuzzy
-msgid "Internet connection"
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
+msgstr ""
-#: ../../network/netconnect.pm_.c:253
-msgid "Do you want to start the connection at boot?"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "Iмя файлу вiртуальнай файлавай сiстэмы: %s"
-#: ../../network/netconnect.pm_.c:267
-#, fuzzy
-msgid "Network configuration"
-msgstr "Канфiгурацыя сеткi"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID-disks %s\n"
+msgstr "RAID-дыскi %s\n"
-#: ../../network/netconnect.pm_.c:268
-msgid "The network needs to be restarted"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Chunk size %s\n"
+msgstr "Памер фрагменту %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Level %s\n"
+msgstr "Узровень %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Загрузачны раздзел па дамаўленню\n"
+" (для загрузкi MS-DOS, а не для lilo)\n"
-#: ../../network/netconnect.pm_.c:272
+#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+"Loopback file(s):\n"
+" %s\n"
+msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"
-#: ../../network/netconnect.pm_.c:282
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
-"\n"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mounted\n"
+msgstr "Заманцiравана\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Not formatted\n"
+msgstr "Не адфарматавана\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Formatted\n"
+msgstr "Фарматаванне\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "Цылiндры з %d па %d\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ", %s sectors"
+msgstr ", %s сектараў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s"
+msgstr "Памер: %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start: sector %s\n"
+msgstr "Пачатак: сектар %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Name: "
+msgstr "Iмя: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "partition %s is now known as %s"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Removing %s"
+msgstr "Памеры экрану: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Copying %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:286
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Moving files to the new partition"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../network/netconnect.pm_.c:287
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Hide files"
+msgstr "mkraid не працаздольны"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Move files to the new partition"
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
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."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
msgstr ""
+"Вы абралi RAID раздзел як каранёвы.\n"
+"Няма загрузчыку, якi б загрузiўся без /boot раздзела.\n"
+"Дадайце раздел /boot, калi ласка."
-#: ../../network/network.pm_.c:278
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"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."
+"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 ""
+"Абраны для дадатку ў якасцi каранёвага (/) раздзел фiзiчна знаходзiца далей\n"
+"1024-га цылiндру жорсткага дыску, а ў вас няма раздзелу /boot .\n"
+"Калi будзе выкарыстоўвацца дыспечар загрузкi LILO, не запамятайце дадаць\n"
+"раздзел /boot"
-#: ../../network/network.pm_.c:283
+#: ../../diskdrake/interactive.pm:1
+#, c-format
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)."
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Калi ласка, увядзiце IP канфiгурацыю для вашай машыны.\n"
-"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
-"натацыi (напрыклад, 1.2.3.4)."
+"Прабачце, але нельга стварыць /boot на гэтым дыску (на цылiндры > 1024).\n"
+"Калі вы думаеце выкарыстоўваць LILO - тады гэта не будзе працаваць, LILO не "
+"выкарыстоўваеца, тады /boot не патрэбны."
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "What type of partitioning?"
+msgstr "Якi тып друкаркi вы маеце?"
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Configuring network device %s"
-msgstr "Настройка сеткавай прылады %s"
+msgid "Be careful: this operation is dangerous."
+msgstr "Будзьце уважлiвы. Гэтую аперацыю нельга адмянiць"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "chunk size"
+msgstr "памер блоку"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "level"
+msgstr "узровень"
+
+#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "device"
+msgstr "прылада"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Various"
+msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
-msgid " (driver %s)"
-msgstr "Сервер XFree86: %s\n"
+msgid "Mount options"
+msgstr "Опцыi модулю:"
-#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
-#: ../../standalone/drakconnect_.c:464
-msgid "IP address"
-msgstr "IP адрас"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "File already exists. Use it?"
+msgstr "Файл ужо iснуе. Выкарыстаць яго?"
-#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
-#: ../../standalone/drakgw_.c:291
-msgid "Netmask"
-msgstr "Маска сеткi"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "File is already used by another loopback, choose another one"
+msgstr ""
+"Файл ужо выкарыстоўваецца iншай вiртуальнай сiстэмай. Калi ласка, \n"
+"абярыце iншую назву"
-#: ../../network/network.pm_.c:298
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Give a file name"
+msgstr "Уласнае iмя"
-#: ../../network/network.pm_.c:298
-msgid "Automatic IP"
-msgstr "Аўтаматычны IP"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Filesystem type: "
+msgstr "Тып файлавай сiстэмы:"
-#: ../../network/network.pm_.c:299
-#, fuzzy
-msgid "Start at boot"
-msgstr "Стварыць загр. дыск"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size in MB: "
+msgstr "Памер у Мб:"
-#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: "
+msgstr "Iмя вiртуальнага раздзелу"
-#: ../../network/network.pm_.c:326
-msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0'."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback"
+msgstr "Вiртуальная файлавая сiстэма (loopback)"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition can't be used for loopback"
+msgstr "Гэты раздзел не можа быць выкарыстаны пад вiртуальную файлавую сiстэму"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM name?"
msgstr ""
-#: ../../network/network.pm_.c:330
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "new"
+msgstr "новы"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing LVM to add to"
+msgstr "Выбярыце iснуючы LVM для дабаўлення"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing RAID to add to"
+msgstr "Абярыце iснуючы RAID для дадання"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving partition..."
+msgstr "Пераносіцца раздзел..."
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving"
+msgstr "Пераносім"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which sector do you want to move it to?"
+msgstr "На якi сектар перанесці?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Sector"
+msgstr "Сектар"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which disk do you want to move it to?"
+msgstr "На якi дыск перанесці?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move"
+msgstr "Перанос"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "New size in MB: "
+msgstr "Памер у Мб:"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose the new size"
+msgstr "Выбар новых памераў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "Змяненне памераў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All data on this partition should be backed-up"
+msgstr "Усе дадзеныя ў гэтым раздзеле павiнны быць зархiваваныя"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "This partition is not resizeable"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Computing FAT filesystem bounds"
+msgstr "Падлік межаў файлавай сiстэмы FAT"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0'."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
+"Нельга ўсталяваць пункт манцiравання, таму што раздел выкарыстоўваецца для\n"
+"вiртуальнай файлавай сiстэмы.\n"
+"Спачатку выдалiце вiртуальную сiстэму"
-#: ../../network/network.pm_.c:350
-msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount device %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount the loopback file %s?"
+msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Switching from ext2 to ext3"
msgstr ""
-"Увядзiце iмя сваёй машыны (host).\n"
-"Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
-"напрыклад ``mybox.mylab.myco.com''.\n"
-"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../network/network.pm_.c:355
-msgid "DNS server"
-msgstr "DNS сервер"
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#, fuzzy, c-format
+msgid "Which filesystem do you want?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
-#: ../../network/network.pm_.c:356
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Gateway (e.g. %s)"
+msgid "Change partition type"
+msgstr "Змянiць тып раздзелу"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Remove the loopback file?"
+msgstr "Фарматаванне вiртуальнага раздзелу %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+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 ""
-#: ../../network/network.pm_.c:358
-msgid "Gateway device"
-msgstr "Прылада-шлюз"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Preference: "
+msgstr "Параметры: "
-#: ../../network/network.pm_.c:363
-#, fuzzy
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start sector: "
+msgstr "Пачатковы сектар:"
-#: ../../network/network.pm_.c:367
-#, fuzzy
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create a new partition"
+msgstr "Стварэнне новага раздзелу"
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Настройка proxy кэшуючых сервераў"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Use for loopback"
+msgstr "Выкарыстоўваць для вiртуальнай файлавай сiстэмы"
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Modify RAID"
+msgstr "Змянiць RAID"
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from LVM"
+msgstr "Выдалiць з LVM"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (useful for laptops)"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from RAID"
+msgstr "Выдалiць з RAID"
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy павiнен быць http://..."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to LVM"
+msgstr "Дадаць да LVM"
-#: ../../network/network.pm_.c:388
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy павiнен быць http://..."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to RAID"
+msgstr "Дадаць да RAID"
-#: ../../network/shorewall.pm_.c:26
-msgid "Firewalling configuration detected!"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Format"
+msgstr "Фарматаванне"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Detailed information"
+msgstr "Iнфармацыя"
-#: ../../network/shorewall.pm_.c:27
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Trying to rescue partition table"
+msgstr "Паспрабуем выратаваць таблiцу раздзелаў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-"Увага! Знойдзена існуючая сiстэма сеткавай бяспекi (firewall). Вам магчыма "
-"спатрэбіцца скарэктаваць яе пасля ўсталявання."
+"Устаўце дыскету ў дыскавод\n"
+"Усе дадзеныя на гэтай дыскеце будуць страчаны"
-#: ../../network/tools.pm_.c:57
-msgid "Internet configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Warning"
+msgstr "Увага!"
-#: ../../network/tools.pm_.c:58
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Select file"
+msgstr "Абярыце файл"
-#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
-#, fuzzy
-msgid "Testing your connection..."
-msgstr "Якi тып вашага ISDN злучэння?"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
+msgstr ""
+"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
+"Працягваць далей?"
-#: ../../network/tools.pm_.c:70
-#, fuzzy
-msgid "The system is now connected to Internet."
-msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Removable media automounting"
+msgstr "Аўтаманцiраванне зменных назапашвальнікаў"
-#: ../../network/tools.pm_.c:71
-msgid "For security reason, it will be disconnected now."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Reload partition table"
+msgstr "Дадатковая таблiца раздзелаў"
-#: ../../network/tools.pm_.c:72
-#, fuzzy
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Rescue partition table"
+msgstr "Дадатковая таблiца раздзелаў"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Restore partition table"
+msgstr "Дадатковая таблiца раздзелаў"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Save partition table"
+msgstr "Запiс таблiцы раздзелаў"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-"\n"
-"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+"Каб зрабiць больш разделаў, выдалiце адзiн i стварыце пашыраны раздзел "
+"(extended)"
-#: ../../network/tools.pm_.c:96
-msgid "Connection Configuration"
-msgstr "Настройка далучэння да Iнтэрнэту"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "I can't add any more partition"
+msgstr "Дадаць раздзел немагчыма"
-#: ../../network/tools.pm_.c:97
-msgid "Please fill or check the field below"
-msgstr "Калi ласка, запоўнiце цi пазначце поле нiжэй"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All primary partitions are used"
+msgstr "Усе першасныя раздзелы выкарыстаны"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
-msgid "Card IRQ"
-msgstr "IRQ карты"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Hard drive information"
+msgstr "Iнфармацыя"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
-msgid "Card mem (DMA)"
-msgstr "Адрасы памяці карты (DMA)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Auto allocate"
+msgstr "Размеркаваць аўтаматычна"
-#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
-msgid "Card IO"
-msgstr "IO карты"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Clear all"
+msgstr "Ачысцiць усё"
-#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
-msgid "Card IO_0"
-msgstr "IO_0 карты"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
-msgid "Card IO_1"
-msgstr "IO_1 карты"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without writing the partition table?"
+msgstr "Выйсцi без запiсу таблiцы раздзелаў"
-#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
-msgid "Your personal phone number"
-msgstr "Ваш асабiсты тэлефонны нумар"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without saving"
+msgstr "Выйсцi без захавання"
-#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
-msgid "Provider name (ex provider.net)"
-msgstr "Iмя правайдару, напрыклад правайдар.net"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Continue anyway?"
+msgstr "Сапраўды працягваць?"
-#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
-msgid "Provider phone number"
-msgstr "Нумар тэлефону правайдара"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to expert mode"
+msgstr "Рэжым эксперту"
-#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
-#, fuzzy
-msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 правайдару"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to normal mode"
+msgstr "Звычайны рэжым"
-#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
-#, fuzzy
-msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 правайдару"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Undo"
+msgstr "Адкат"
-#: ../../network/tools.pm_.c:109
-#, fuzzy
-msgid "Choose your country"
-msgstr "Выбар клавiятуры"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Exit"
+msgstr "Ext2"
-#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
-msgid "Dialing mode"
-msgstr "Рэжым злучэння"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Choose a partition"
+msgstr "Абярыце дзеянне"
-#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
-#, fuzzy
-msgid "Connection speed"
-msgstr "Iмя злучэння"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Choose another partition"
+msgstr "Стварэнне новага раздзелу"
-#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
-#, fuzzy
-msgid "Connection timeout (in sec)"
-msgstr "Iмя злучэння"
+#: ../../diskdrake/removable.pm:1
+#, fuzzy, c-format
+msgid "Change type"
+msgstr "Змянiць тып раздзелу"
-#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
-msgid "Account Login (user name)"
-msgstr "Iмя для ўваходу (iмя карыстальнiку)"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Search servers"
+msgstr "DNS сервер"
-#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
-#: ../../standalone/drakconnect_.c:647
-msgid "Account Password"
-msgstr "Пароль для ўваходу"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain"
+msgstr "NIS Domain"
-#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
-msgid "United Kingdom"
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username"
+msgstr "Iмя карыстальнiку:"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../partition_table.pm_.c:603
-msgid "mount failed: "
-msgstr "памылка манцiравання: "
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain Authentication Required"
+msgstr "Аўтэнтыфiкацыя"
-#: ../../partition_table.pm_.c:667
-msgid "Extended partition not supported on this platform"
-msgstr "Пашыраны раздзел не падтрымлiваецца гэтай платформай"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Another one"
+msgstr "цiкава"
-#: ../../partition_table.pm_.c:685
-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."
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Which username"
+msgstr "Iмя карыстальнiку:"
+
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-"Вы маеце дзiрку ў таблiцы радзелаў, але я не маю магчымасцi яе скарыстаць.\n"
-"Адзiны выхад у тым, каб перамясцiць першасныя раздзелы так, каб дзiрка iшла\n"
-"адразу за пашыраным (extended) раздзелам"
-#: ../../partition_table.pm_.c:774
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Аднаўленне з файла %s не атрымалася: %s"
+msgid "cpu # "
+msgstr ""
-#: ../../partition_table.pm_.c:776
-msgid "Bad backup file"
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SMBus controllers"
+msgstr ""
-#: ../../partition_table.pm_.c:796
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "Error writing to file %s"
-msgstr "Памылка запiсу ў файл %s"
+msgid "USB controllers"
+msgstr ""
-#: ../../partition_table/raw.pm_.c:192
-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"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SCSI controllers"
msgstr ""
-#: ../../pkgs.pm_.c:26
-msgid "must have"
-msgstr "павiнны мець"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "(E)IDE/ATA controllers"
+msgstr ""
-#: ../../pkgs.pm_.c:27
-msgid "important"
-msgstr "важна"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Joystick"
+msgstr ""
-#: ../../pkgs.pm_.c:28
-msgid "very nice"
-msgstr "вельмi добра"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Scanner"
+msgstr "Абярыце вiдэакарту"
-#: ../../pkgs.pm_.c:29
-msgid "nice"
-msgstr "добра"
+#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Unknown/Others"
+msgstr "Агульны"
-#: ../../pkgs.pm_.c:30
-msgid "maybe"
-msgstr "можа быць"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Bridges and system controllers"
+msgstr ""
-#: ../../printer/data.pm_.c:18
-msgid "PDQ - Print, Don't Queue"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Modem"
+msgstr "Порт мышы"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Ethernetcard"
+msgstr "цiкава"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Processors"
msgstr ""
-#: ../../printer/data.pm_.c:19
-msgid "PDQ"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Webcam"
msgstr ""
-#: ../../printer/data.pm_.c:30
-msgid "LPD - Line Printer Daemon"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Soundcard"
+msgstr "Стандартны"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Other MultiMedia devices"
+msgstr "Іншыя"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Tvcard"
msgstr ""
-#: ../../printer/data.pm_.c:31
-msgid "LPD"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Videocard"
+msgstr "Вiдэа-рэжым"
+
+#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Tape"
+msgstr "Тып: "
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "DVD-ROM"
msgstr ""
-#: ../../printer/data.pm_.c:51
-msgid "LPRng - LPR New Generation"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CD/DVD burners"
msgstr ""
-#: ../../printer/data.pm_.c:52
-msgid "LPRng"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CDROM"
msgstr ""
-#: ../../printer/data.pm_.c:75
-msgid "CUPS - Common Unix Printing System"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Disk"
+msgstr "Дацкi"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Zip"
msgstr ""
-#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
-msgid "CUPS"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Floppy"
+msgstr "Захаванне на дыскету"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Let me pick any driver"
msgstr ""
-#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
-#: ../../printer/detect.pm_.c:250
-msgid "Unknown Model"
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Driver:"
+msgstr "сервер"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"If you really think that you know which driver is the right one for your "
+"card\n"
+"you can pick one in the above list.\n"
+"\n"
+"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: ../../printer/main.pm_.c:26
-msgid "Local printer"
-msgstr "Лакальны прынтэр"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Choosing an arbitratry driver"
+msgstr ""
-#: ../../printer/main.pm_.c:27
-msgid "Remote printer"
-msgstr "Аддалены прынтэр"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The classic bug sound tester is to run the following commands:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
+"by default\n"
+"\n"
+"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+msgstr ""
-#: ../../printer/main.pm_.c:28
-#, fuzzy
-msgid "Printer on remote CUPS server"
-msgstr "Аддалены сервер CUPS"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Sound trouble shooting"
+msgstr ""
-#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
-#, fuzzy
-msgid "Printer on remote lpd server"
-msgstr "Аддалены сервер lpd"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Error: The \"%s\" driver for your sound card is unlisted"
+msgstr ""
-#: ../../printer/main.pm_.c:30
-msgid "Network printer (TCP/Socket)"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Unkown driver"
+msgstr ""
-#: ../../printer/main.pm_.c:31
-#, fuzzy
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../printer/main.pm_.c:32
-#, fuzzy
-msgid "Printer on NetWare server"
-msgstr "Сервер друку"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No known driver"
+msgstr ""
-#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
-#, fuzzy
-msgid "Enter a printer device URI"
-msgstr "URI прынтэру"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
+msgstr ""
-#: ../../printer/main.pm_.c:34
-msgid "Pipe job into a command"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No open source driver"
msgstr ""
-#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
-#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
-msgid "Unknown model"
+#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Please Wait... Applying the configuration"
+msgstr "Праверка параметраў настройкi"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oops the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../printer/main.pm_.c:317
-#, fuzzy
-msgid "Local Printers"
-msgstr "Лакальны прынтэр"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Trouble shooting"
+msgstr ""
-#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Аддалены прынтэр"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
-#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid " on parallel port \\/*%s"
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", USB printer \\/*%s"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
-#: ../../printer/main.pm_.c:334
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Sound configuration"
+msgstr "Настройка"
+
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../printer/main.pm_.c:337
-msgid ", multi-function device on USB"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No alternative driver"
msgstr ""
-#: ../../printer/main.pm_.c:339
-msgid ", multi-function device on HP JetDirect"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "enable radio support"
msgstr ""
-#: ../../printer/main.pm_.c:341
-msgid ", multi-function device"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Radio support:"
msgstr ""
-#: ../../printer/main.pm_.c:344
+#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Памылка запiсу ў файл %s"
+msgid "PLL setting:"
+msgstr "фарматаванне"
-#: ../../printer/main.pm_.c:346
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../printer/main.pm_.c:348
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../printer/main.pm_.c:352
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Tuner type:"
+msgstr "Змянiць тып раздзелу"
+
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Card model:"
+msgstr "Адрасы памяці карты (DMA)"
+
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+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 ""
-#: ../../printer/main.pm_.c:356
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Unknown|Generic"
+msgstr "Агульны"
+
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../printer/main.pm_.c:358
+#: ../../harddrake/v4l.pm:1
#, c-format
-msgid ", using command %s"
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
-msgid "Raw printer (No driver)"
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect"
+msgstr "Аддалены прынтэр"
+
+#: ../../interactive/newt.pm:1
+#, fuzzy, c-format
+msgid "Do"
+msgstr "Зроблена"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (default %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Bad choice, try again\n"
+msgstr "Дрэнны выбар, паспрабуйце яшче\n"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Re-submit"
msgstr ""
-#: ../../printer/main.pm_.c:647
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid ""
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid ""
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "=> There are many things to choose from (%s).\n"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
-msgid "(on %s)"
-msgstr "(модуль %s)"
+msgid "Your choice? (default `%s'%s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
-#: ../../printer/main.pm_.c:649
-msgid "(on this machine)"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid " enter `void' for void entry"
msgstr ""
-#: ../../printer/main.pm_.c:674
+#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP сервера SMB"
+msgid "Do you want to click on this button?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
-#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
-#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
-#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
-msgid " (Default)"
-msgstr " (Па дамаўленню)"
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Опцыi: %s"
-#: ../../printer/printerdrake.pm_.c:27
-msgid "Select Printer Connection"
-msgstr "Выбар тыпу злучэння прынтэру"
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Ваш выбар? (змоўчанне %s) "
-#: ../../printer/printerdrake.pm_.c:28
-msgid "How is the printer connected?"
-msgstr "Як прынтар далучаны?"
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid ""
+"Entries you'll have to fill:\n"
+"%s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:30
-#, fuzzy
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-"Аддалены CUPS сервер не патрабуе ад Вас настройкі прынтэру\n"
-"на гэтай машыне, ён будзе знойдзены аўтаматычна.\n"
-"Калі Вы не ўпэўнены, абярыце \"Аддалены сервер CUPS\"."
+"Загрузка модулю %s не прайшла.\n"
+"Жадаеце паспрабаваць з iншымi параметрамi?"
-#: ../../printer/printerdrake.pm_.c:38
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Specify options"
+msgstr "Пазначце параметры"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Autoprobe"
+msgstr "Аўтапошук"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
+"У некаторых выпадках %s драйверу патрэбна некаторая дадатковая iнфармацыя,\n"
+"але звычайна гэта не патрабуецца. Цi не жадаеце вы задаць для яго\n"
+"дадатковыя опцыi, цi дазволiце драйверу пратэсцiраваць машыну\n"
+"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
+"да спынення камп'ютэру, але яно нiчога не сапсуе."
-#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
-#, fuzzy
-msgid "CUPS configuration"
-msgstr "Настройка"
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Якi драйвер %s паспрабаваць?"
-#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Аддалены сервер CUPS"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Module options:"
+msgstr "Опцыi модулю:"
-#: ../../printer/printerdrake.pm_.c:83
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
+"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мя=значэнне iмя2=значэнне2 ...''.\n"
+"Напрыклад, ``io=0x300 irq=7''"
-#: ../../printer/printerdrake.pm_.c:84
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:88
-#, fuzzy
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "(module %s)"
+msgstr "(модуль %s)"
-#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
-msgid "The port number should be an integer!"
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Усталяванне драйверу для %s карты %s"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "See hardware info"
+msgstr "Гл. апiсанне абсталявання"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Цi ёсць у вас %s iнтэрфейс?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have another one?"
+msgstr "Цi ёсць у вас iншы?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Знойдзены %s %s iнтэрфейсы"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:99
-#, fuzzy
-msgid "CUPS server IP"
-msgstr "IP сервера SMB"
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "comma separated strings"
+msgstr "Фарматаванне раздзелаў"
-#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
-#: ../../standalone/harddrake2_.c:63
-msgid "Port"
-msgstr "Порт"
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "comma separated numbers"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:102
-#, fuzzy
-msgid "Automatic CUPS configuration"
-msgstr "Настройка мадэму"
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:159
-#, fuzzy
-msgid "Checking your system..."
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
-#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
-#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
-#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
-#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
-#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
-#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
-#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
-#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
-#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Прынтэр"
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "a number"
+msgstr "Нумар тэлефону"
-#: ../../printer/printerdrake.pm_.c:167
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:179
-#, fuzzy
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"The following printers\n"
-"\n"
-msgstr "Наступныя пакеты будуць выдалены"
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:180
-#, fuzzy
-msgid ""
-"The following printer\n"
-"\n"
-msgstr "Наступныя пакеты будуць выдалены"
+#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
+#, c-format
+msgid "Connect to the Internet"
+msgstr "Далучэнне да Iнтэрнэту"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using pppoe) usb"
+msgstr ""
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Alcatel speedtouch usb"
+msgstr ""
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use dhcp"
+msgstr ""
+
+#: ../../network/adsl.pm:1
+#, fuzzy, c-format
+msgid "use pptp"
+msgstr "выкарыстоўваць pppoe"
-#: ../../printer/printerdrake.pm_.c:182
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pppoe"
+msgstr "выкарыстоўваць pppoe"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Other ports"
+msgstr "Iншыя краiны"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Everything (no firewall)"
+msgstr "Ўсё сканфiгуравана!"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
-"\n"
-"and one unknown printer are "
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:184
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
-"\n"
-"and %d unknown printers are "
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"are "
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"is "
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:189
-#, fuzzy
-msgid "directly connected to your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "No network card"
+msgstr "сеткавая карта не знойдзена"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "POP and IMAP Server"
+msgstr "сервер"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Mail Server"
+msgstr "Сервер друку"
-#: ../../printer/printerdrake.pm_.c:192
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Domain Name Server"
+msgstr "Iмя дамену"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "сервер"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr ""
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "Iмя машыны"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Host name"
+msgstr "Iмя машыны"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
msgid ""
"\n"
-"There is one unknown printer directly connected to your system"
+"\n"
+"Enter a Zeroconf host name without any dot if you don't\n"
+"want to use the default host name."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:194
+#: ../../network/ethernet.pm:1
#, c-format
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
+"Увядзiце iмя сваёй машыны (host).\n"
+"Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
+"напрыклад ``mybox.mylab.myco.com''.\n"
+"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../printer/printerdrake.pm_.c:200
-#, fuzzy
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Configuring network"
+msgstr "Настройка сеткi"
-#: ../../printer/printerdrake.pm_.c:214
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid "no network card found"
+msgstr "сеткавая карта не знойдзена"
+
+#: ../../network/ethernet.pm:1
+#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
+"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
+"далучэння да iнтэрнэт"
-#: ../../printer/printerdrake.pm_.c:215
-#, fuzzy
-msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "Жадаеце пратэсцiраваць друк?"
-
-#: ../../printer/printerdrake.pm_.c:217
-#, fuzzy
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
+#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "Choose the network interface"
+msgstr "Пазначце сеткавы iнтэрфейс"
-#: ../../printer/printerdrake.pm_.c:218
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../network/ethernet.pm:1
+#, fuzzy, c-format
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
+"скарыстайце канфiгурацыйны iнструмэнт."
-#: ../../printer/printerdrake.pm_.c:219
+#: ../../network/ethernet.pm:1
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client."
msgstr ""
+"Якi dhcp клiент вы плануеце выкарыстоўваць?\n"
+"Па змоўчанню, гэта dhcp-client"
-#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
-#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
-#: ../../printer/printerdrake.pm_.c:3060
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Iмя друкаркi"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Карта ISDN PCI не знойдзена. Калi ласка, пазначце на наступным экране."
-#: ../../printer/printerdrake.pm_.c:259
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"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 "
+"карту на наступным экране."
-#: ../../printer/printerdrake.pm_.c:272
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "Якая ў вас ISDN карта?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISDN Configuration"
+msgstr "Настройка ISDN"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Abort"
+msgstr "Адмянiць"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Continue"
+msgstr "Працягнуць"
+
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) and you Windows machines must be connected and "
-"turned on.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr ""
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you don't need "
-"it.\n"
+"Калi вы маеце ISA карту, велiчынi на наступным экране павiнны быць "
+"сапраўднымi.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "I don't know"
+msgstr "Не вядома"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Якi тып карты вы маеце?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Якi пратакол вы жадаеце выкарыстоўваць?"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Protocol for the rest of the world"
+msgstr "Падключэнне"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"Падключэнне \n"
+" не праз D-канал (вылучаныя каналы)"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "European protocol"
+msgstr "Еўропа (EDSS1)"
-#: ../../printer/printerdrake.pm_.c:289
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "European protocol (EDSS1)"
+msgstr "Еўропа (EDSS1)"
+
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
+msgstr ""
+"Абярыце вашага правайдара.\n"
+"калi яго няма ў гэтым спiсе, абярыце тып ``Iншы''"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "External ISDN modem"
+msgstr "Унутраная ISDN карта"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Унутраная ISDN карта"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind is your ISDN connection?"
+msgstr "Якi тып вашага ISDN злучэння?"
+
+#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Network Configuration Wizard"
+msgstr "Канфiгурацыя сеткi"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Old configuration (isdn4net)"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "New configuration (isdn-light)"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"Which ISDN configuration do you prefer?\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you don't need it.\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"We recommand the light configuration.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:307
-#, fuzzy
-msgid "Auto-detect printers connected to this machine"
-msgstr "Аддалены прынтэр"
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Do nothing"
+msgstr "Чакаецца"
-#: ../../printer/printerdrake.pm_.c:310
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Install rpm"
+msgstr "Усталёўка"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:313
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Title"
+msgstr "Таблiца"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Second DNS Server (optional)"
+msgstr "Другi сервер DNS:"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "First DNS Server (optional)"
+msgstr "Першы сервер DNS"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Domain name"
+msgstr "Iмя дамену"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "CHAP"
+msgstr "CHAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Script-based"
+msgstr "на аснове скрыпту"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Terminal-based"
+msgstr "на аснове тэрмiналу"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Login ID"
+msgstr "Iмя (login ID)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Phone number"
+msgstr "Нумар тэлефону"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection name"
+msgstr "Iмя злучэння"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Dialup options"
+msgstr "Параметры камутаванага злучэння (Dialup)"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "Network Configuration"
+msgstr "Канфiгурацыя сеткi"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+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."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:329
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+msgstr ""
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"%s"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "The network needs to be restarted. Do you want to restart it ?"
+msgstr "Выбар пакетаў для ўсталявання"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Network configuration"
+msgstr "Канфiгурацыя сеткi"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Do you want to start the connection at boot?"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Internet connection"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Printer auto-detection"
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ethernet card(s) detected"
+msgstr ""
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "LAN connection"
+msgstr "Размеркаванне"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "cable connection detected"
+msgstr "Злучэнне прынтэру"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Cable connection"
+msgstr "Злучэнне прынтэру"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "detected"
msgstr "Аддалены прынтэр"
-#: ../../printer/printerdrake.pm_.c:385
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "ADSL connection"
+msgstr "Размеркаванне"
+
+#: ../../network/netconnect.pm:1
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid "detected %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:387
+#: ../../network/netconnect.pm:1
#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+msgid "ISDN connection"
+msgstr "Настройка ISDN"
-#: ../../printer/printerdrake.pm_.c:391
+#: ../../network/netconnect.pm:1
#, fuzzy, c-format
-msgid "Detected %s"
+msgid "Winmodem connection"
+msgstr "Злучэнне прынтэру"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "detected on port %s"
msgstr "Дубляванне пункту манцiравання %s"
-#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
-#: ../../printer/printerdrake.pm_.c:440
+#: ../../network/netconnect.pm:1
#, c-format
-msgid "Printer on parallel port \\/*%s"
+msgid "Normal modem connection"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
-#: ../../printer/printerdrake.pm_.c:443
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
+msgid "Detecting devices..."
+msgstr "Вызначэнне прыладаў..."
-#: ../../printer/printerdrake.pm_.c:399
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
+msgid "Expert Mode"
+msgstr "Эксперт"
-#: ../../printer/printerdrake.pm_.c:401
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Use auto detection"
+msgstr ""
+
+#: ../../network/netconnect.pm:1
#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+msgid "Choose the profile to configure"
+msgstr "Абярыце асноўнага карыстальнiка:"
-#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
-#, fuzzy
-msgid "Local Printer"
-msgstr "Лакальны прынтэр"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"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 ""
-#: ../../printer/printerdrake.pm_.c:526
+#: ../../network/netconnect.pm:1
+#, c-format
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, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:530
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "URI прынтэру"
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"\n"
+"\n"
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press OK to continue."
+msgstr ""
+"\n"
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../printer/printerdrake.pm_.c:539
-#, fuzzy
-msgid "No printer found!"
-msgstr "Лакальны прынтэр"
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "We are now going to configure the %s connection."
+msgstr ""
+"\n"
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../printer/printerdrake.pm_.c:548
-#, fuzzy
-msgid "Available printers"
-msgstr "Даступныя пакеты"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection & configuration"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Configure the connection"
+msgstr "Настройка сеткi"
-#: ../../printer/printerdrake.pm_.c:552
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Disconnect"
+msgstr "Настройка ISDN"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Connect"
+msgstr "Iмя злучэння"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
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"
+"\n"
+"You can reconfigure your connection."
msgstr ""
+"\n"
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../printer/printerdrake.pm_.c:553
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
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"
+"\n"
+"You can connect to the Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "You are not currently connected to the Internet."
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
-#: ../../printer/printerdrake.pm_.c:555
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
-#: ../../printer/printerdrake.pm_.c:556
-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 "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "You are currently connected to the Internet."
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "Proxy павiнен быць http://..."
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "Proxy павiнен быць http://..."
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Proxies configuration"
+msgstr "Настройка proxy кэшуючых сервераў"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway device"
+msgstr "Прылада-шлюз"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:558
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server"
+msgstr "DNS сервер"
+
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
msgstr ""
+"Увядзiце iмя сваёй машыны (host).\n"
+"Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
+"напрыклад ``mybox.mylab.myco.com''.\n"
+"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
-#: ../../printer/printerdrake.pm_.c:559
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:561
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:565
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "URI прынтэру"
+#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
-#: ../../printer/printerdrake.pm_.c:584
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Настройка"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Start at boot"
+msgstr "Стварыць загр. дыск"
-#: ../../printer/printerdrake.pm_.c:633
-msgid "Remote lpd Printer Options"
-msgstr "Опцыi аддаленага прынтэру lpd"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Network Hotplugging"
+msgstr "Канфiгурацыя сеткi"
-#: ../../printer/printerdrake.pm_.c:634
-#, fuzzy
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+#: ../../network/network.pm:1
+#, c-format
+msgid "Track network card id (useful for laptops)"
msgstr ""
-"Для настройкi аддаленай чаргi друку вам патрэбна\n"
-"пазначыць iмя аддаленага сервера i iмя чаргi друку,\n"
-"у якую аддалены сервер будзе адпраўляць заданнi."
-#: ../../printer/printerdrake.pm_.c:635
-#, fuzzy
-msgid "Remote host name"
-msgstr "Аддалены вузел"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "(bootp/dhcp/zeroconf)"
+msgstr "(bootp/dhcp)"
-#: ../../printer/printerdrake.pm_.c:636
-#, fuzzy
-msgid "Remote printer name"
-msgstr "Аддалены прынтэр"
+#: ../../network/network.pm:1
+#, c-format
+msgid "Automatic IP"
+msgstr "Аўтаматычны IP"
-#: ../../printer/printerdrake.pm_.c:639
-#, fuzzy
-msgid "Remote host name missing!"
-msgstr "Аддалены вузел"
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Netmask"
+msgstr "Маска сеткi"
-#: ../../printer/printerdrake.pm_.c:643
-#, fuzzy
-msgid "Remote printer name missing!"
-msgstr "Аддалены вузел"
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "IP address"
+msgstr "IP адрас"
-#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#: ../../network/network.pm:1
#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "Дубляванне пункту манцiравання %s"
+msgid " (driver %s)"
+msgstr "Сервер XFree86: %s\n"
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Scanning network..."
-msgstr "Якi тып вашага ISDN злучэння?"
+#: ../../network/network.pm:1
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Настройка сеткавай прылады %s"
-#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
+#: ../../network/network.pm:1
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+msgid ""
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
msgstr ""
+"Калi ласка, увядзiце IP канфiгурацыю для вашай машыны.\n"
+"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
+"натацыi (напрыклад, 1.2.3.4)."
-#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"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/shorewall.pm:1
+#, c-format
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fixes after installation."
+msgstr ""
+"Увага! Знойдзена існуючая сiстэма сеткавай бяспекi (firewall). Вам магчыма "
+"спатрэбіцца скарэктаваць яе пасля ўсталявання."
+
+#: ../../network/shorewall.pm:1
+#, c-format
+msgid "Firewalling configuration detected!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Password"
+msgstr "Пароль для ўваходу"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Login (user name)"
+msgstr "Iмя для ўваходу (iмя карыстальнiку)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgid "Connection timeout (in sec)"
+msgstr "Iмя злучэння"
-#: ../../printer/printerdrake.pm_.c:795
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Опцыi прынтэру SMB (Windows 9x/NT)"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Connection speed"
+msgstr "Iмя злучэння"
-#: ../../printer/printerdrake.pm_.c:796
-#, fuzzy
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Dialing mode"
+msgstr "Рэжым злучэння"
+
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "Choose your country"
+msgstr "Выбар клавiятуры"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 правайдару"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 правайдару"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider phone number"
+msgstr "Нумар тэлефону правайдара"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Iмя правайдару, напрыклад правайдар.net"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Your personal phone number"
+msgstr "Ваш асабiсты тэлефонны нумар"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_1"
+msgstr "IO_1 карты"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_0"
+msgstr "IO_0 карты"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO"
+msgstr "IO карты"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IRQ"
+msgstr "IRQ карты"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Калi ласка, запоўнiце цi пазначце поле нiжэй"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Connection Configuration"
+msgstr "Настройка далучэння да Iнтэрнэту"
+
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
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 "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
+"The system doesn't seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-"Для друку на прынтэры SMB неабходна пазначыць iмя хосту SMB (не заўсёды "
-"супадае з iменем у сетцы TCP/IP) i адрас IP сервера друку, а таксама iмя "
-"рэсурсу, якi спалучаны з выбраным прынтэрам, iмя карыстальнiку, пароль i "
-"iнфармацыю аб працоўнай групе."
+"\n"
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr ""
+
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Testing your connection..."
+msgstr "Якi тып вашага ISDN злучэння?"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Internet configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printer/printerdrake.pm_.c:797
+#: ../../partition_table/raw.pm:1
+#, c-format
msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:799
-msgid "SMB server host"
-msgstr "Iмя серверу SMB"
+#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " (Default)"
+msgstr " (Па дамаўленню)"
-#: ../../printer/printerdrake.pm_.c:800
-msgid "SMB server IP"
+#: ../../printer/cups.pm:1
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
msgstr "IP сервера SMB"
-#: ../../printer/printerdrake.pm_.c:801
-msgid "Share name"
-msgstr "Iмя для размеркаванага рэсурсу"
+#: ../../printer/cups.pm:1 ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Remote Printers"
+msgstr "Аддалены прынтэр"
-#: ../../printer/printerdrake.pm_.c:804
-msgid "Workgroup"
-msgstr "Працоўная група"
+#: ../../printer/cups.pm:1 ../../printer/data.pm:1
+#, c-format
+msgid "CUPS"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:806
-#, fuzzy
-msgid "Auto-detected"
-msgstr "Аддалены прынтэр"
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on this machine)"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:816
-msgid "Either the server name or the server's IP must be given!"
+#: ../../printer/cups.pm:1
+#, fuzzy, c-format
+msgid "(on %s)"
+msgstr "(модуль %s)"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:820
-msgid "Samba share name missing!"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:826
-msgid "SECURITY WARNING!"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:827
+#: ../../printer/data.pm:1
#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+msgid "LPD"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:837
+#: ../../printer/data.pm:1
#, c-format
-msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
-"\n"
+msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:840
-msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
-"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:911
-msgid "NetWare Printer Options"
-msgstr "Опцыi прынтэру NetWare"
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ - Print, Don't Queue"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:912
-#, fuzzy
-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 "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
+#: ../../printer/detect.pm:1
+#, c-format
+msgid "Unknown Model"
msgstr ""
-"Для друку на прынтэры NetWare неабходна пазначыць iмя серверу друку NetWare "
-"(не заўсёды супадае з iменем у сетцы TCP/IP) i iмя чаргi друку, якая "
-"адпавядае абранаму прынтэру, а таксама iмя карыстальнiку i пароль."
-#: ../../printer/printerdrake.pm_.c:913
-msgid "Printer Server"
-msgstr "Сервер друку"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Unknown model"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:914
-msgid "Print Queue Name"
-msgstr "Iмя чаргi друку"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Host %s"
+msgstr "Iмя машыны"
-#: ../../printer/printerdrake.pm_.c:919
-msgid "NCP server name missing!"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network %s"
+msgstr "Сетка:"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Interface \"%s\""
+msgstr "Сеткавы iнтэрфейс"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local network(s)"
+msgstr "сеткавая карта не знойдзена"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:923
-msgid "NCP queue name missing!"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", using command %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
+#: ../../printer/main.pm:1
#, c-format
-msgid ", host \"%s\", port %s"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
+#: ../../printer/main.pm:1
#, c-format
-msgid "Host \"%s\", port %s"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1030
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Опцыi сокету прынтэру"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1032
-msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) into the input fields."
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1033
-#, fuzzy
-msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", printing to %s"
+msgstr "Памылка запiсу ў файл %s"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device"
msgstr ""
-"Каб друкаваць праз сокет друкаркi, вам неабходна забяспечыць\n"
-"iмя прынтэру i магчыма яго нумар порту."
-#: ../../printer/printerdrake.pm_.c:1037
-#, fuzzy
-msgid "Printer host name or IP missing!"
-msgstr "Iмя прынтэру"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1059
-#, fuzzy
-msgid "Printer host name or IP"
-msgstr "Iмя прынтэру"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on USB"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
-msgid "Printer Device URI"
-msgstr "URI прынтэру"
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on parallel port \\#%s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1108
-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."
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", USB printer"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", USB printer \\#%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1123
-msgid "A valid URI must be entered!"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " on parallel port \\#%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1463
-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."
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printers"
+msgstr "Лакальны прынтэр"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Pipe job into a command"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1464
-msgid "Name of printer"
-msgstr "Iмя друкаркi"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Enter a printer device URI"
+msgstr "URI прынтэру"
-#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
-msgid "Description"
-msgstr "Апiсанне"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Printer on NetWare server"
+msgstr "Сервер друку"
-#: ../../printer/printerdrake.pm_.c:1466
-msgid "Location"
-msgstr "Размеркаванне"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Network printer (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
-#: ../../printer/printerdrake.pm_.c:1482
-#, fuzzy
-msgid "Preparing printer database..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer on remote lpd server"
+msgstr "Аддалены сервер lpd"
-#: ../../printer/printerdrake.pm_.c:1578
-#, fuzzy
-msgid "Your printer model"
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Printer on remote CUPS server"
+msgstr "Аддалены сервер CUPS"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Remote printer"
msgstr "Аддалены прынтэр"
-#: ../../printer/printerdrake.pm_.c:1579
+#: ../../printer/main.pm:1
#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
-msgstr ""
+msgid "Local printer"
+msgstr "Лакальны прынтэр"
-#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
-#, fuzzy
-msgid "The model is correct"
-msgstr "Гэта дакладна?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring applications..."
+msgstr "Настройка прынтэру"
-#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
-#: ../../printer/printerdrake.pm_.c:1589
-#, fuzzy
-msgid "Select model manually"
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printerdrake"
+msgstr "Прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to configure another printer?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remove printer"
msgstr "Аддалены прынтэр"
-#: ../../printer/printerdrake.pm_.c:1606
-#, fuzzy
-msgid "Printer model selection"
-msgstr "Злучэнне прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Know how to use this printer"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-#: ../../printer/printerdrake.pm_.c:1607
-#, fuzzy
-msgid "Which printer model do you have?"
-msgstr "Якi тып друкаркi вы маеце?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print test pages"
+msgstr "Друк тэставых старонак"
-#: ../../printer/printerdrake.pm_.c:1608
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1611
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1697
-#, fuzzy
-msgid "OKI winprinter configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1698
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
-#, fuzzy
-msgid "Lexmark inkjet configuration"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Default printer"
+msgstr "Лакальны прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Set this printer as the default"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer options"
+msgstr "Опцыi прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model, driver"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer name, description, location"
+msgstr "Злучэнне прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer connection type"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Learn how to use this printer"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Raw printer"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do it!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Close"
+msgstr "Порт мышы"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Printer %s\n"
+"What do you want to modify on this printer?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Modify printer configuration"
msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printer/printerdrake.pm_.c:1719
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Add a new printer"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Normal Mode"
+msgstr "Звычайны"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Change the printing system"
+msgstr "Настройка сеткi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing"
+msgstr "Прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS configuration"
+msgstr "Настройка"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
+"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 ""
+"Тут змяшчаюцца чэргi друку.\n"
+"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../printer/printerdrake.pm_.c:1746
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Тут змяшчаюцца чэргi друку.\n"
+"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../printer/printerdrake.pm_.c:1749
-msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing system: "
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Would you like to configure printing?"
+msgstr "Жадаеце настроiць прынтэр?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing Printerdrake..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking installed software..."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1750
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing Foomatic..."
+msgstr "Усталяванне пакету %s"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Failed to configure printer \"%s\"!"
+msgstr "Настройка прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Настройка прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Reading printer data..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Select Printer Spooler"
+msgstr "Выбар тыпу злучэння прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Усталяванне пакету %s"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Памеры экрану: %s\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Your printer belongs to the group of GDI laser printers (winprinters) sold "
-"by different manufacturers which uses the Zenographics ZJ-stream raster "
-"format for the data sent to the printer. The driver for these printers is "
-"still in a very early development stage and so it will perhaps not always "
-"work properly. Especially it is possible that the printer only works when "
-"you choose the A4 paper size.\n"
-"\n"
-"Some of these printers, as the HP LaserJet 1000, for which this driver was "
-"originally created, need their firmware to be uploaded to them after they "
-"are turned on. In the case of the HP LaserJet 1000 you have to search the "
-"printer's Windows driver CD or your Windows partition for the file "
-"\"sihp1000.img\" and upload the file to the printer with one of the "
-"following commands:\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-" lpr -o raw sihp1000.img\n"
-" cat sihp1000.img > /dev/usb/lp0\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
"\n"
-"The first command can be given by any normal user, the second must be given "
-"as root. After having done so you can print normally.\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1972
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Starting the printing system at boot time"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer default settings\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
+"This printing system runs a daemon (background process) which waits for "
+"print jobs and handles them. This daemon is also accessable by remote "
+"machines through the network and so it is a possible point for attacks. "
+"Therefore only a few selected daemons are started by default in this "
+"security level.\n"
+"\n"
+"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1981
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be an integer number!"
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1985
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "paranoid"
+msgstr "Паранаiдальны"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "high"
+msgstr "Высокi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Restarting printing system..."
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuration of a remote printer"
+msgstr "Настройка прынтэру"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be a number!"
+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 ""
-#: ../../printer/printerdrake.pm_.c:1989
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s out of range!"
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network is accessable after booting your "
+"system and correct the configuration using the Mandrake Control Center, "
+"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
+"printer, also using the Mandrake Control Center, section \"Hardware\"/"
+"\"Printer\""
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2028
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "Configure the network now"
+msgstr "Настройка сеткi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Go on without configuring the network"
+msgstr "Настройка сеткi"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
-msgstr "Жадаеце пратэсцiраваць друк?"
+"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 "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2051
-#, fuzzy
-msgid "Test pages"
-msgstr "Праверка партоў"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Network functionality not configured"
+msgstr "Манiтор пакуль не настроены"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Starting network..."
+msgstr "Якi тып вашага ISDN злучэння?"
-#: ../../printer/printerdrake.pm_.c:2052
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Refreshing printer data..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2056
-#, fuzzy
-msgid "No test pages"
-msgstr "Так, надрукаваць абедзве старонкi тэксту"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Transfer printer configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../printer/printerdrake.pm_.c:2057
-#, fuzzy
-msgid "Print"
-msgstr "Прынтэр"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transferring %s..."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2114
-#, fuzzy
-msgid "Standard test page"
-msgstr "Стандартны"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "New printer name"
+msgstr "Iмя друкаркi"
-#: ../../printer/printerdrake.pm_.c:2117
-msgid "Alternative test page (Letter)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2120
-#, fuzzy
-msgid "Alternative test page (A4)"
-msgstr "Друк тэставых старонак"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2122
-#, fuzzy
-msgid "Photo test page"
-msgstr "Друк тэставых старонак"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2126
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Друк тэставых старонак"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
-msgid "Printing test page(s)..."
-msgstr "Друк тэставых старонак"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do not transfer printers"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2159
-#, fuzzy, c-format
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"Тэставыя старонкi адпраўлены дэману друку.\n"
-"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
-"Статус друку:\n"
-"%s\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
"\n"
-"Ён працуе нармальна?"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2163
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
-"Тэставыя старонкi адпраўлены дэману друку.\n"
-"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
-"Ён працуе нармальна?"
-#: ../../printer/printerdrake.pm_.c:2170
-msgid "Did it work properly?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
-#, fuzzy
-msgid "Raw printer"
-msgstr "Iмя друкаркi"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2216
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2218
+#: ../../printer/printerdrake.pm:1
+#, c-format
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"
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Your 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 ""
-#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
-#: ../../printer/printerdrake.pm_.c:2248
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
+"Your 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\" on the command line to get more "
+"information.\n"
"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing test page(s)..."
+msgstr "Друк тэставых старонак"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print option list"
+msgstr "Опцыi прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "Адлучэнне ад сеткi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Адлучэнне ад сеткi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Адлучэнне ад сеткi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Адлучэнне ад сеткi"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7955,1215 +10204,1977 @@ msgid ""
"\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2228
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
-#: ../../printer/printerdrake.pm_.c:2255
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 ""
-#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2253
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"<file>\".\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2257
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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 ""
-#: ../../printer/printerdrake.pm_.c:2261
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Did it work properly?"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Тэставыя старонкi адпраўлены дэману друку.\n"
+"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
+"Ён працуе нармальна?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
msgstr ""
+"Тэставыя старонкi адпраўлены дэману друку.\n"
+"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
+"Статус друку:\n"
+"%s\n"
+"\n"
+"Ён працуе нармальна?"
-#: ../../printer/printerdrake.pm_.c:2271
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgid "Do not print any test page"
+msgstr "Друк тэставых старонак"
-#: ../../printer/printerdrake.pm_.c:2272
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgid "Photo test page"
+msgstr "Друк тэставых старонак"
-#: ../../printer/printerdrake.pm_.c:2274
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgid "Alternative test page (A4)"
+msgstr "Друк тэставых старонак"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (Letter)"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2275
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Адлучэнне ад сеткi"
+msgid "Standard test page"
+msgstr "Стандартны"
-#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
-#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
-#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
-#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
-#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
-#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
-#, fuzzy
-msgid "Close"
-msgstr "Порт мышы"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Print"
+msgstr "Прынтэр"
-#: ../../printer/printerdrake.pm_.c:2281
-#, fuzzy
-msgid "Print option list"
-msgstr "Опцыi прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "No test pages"
+msgstr "Так, надрукаваць абедзве старонкi тэксту"
-#: ../../printer/printerdrake.pm_.c:2301
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Your 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\" on the command line to get more "
-"information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"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 "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2322
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Test pages"
+msgstr "Праверка партоў"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Your 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."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
+msgstr "Жадаеце пратэсцiраваць друк?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s out of range!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
-#: ../../printer/printerdrake.pm_.c:2990
-#, fuzzy
-msgid "Reading printer data..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be a number!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
-#: ../../printer/printerdrake.pm_.c:2426
-#, fuzzy
-msgid "Transfer printer configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be an integer number!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2365
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2368
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2370
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2372
-msgid "LPD and LPRng do not support IPP printers.\n"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Lexmark inkjet configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2374
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2375
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "OKI winprinter configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Find the correct model in the list when a wrong model or "
+"\"Raw printer\" is highlighted."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2376
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Which printer model do you have?"
+msgstr "Якi тып друкаркi вы маеце?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer model selection"
+msgstr "Злучэнне прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Reading printer database..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Select model manually"
+msgstr "Аддалены прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The model is correct"
+msgstr "Гэта дакладна?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"For your printer Printerdrake has found:\n"
+"\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2379
-msgid "Do not transfer printers"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Your printer model"
+msgstr "Аддалены прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing printer database..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Location"
+msgstr "Размеркаванне"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Description"
+msgstr "Апiсанне"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Name of printer"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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 ""
-#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
-msgid "Transfer"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter Printer Name and Comments"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2392
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2400
-msgid "Name of printer should contain only letters, numbers and the underscore"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2405
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2413
-#, fuzzy
-msgid "New printer name"
-msgstr "Iмя друкаркi"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing mtools packages..."
+msgstr "Усталяванне пакету %s"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing SANE packages..."
+msgstr "Усталяванне пакету %s"
-#: ../../printer/printerdrake.pm_.c:2416
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Transferring %s..."
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2427
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing HPOJ package..."
+msgstr "Усталяванне пакету %s"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
+"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2437
-#, fuzzy
-msgid "Refreshing printer data..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A command line must be entered!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
-#: ../../printer/printerdrake.pm_.c:2528
-#, fuzzy
-msgid "Configuration of a remote printer"
-msgstr "Настройка прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Command line"
+msgstr "Iмя дамену"
-#: ../../printer/printerdrake.pm_.c:2446
-#, fuzzy
-msgid "Starting network..."
-msgstr "Якi тып вашага ISDN злучэння?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can specify any arbitrary command line into which the job should be "
+"piped instead of being sent directly to a printer."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
-#: ../../printer/printerdrake.pm_.c:2485
-#, fuzzy
-msgid "Configure the network now"
-msgstr "Настройка сеткi"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Pipe into command"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2480
-#, fuzzy
-msgid "Network functionality not configured"
-msgstr "Манiтор пакуль не настроены"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Дубляванне пункту манцiравання %s"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A valid URI must be entered!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2481
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Device URI"
+msgstr "URI прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
+"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 ""
-#: ../../printer/printerdrake.pm_.c:2484
-#, fuzzy
-msgid "Go on without configuring the network"
-msgstr "Настройка сеткi"
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Port"
+msgstr "Порт"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP"
+msgstr "Iмя прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The port number should be an integer!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP missing!"
+msgstr "Iмя прынтэру"
-#: ../../printer/printerdrake.pm_.c:2518
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
+"Каб друкаваць праз сокет друкаркi, вам неабходна забяспечыць\n"
+"iмя прынтэру i магчыма яго нумар порту."
-#: ../../printer/printerdrake.pm_.c:2519
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2529
-#, fuzzy
-msgid "Restarting printing system..."
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "TCP/Socket Printer Options"
+msgstr "Опцыi сокету прынтэру"
-#: ../../printer/printerdrake.pm_.c:2568
-#, fuzzy
-msgid "high"
-msgstr "Высокi"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2568
-#, fuzzy
-msgid "paranoid"
-msgstr "Паранаiдальны"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Scanning network..."
+msgstr "Якi тып вашага ISDN злучэння?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer auto-detection"
+msgstr "Аддалены прынтэр"
-#: ../../printer/printerdrake.pm_.c:2569
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Installing a printing system in the %s security level"
+msgid "NCP queue name missing!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2570
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP server name missing!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print Queue Name"
+msgstr "Iмя чаргi друку"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer Server"
+msgstr "Сервер друку"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
+"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 "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
+msgstr ""
+"Для друку на прынтэры NetWare неабходна пазначыць iмя серверу друку NetWare "
+"(не заўсёды супадае з iменем у сетцы TCP/IP) i iмя чаргi друку, якая "
+"адпавядае абранаму прынтэру, а таксама iмя карыстальнiку i пароль."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NetWare Printer Options"
+msgstr "Опцыi прынтэру NetWare"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
"\n"
-"Do you really want to configure printing on this machine?"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2604
-#, fuzzy
-msgid "Starting the printing system at boot time"
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2605
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
-msgid "Checking installed software..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SECURITY WARNING!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Samba share name missing!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2630
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Памеры экрану: %s\n"
+msgid "Auto-detected"
+msgstr "Аддалены прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Workgroup"
+msgstr "Працоўная група"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Share name"
+msgstr "Iмя для размеркаванага рэсурсу"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "IP сервера SMB"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server host"
+msgstr "Iмя серверу SMB"
-#: ../../printer/printerdrake.pm_.c:2636
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "Усталяванне пакету %s"
+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 "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
+msgstr ""
+"Для друку на прынтэры SMB неабходна пазначыць iмя хосту SMB (не заўсёды "
+"супадае з iменем у сетцы TCP/IP) i адрас IP сервера друку, а таксама iмя "
+"рэсурсу, якi спалучаны з выбраным прынтэрам, iмя карыстальнiку, пароль i "
+"iнфармацыю аб працоўнай групе."
-#: ../../printer/printerdrake.pm_.c:2685
-#, fuzzy
-msgid "Select Printer Spooler"
-msgstr "Выбар тыпу злучэння прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Опцыi прынтэру SMB (Windows 9x/NT)"
-#: ../../printer/printerdrake.pm_.c:2686
-#, fuzzy
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Адлучэнне ад сеткi"
-#: ../../printer/printerdrake.pm_.c:2720
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Настройка прынтэру"
+msgid "Remote printer name missing!"
+msgstr "Аддалены вузел"
-#: ../../printer/printerdrake.pm_.c:2731
-#, fuzzy
-msgid "Installing Foomatic..."
-msgstr "Усталяванне пакету %s"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote host name missing!"
+msgstr "Аддалены вузел"
-#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
-#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
-msgid "Printer options"
-msgstr "Опцыi прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote printer name"
+msgstr "Аддалены прынтэр"
-#: ../../printer/printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Preparing Printerdrake..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remote host name"
+msgstr "Аддалены вузел"
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Настройка прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
+msgstr ""
+"Для настройкi аддаленай чаргi друку вам патрэбна\n"
+"пазначыць iмя аддаленага сервера i iмя чаргi друку,\n"
+"у якую аддалены сервер будзе адпраўляць заданнi."
-#: ../../printer/printerdrake.pm_.c:2845
-#, fuzzy
-msgid "Would you like to configure printing?"
-msgstr "Жадаеце настроiць прынтэр?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote lpd Printer Options"
+msgstr "Опцыi аддаленага прынтэру lpd"
-#: ../../printer/printerdrake.pm_.c:2857
-msgid "Printing system: "
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Manual configuration"
+msgstr "Настройка"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must choose/enter a printer/device!"
+msgstr "URI прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2915
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the port that your printer is connected to."
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
+"Please choose the port that your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-"Тут змяшчаюцца чэргi друку.\n"
-"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../printer/printerdrake.pm_.c:2916
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the printer to which the print jobs should go."
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
+"Please choose the printer you want to set up. The configuration of the "
+"printer will work fully automatically. If your printer was not correctly "
+"detected or if you prefer a customized printer configuration, turn on "
+"\"Manual configuration\"."
msgstr ""
-"Тут змяшчаюцца чэргi друку.\n"
-"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../printer/printerdrake.pm_.c:2942
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Here is a list of all auto-detected printers. "
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2960
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Настройка сеткi"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Currently, no alternative possibility is available"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
-#, fuzzy
-msgid "Normal Mode"
-msgstr "Звычайны"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The configuration of the printer will work fully automatically. If your "
+"printer was not correctly detected or if you prefer a customized printer "
+"configuration, turn on \"Manual configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
-#: ../../printer/printerdrake.pm_.c:3363
-#, fuzzy
-msgid "Do you want to configure another printer?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The following printer was auto-detected. "
+msgstr "Наступныя пакеты будуць выдалены"
-#: ../../printer/printerdrake.pm_.c:3211
-#, fuzzy
-msgid "Modify printer configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer to which the print jobs should go or enter a "
+"device name/file name in the input line"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3213
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up or enter a device name/file "
+"name in the input line"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Alternatively, you can specify a device name/file name in the input line"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"If it is not the one you want to configure, enter a device name/file name in "
+"the input line"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Available printers"
+msgstr "Даступныя пакеты"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "No printer found!"
+msgstr "Лакальны прынтэр"
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "You must enter a device or file name!"
+msgstr "URI прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+"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, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3217
-msgid "Do it!"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printer"
+msgstr "Лакальны прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "USB printer \\#%s"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer on parallel port \\#%s"
+msgstr "Iмя прынтэру"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "Дубляванне пункту манцiравання %s"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
-#, fuzzy
-msgid "Printer connection type"
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change "
+"the default option settings (paper input tray, printout quality, ...), "
+"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
+"Center."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
-#, fuzzy
-msgid "Printer name, description, location"
-msgstr "Злучэнне прынтэру"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
-msgid "Printer manufacturer, model, driver"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected directly to the local network"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
-msgid "Printer manufacturer, model"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect printers connected to this machine"
+msgstr "Аддалены прынтэр"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
-msgid "Set this printer as the default"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) and your Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
-#, fuzzy
-msgid "Print test pages"
-msgstr "Друк тэставых старонак"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Searching for new printers..."
+msgstr "Даступныя пакеты"
-#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
-#, fuzzy
-msgid "Remove printer"
-msgstr "Аддалены прынтэр"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3282
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-#: ../../printer/printerdrake.pm_.c:3307
-#, fuzzy
-msgid "Default printer"
-msgstr "Лакальны прынтэр"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "Жадаеце пратэсцiраваць друк?"
-#: ../../printer/printerdrake.pm_.c:3308
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3310
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3312
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3313
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3315
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"is directly connected to your system"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "and %d unknown printers"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "and one unknown printer"
+msgstr "Iмя друкаркi"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Checking your system..."
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "IP address of host/network:"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3317
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+msgid "This host/network is already in the list, it cannot be added again.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.0/255.255.255.0\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.0/24\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.1.*\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.0.0.*\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.194\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3318
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Examples for correct IPs:\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The entered host/network IP is not correct.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"Choose the network or host on which the local printers should be made "
+"available:"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3325
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+msgid "Sharing of local printers"
+msgstr "Даступныя пакеты"
-#: ../../printer/printerdrake.pm_.c:3329
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgid "Remove selected host/network"
+msgstr "Выдалiць чаргу друку"
-#: ../../raid.pm_.c:35
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Не атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"
-
-#: ../../raid.pm_.c:137
-msgid "mkraid failed"
-msgstr "mkraid не працаздольны"
+msgid "Edit selected host/network"
+msgstr ""
-#: ../../raid.pm_.c:137
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add host/network"
+msgstr ""
-#: ../../raid.pm_.c:153
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
+msgid ""
+"These are the machines and networks on which the locally connected printer"
+"(s) should be available:"
+msgstr ""
-#: ../../security/main.pm_.c:36
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Standard: This is the standard security recommended for a computer that will "
-"be used to connect\n"
-" to the Internet as a client.\n"
+"When this option is turned on, on every startup of CUPS it is automatically "
+"made sure that\n"
"\n"
-"High: There are already some restrictions, and more automatic checks "
-"are run every night.\n"
+"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
-"Higher: The security is now high enough to use the system as a server "
-"which can accept\n"
-" connections from many clients. If your machine is only a "
-"client on the Internet, you\n"
-"\t should choose a lower level.\n"
+"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
-"Paranoid: This is similar to the previous level, but the system is entirely "
-"closed and security\n"
-" features are at their maximum\n"
+"- when printer information is broadcasted, it does not contain \"localhost\" "
+"as the server name.\n"
"\n"
-"Security Administrator:\n"
-" If the 'Security Alerts' option is set, security alerts will "
-"be sent to this user (username or\n"
-"\t email)"
+"If some of these measures lead to problems for you, turn this option off, "
+"but then you have to take care of these points."
msgstr ""
-#: ../../security/main.pm_.c:66
-#, fuzzy
-msgid "Security Level:"
-msgstr "Настройкi ўзроўня бяспекi"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Automatic correction of CUPS configuration"
+msgstr "Настройка мадэму"
-#: ../../security/main.pm_.c:77
+#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid " (default value: %s)"
-msgstr " ? (змоўчанне %s) "
+msgid "No remote machines"
+msgstr "Аддалены прынтэр"
-#: ../../security/main.pm_.c:113
-#, fuzzy
-msgid "Security Alerts:"
-msgstr "Настройкi ўзроўня бяспекi"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Custom configuration"
+msgstr "Настройка"
-#: ../../security/main.pm_.c:115
-#, fuzzy
-msgid "Security Administrator:"
-msgstr "Опцыi аддаленага прынтэру lpd"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing on hosts/networks: "
+msgstr "Прынтэр"
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "Network Options"
-msgstr "Опцыi модулю:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Automatically find available printers on remote machines"
+msgstr ""
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "System Options"
-msgstr "Опцыi модулю:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printers on this machine are available to other computers"
+msgstr ""
-#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need explanations, click on Help.\n"
+"You can also decide here whether printers on remote machines should be "
+"automatically made available on this machine."
msgstr ""
-#: ../../security/main.pm_.c:177
-msgid "Periodic Checks"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can choose whether the printers connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../security/main.pm_.c:191
-#, fuzzy
-msgid "Please wait, setting security level..."
-msgstr "Настройкi ўзроўня бяспекi"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS printer sharing configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../security/main.pm_.c:197
-#, fuzzy
-msgid "Please wait, setting security options..."
-msgstr "Падрыхтоўка ўсталяваньня"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
-#: ../../services.pm_.c:19
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"Printers on remote CUPS servers do not need to be configured here; these "
+"printers will be automatically detected."
msgstr ""
+"Аддалены CUPS сервер не патрабуе ад Вас настройкі прынтэру\n"
+"на гэтай машыне, ён будзе знойдзены аўтаматычна.\n"
+"Калі Вы не ўпэўнены, абярыце \"Аддалены сервер CUPS\"."
-#: ../../services.pm_.c:20
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, перыядычны камандны планавальнiк."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "How is the printer connected?"
+msgstr "Як прынтар далучаны?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Connection"
+msgstr "Выбар тыпу злучэння прынтэру"
-#: ../../services.pm_.c:21
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"apmd is used for monitoring batery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Arguments: (umask)\n"
+"\n"
+"Set the user umask."
msgstr ""
-"ampd выкарыстоўваецца для адслежвання статусу батарэi i вядзення "
-"статыстыкi.\n"
-"Яго можна выкарыстоўваць для выключэння машыны пры нiзкiм зарадзе батарэi."
-#: ../../services.pm_.c:23
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
msgstr ""
-"Каманды, якiя выконваюцца, фiксуюцца па камандзе i часе яе выканання\n"
-"i выконваюцца групы каманд, калi загрузка памяцi нiжэй дастатковай."
-#: ../../services.pm_.c:25
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
-"cron - стандартная UNIX праграма, якая выконвае праграмы карыстальнiка\n"
-"праз пазначаныя перыяды часу. Vixie cron дадае рад дапаўненняў да "
-"стандартнага\n"
-"UNIX cron, уключаючы лепшы ўзровень бяспекi i моцныя канфiгурацыйныя опцыi."
-#: ../../services.pm_.c:28
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of sgid files."
msgstr ""
-"GPM дадае падтрымку мышы да праграмаў, якiя працуюць у тэкставым рэжыме,\n"
-"такiх як Midnight Commander. Гэта дазваляе выкарыстоўваць мыш пры "
-"капiраваннi i ўстаўцы,\n"
-"i ўключае падтрымку ўсплываючых (pop-up) меню ў тэкставым рэжыме."
-#: ../../services.pm_.c:31
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check open ports."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"if set, send the mail report to this email address else send it to root."
msgstr ""
-#: ../../services.pm_.c:33
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result by mail."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check files/directories writable by everybody."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, reports check result to tty."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run some checks against the rpm database."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run chkrootkit checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check permissions of files in the users' home."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of suid root files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result to syslog."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"if set to yes, check for empty password, or a password while it should be "
+"in /etc/shadow or other users with id 0."
msgstr ""
-"Apache - гэта World Wide Web сервер. Ён выкарыстоўзваеца для абслугоўвання\n"
-"HTML файлаў i CGI."
-#: ../../services.pm_.c:34
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run the daily security checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, verify checksum of the suid/sgid files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check empty password in /etc/shadow."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report unowned files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
msgstr ""
-"Iнтэрнэт суперсервер-дэман (завецца inetd) запускае пры старце \n"
-"колькасць розных iнтэрнэт службаў, якiя неабходны. Яго можна выкарыстоўваць "
-"для пуску\n"
-"шматлікіх службаў, уключаючы telnet, ftp, rsh i rlogin. Блакуючы inetd, "
-"блакуем\n"
-"усе службы, за якiя ён адказвае."
-#: ../../services.pm_.c:38
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
msgstr ""
-"Гэты пакет загружае абраную раскладку клавiятуры як набор з\n"
-"/etc/sysconfig/keyboard. Ёна можа быць абрана таксама з дапамогай "
-"kbdconfig.\n"
-"Вы можаце зрабiць даступнай яе для шматлікіх машынаў."
-#: ../../services.pm_.c:43
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"Arguments: (max, inactive=-1)\n"
+"\n"
+"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
+"\\fP."
msgstr ""
-#: ../../services.pm_.c:45
-msgid "Automatic detection and configuration of hardware at boot."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
msgstr ""
-#: ../../services.pm_.c:46
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
msgstr ""
-#: ../../services.pm_.c:48
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+"Arguments: (arg)\n"
+"\n"
+" Activate/Disable daily security check."
msgstr ""
-"lpd - гэты дэман друку, патрэбны для карэктнай працы lpr. Гэта\n"
-"сервер, якi кiруе працай прынтэру(аў)."
-#: ../../services.pm_.c:50
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"Arguments: (arg)\n"
+"\n"
+"Activate/Disable ethernet cards promiscuity check."
msgstr ""
-#: ../../services.pm_.c:52
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
msgstr ""
-"named (BIND) - гэта сервер даменных iмёнаў, якi выкарыстоўваецца для\n"
-"перакладання iмён вузлоў у IP адрасы."
-#: ../../services.pm_.c:53
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
-"Манцiраваць i разманцiраваць усе сеткавыя файлавыя сiстэмы (NFS),\n"
-" SMB (Lan Manager/Windows) i NCP (Netware) пункты манцiравання."
-#: ../../services.pm_.c:55
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable msec hourly security check."
msgstr ""
-"Актывiзаваць/дэактывiзаваць усе сеткавыя iнтэрфейсы, сканфiгураваныя для\n"
-"старту пры загрузцы сiстэмы."
-#: ../../services.pm_.c:57
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
-"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP сеткi.\n"
-"Гэтая служба забяспечваецца NFS серверам, якi канфiгурыруеца праз\n"
-"/etc/exports файл."
-#: ../../services.pm_.c:60
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
-"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP\n"
-"сеткi. Гэтая служба ўплывае на наяўнасць сувязi памiж NFS файламi."
-#: ../../services.pm_.c:62
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable IP spoofing protection."
msgstr ""
-#: ../../services.pm_.c:64
-msgid "Support the OKI 4w and compatible winprinters."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
-#: ../../services.pm_.c:65
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to "
-"have\n"
-"it installed on machines that don't need it."
+"Arguments: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
+"expression describing what to log (see syslog.conf(5) for more details) and\n"
+"dev the device to report the log."
msgstr ""
-"Падтрымка PCMCIA - гэта звычайна падтрымка такiх рэчаў, як Ethernet i\n"
-"мадэмы ў наўтбуках. Вам няма неабходнасцi канфiгураваць iх, калi на вашай\n"
-"машыне iх няма, цi яна не наўтбук."
-#: ../../services.pm_.c:68
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
+"allow and /etc/at.allow\n"
+"(see man at(1) and crontab(1))."
msgstr ""
-"Portmapper (аглядальнiк партоў) кiруе RPC злучэннямi, якiя звычайна\n"
-"выкарыстоўваюцца такiмi пратаколамi як NFS i NIS. Portmap сервер павiнен "
-"выконвацца\n"
-"на машынах якiя працуюць як серверы для пратаколаў, якiя скарыстоўваюць RPC."
-#: ../../services.pm_.c:71
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"Arguments: ()\n"
+"\n"
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
msgstr ""
-"Postfix - гэта паштовы транспартны агент, праграма, якая\n"
-"перамяшчае пошту з адной машыны на йншую."
-#: ../../services.pm_.c:72
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
msgstr ""
-"Захаваць i аднавiць сiстэмны энтрапiйны пул для высокай якасцi\n"
-"генерацыі выпадковых лікаў."
-#: ../../services.pm_.c:74
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
+"Arguments: (arg)\n"
+"\n"
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
msgstr ""
-#: ../../services.pm_.c:76
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
msgstr ""
-"Дэман маршрутызацыi дазваляе дынамiчным таблiцам IP маршрутызацыi\n"
-"аднаўляцца праз RIP пратакол. RIP выкарыстоўваецца ў малых сетках, больш\n"
-"складаныя пратаколы маршрутызацыi - у вялiкiх сетках."
-#: ../../services.pm_.c:79
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
msgstr ""
-"Пратакол rstat дазваляе карыстальнiкам сеткi атрымлiваць\n"
-"памеры нагрузкi для кожнай машыны сеткi."
-#: ../../services.pm_.c:81
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid direct root login."
msgstr ""
-"Пратакол rusers дазваляе карыстальнiкам сеткi вызначаць, хто\n"
-"ўвайшоў i працуе на машынах ў сетцы."
-#: ../../services.pm_.c:83
+#: ../../security/help.pm:1
+#, c-format
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)."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
msgstr ""
-"Пратакол rwho дае магчымасць карыстальнiкам атрымаць спiс ўсiх\n"
-"карыстальнiкаў, увайшоўшых на машыну, выканаў rwho дэман (падобны на finger)."
-#: ../../services.pm_.c:85
-msgid "Launch the sound system on your machine"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
msgstr ""
-#: ../../services.pm_.c:86
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
msgstr ""
-"Syslog - гэта сродак, з дапамогай якога многiя дэманы запiсваюць "
-"паведамленнi\n"
-"ў розныя файлы статыстыкi. Гэта вельмi добра для агляду працы розных службаў."
-#: ../../services.pm_.c:88
-msgid "Load the drivers for your usb devices."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
msgstr ""
-#: ../../services.pm_.c:89
-#, fuzzy
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Запускае i прыпыняе X Font Server пры загрузцы i выключэннi."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse icmp echo."
+msgstr ""
-#: ../../services.pm_.c:115 ../../services.pm_.c:157
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Абярыце, якiя сервiсы запускаць аўтаматычна пры загрузцы"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
+msgstr ""
-#: ../../services.pm_.c:127
-#, fuzzy
-msgid "Printing"
-msgstr "Прынтэр"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
+msgstr ""
-#: ../../services.pm_.c:128
-#, fuzzy
-msgid "Internet"
-msgstr "цiкава"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../services.pm_.c:131
-msgid "File sharing"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
-#, fuzzy
-msgid "System"
-msgstr "Mouse Systems"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Use libsafe for servers"
+msgstr "Абярыце дадатковыя настройкi для сервера"
-#: ../../services.pm_.c:138
-#, fuzzy
-msgid "Remote Administration"
-msgstr "Опцыi аддаленага прынтэру lpd"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Security level"
+msgstr "Настройкi ўзроўня бяспекi"
-#: ../../services.pm_.c:146
-#, fuzzy
-msgid "Database Server"
-msgstr "Сервер друку"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Please choose the desired security level"
+msgstr "Узровень бяспекi"
-#: ../../services.pm_.c:175
-#, c-format
-msgid "Services: %d activated for %d registered"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "DrakSec Basic Options"
+msgstr "Опцыi"
+
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
+"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
+"Параметры бяспекi ўстаноўлены на максiмум."
-#: ../../services.pm_.c:191
-#, fuzzy
-msgid "Services"
-msgstr "прылада"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
+msgstr ""
+"На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
+"серверу. Узровень бяспекi дастаткова высокi для работы\n"
+"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
-#: ../../services.pm_.c:203
-#, fuzzy
-msgid "running"
-msgstr "Увага!"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
-#: ../../services.pm_.c:203
-#, fuzzy
-msgid "stopped"
-msgstr "Далучыць"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"Гэта стандартны узровень бяспекi, якi рэкамендаваны для камп'ютэру,\n"
+"якi далучаны да Internet у якасцi клiенту. Даданыя новыя праверкi\n"
+"бяспекi."
-#: ../../services.pm_.c:217
-msgid "Services and deamons"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"Passwords are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
+"таксама не рэкамендавана."
-#: ../../services.pm_.c:222
+#: ../../security/level.pm:1
+#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"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. Уваход не абаронены "
+"паролем."
-#: ../../services.pm_.c:229
-#, fuzzy
-msgid "On boot"
-msgstr "Yaboot"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Paranoid"
+msgstr "Паранаiдальны"
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Start"
-msgstr "Стартавае меню"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Higher"
+msgstr "Высокi"
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Stop"
-msgstr "Сектар"
+#: ../../security/level.pm:1
+#, c-format
+msgid "High"
+msgstr "Высокi"
-#: ../../share/advertising/01-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Poor"
+msgstr "Зусім слабы"
-#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Welcome To Crackers"
+msgstr "Сардэчна запрашаем у Crackers"
-#: ../../share/advertising/01-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
-msgid "Get involved in the Free Software world"
-msgstr "Падключэнне"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../share/advertising/02-community.pl_.c:10
-msgid "Want to know more about the Open Source community?"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.1"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:11
+#: ../../share/advertising/02-community.pl:1
+#, c-format
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
-msgid "Get the most from the Internet"
-msgstr "Далучэнне да Iнтэрнэту"
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Want to know more about the Open Source community?"
+msgstr ""
+
+#: ../../share/advertising/02-community.pl:1
+#, fuzzy, c-format
+msgid "Get involved in the Free Software world"
+msgstr "Падключэнне"
-#: ../../share/advertising/03-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+#: ../../share/advertising/03-internet.pl:1
+#, fuzzy, c-format
+msgid "Get the most from the Internet"
+msgstr "Далучэнне да Iнтэрнэту"
+
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:11
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-#: ../../share/advertising/05-games.pl_.c:9
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid "Games"
msgstr "Забавы"
-#: ../../share/advertising/05-games.pl_.c:10
+#: ../../share/advertising/06-mcc.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
-#, fuzzy
+#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#, fuzzy, c-format
msgid "Mandrake Control Center"
msgstr "Далучэнне да Iнтэрнэту"
-#: ../../share/advertising/06-mcc.pl_.c:10
+#: ../../share/advertising/07-desktop.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../share/advertising/07-desktop.pl_.c:9
-#, fuzzy
+#: ../../share/advertising/07-desktop.pl:1
+#, fuzzy, c-format
msgid "User interfaces"
msgstr "Сеткавы iнтэрфейс"
-#: ../../share/advertising/07-desktop.pl_.c:10
-msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
-msgid "Development simplified"
-msgstr "распрацоўшчык"
-
-#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:11
+#: ../../share/advertising/08-development.pl:1
+#, c-format
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server"
+#: ../../share/advertising/08-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.1 is the ultimate development platform"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:10
+#: ../../share/advertising/08-development.pl:1
+#, fuzzy, c-format
+msgid "Development simplified"
+msgstr "распрацоўшчык"
+
+#: ../../share/advertising/09-server.pl:1
+#, c-format
msgid ""
"Transform your machine into a powerful Linux server with a few clicks of "
"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:9
-msgid "Optimize your security"
+#: ../../share/advertising/09-server.pl:1
+#, c-format
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:10
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:11
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
msgid ""
"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:12
-msgid "This product is available on MandrakeStore website"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:9
-msgid "The official MandrakeSoft store"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:9
-msgid "Strategic partners"
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:9
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:11
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:12
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
-msgid "Become a MandrakeExpert"
-msgstr "эксперт"
-
-#: ../../share/advertising/14-mdkexpert.pl_.c:10
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert Corporate"
-msgstr "эксперт"
-
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs"
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, fuzzy, c-format
+msgid "Become a MandrakeExpert"
+msgstr "эксперт"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:9
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:10
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, fuzzy, c-format
+msgid "MandrakeExpert Corporate"
+msgstr "эксперт"
+
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
msgid ""
"MandrakeClub and Mandrake Corporate Club were created for business and "
"private users of Mandrake Linux who would like to directly support their "
@@ -9173,221 +12184,246 @@ msgid ""
"MandrakeClub!"
msgstr ""
-#: ../../standalone.pm_.c:21
-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"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../standalone.pm_.c:40
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version name.\n"
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
+
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone.pm_.c:51
-msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone.pm_.c:57
-msgid ""
-"Font Importation and monitoring "
-"application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone.pm_.c:68
-msgid ""
-"[OPTIONS]...\n"
-"\t --debug print debugging information"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone.pm_.c:70
-msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires "
-"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, "
-"nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, "
-"IP, nbi image name)"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No floppy drive available!"
+msgstr "Дыскавод недаступны"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone.pm_.c:82
-#, fuzzy
-msgid "[keyboard]"
-msgstr "Клавiятура"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Please insert floppy disk:"
+msgstr "Устаўце дыскету ў дыскавод %s"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Write Config"
+msgstr "Настройка X Window"
-#: ../../standalone.pm_.c:83
-msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone.pm_.c:84
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone.pm_.c:93
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Server Configuration"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone.pm_.c:94
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in "
-"MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the "
-"description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone.pm_.c:99
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
-"[--dynamic=dev]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Name Servers:"
+msgstr "NIS сервер:"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Domain Name:"
+msgstr "Iмя дамену"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone.pm_.c:100
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet Mask:"
msgstr ""
-#: ../../standalone.pm_.c:114
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+msgid "Routers:"
msgstr ""
-#: ../../standalone.pm_.c:168
-#, fuzzy
-msgid "Installing packages..."
-msgstr "Усталяванне пакету %s"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Netmask:"
+msgstr "Маска сеткi"
-#: ../../standalone/XFdrake_.c:138
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet:"
+msgstr ""
-#: ../../standalone/XFdrake_.c:142
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
-msgid "Mandrake Terminal Server Configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Config..."
+msgstr "Настройка IDE"
-#: ../../standalone/drakTermServ_.c:253
-#, fuzzy
-msgid "Enable Server"
-msgstr "Сервер друку"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete Client"
+msgstr "Знiшчыць"
-#: ../../standalone/drakTermServ_.c:260
-#, fuzzy
-msgid "Disable Server"
-msgstr "Сервер друку"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Edit Client"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:268
-#, fuzzy
-msgid "Start Server"
-msgstr "NIS сервер:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add Client -->"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:275
-#, fuzzy
-msgid "Stop Server"
-msgstr "NIS сервер:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Allow Thin Clients"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:283
-#, fuzzy
-msgid "Etherboot Floppy/ISO"
-msgstr "Стварыць загр. дыск"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Thin Client"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:288
-msgid "Net Boot Images"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No net boot images created!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:294
-#, fuzzy
-msgid "Add/Del Users"
-msgstr "Дадаць карыстальнiка"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "type: %s"
+msgstr "Тып: "
-#: ../../standalone/drakTermServ_.c:299
-msgid "Add/Del Clients"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:328
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Add User -->"
+msgstr "Дадаць карыстальнiка"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
-"\n"
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../standalone/drakTermServ_.c:332
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
-"\n"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Delete All NBIs"
+msgstr "Абярыце файл"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "<-- Delete"
+msgstr "Знiшчыць"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No NIC selected!"
+msgstr "Размеркаванне"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:365
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
"drakTermServ Overview\n"
"\t\t\t \n"
@@ -9416,7 +12452,7 @@ msgid ""
"\t\t\t\thost curly {\n"
"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\t#type fat;\n"
"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
"nbi\";\n"
"\t\t\t\t}\n"
@@ -9427,8 +12463,8 @@ msgid ""
"functionality\n"
"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
-"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
-"either be \"thin\"*/\n"
+"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"\n"
"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
"while fat clients run most\n"
"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
@@ -9517,223 +12553,143 @@ msgid ""
" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
-"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
" \n"
"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:488
-msgid "Boot Floppy"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:490
-msgid "Boot ISO"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:559
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
-msgid "This will take a few minutes."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:573
-msgid "No kernel selected!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:576
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:587
-#, fuzzy
-msgid "No nic selected!"
-msgstr "Размеркаванне"
-
-#: ../../standalone/drakTermServ_.c:590
-msgid "Build All Kernels -->"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:604
-#, fuzzy
-msgid "<-- Delete"
-msgstr "Знiшчыць"
-
-#: ../../standalone/drakTermServ_.c:611
-#, fuzzy
-msgid "Delete All NBIs"
-msgstr "Абярыце файл"
-
-#: ../../standalone/drakTermServ_.c:668
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:673
-#, fuzzy
-msgid "Add User -->"
-msgstr "Дадаць карыстальнiка"
-
-#: ../../standalone/drakTermServ_.c:681
-msgid "<-- Del User"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:720
+#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
-msgid "type: %s"
-msgstr "Тып: "
-
-#: ../../standalone/drakTermServ_.c:753
-msgid "No net boot images created!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:773
-msgid "Thin Client"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:775
-msgid "Allow Thin Clients"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:778
-msgid "Add Client -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:821
-msgid "<-- Edit Client"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:837
-#, fuzzy
-msgid "Delete Client"
-msgstr "Знiшчыць"
-
-#: ../../standalone/drakTermServ_.c:843
-#, fuzzy
-msgid "dhcpd Config..."
-msgstr "Настройка IDE"
-
-#: ../../standalone/drakTermServ_.c:876
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
+msgid "Add/Del Users"
+msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakTermServ_.c:894
-msgid "Subnet:"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:901
-#, fuzzy
-msgid "Netmask:"
-msgstr "Маска сеткi"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Etherboot Floppy/ISO"
+msgstr "Стварыць загр. дыск"
-#: ../../standalone/drakTermServ_.c:908
-msgid "Routers:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Stop Server"
+msgstr "NIS сервер:"
-#: ../../standalone/drakTermServ_.c:915
-msgid "Subnet Mask:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Start Server"
+msgstr "NIS сервер:"
-#: ../../standalone/drakTermServ_.c:922
-msgid "Broadcast Address:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Disable Server"
+msgstr "Сервер друку"
-#: ../../standalone/drakTermServ_.c:929
-#, fuzzy
-msgid "Domain Name:"
-msgstr "Iмя дамену"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Enable Server"
+msgstr "Сервер друку"
-#: ../../standalone/drakTermServ_.c:937
-#, fuzzy
-msgid "Name Servers:"
-msgstr "NIS сервер:"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakTermServ_.c:948
-msgid "IP Range Start:"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Remove the last item"
+msgstr "Фарматаванне вiртуальнага раздзелу %s"
-#: ../../standalone/drakTermServ_.c:949
-msgid "IP Range End:"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Add an item"
+msgstr "Дадаць карыстальнiка"
-#: ../../standalone/drakTermServ_.c:1001
-#, fuzzy
-msgid "dhcpd Server Configuration"
-msgstr "Заканчэнне настройкi"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Auto Install"
+msgstr "Усталёўка"
-#: ../../standalone/drakTermServ_.c:1002
+#: ../../standalone/drakautoinst:1
+#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:1005
-msgid "Dynamic IP Address Pool:"
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakTermServ_.c:1018
-#, fuzzy
-msgid "Write Config"
-msgstr "Настройка X Window"
-
-#: ../../standalone/drakTermServ_.c:1120
-#, fuzzy
-msgid "Please insert floppy disk:"
-msgstr "Устаўце дыскету ў дыскавод %s"
-
-#: ../../standalone/drakTermServ_.c:1124
-msgid "Couldn't access the floppy!"
-msgstr ""
+#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Congratulations!"
+msgstr "Прыміце вiншаваннi!"
-#: ../../standalone/drakTermServ_.c:1126
-msgid "Floppy can be removed now"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1129
-#, fuzzy
-msgid "No floppy drive available!"
-msgstr "Дыскавод недаступны"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Creating auto install floppy"
+msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../standalone/drakTermServ_.c:1138
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Etherboot ISO image is %s"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:1140
-msgid "Something went wrong! - Is mkisofs installed?"
+msgid "manual"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1159
-msgid "Need to create /etc/dhcpd.conf first!"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1451
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Automatic Steps Configuration"
+msgstr "Настройка мадэму"
-#: ../../standalone/drakautoinst_.c:40
-#, fuzzy
-msgid "Error!"
-msgstr "Памылка"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "replay"
+msgstr "Перазагрузiць"
-#: ../../standalone/drakautoinst_.c:41
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:43
-#, fuzzy
-msgid "Auto Install Configurator"
-msgstr "Настройка пасля ўсталявання"
-
-#: ../../standalone/drakautoinst_.c:44
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9748,1431 +12704,1419 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
-msgid "manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:62
-#, fuzzy
-msgid "replay"
-msgstr "Перазагрузiць"
-
-#: ../../standalone/drakautoinst_.c:66
-#, fuzzy
-msgid "Automatic Steps Configuration"
-msgstr "Настройка мадэму"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Auto Install Configurator"
+msgstr "Настройка пасля ўсталявання"
-#: ../../standalone/drakautoinst_.c:67
-msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
-#, fuzzy
-msgid "Creating auto install floppy"
-msgstr "Стварэнне дыскеты для ўсталявання"
+#: ../../standalone/drakautoinst:1
+#, fuzzy, c-format
+msgid "Error!"
+msgstr "Памылка"
-#: ../../standalone/drakautoinst_.c:139
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Welcome.\n"
+"Restore Backup Problems:\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
-#: ../../standalone/scannerdrake_.c:117
-msgid "Congratulations!"
-msgstr "Прыміце вiншаваннi!"
-
-#: ../../standalone/drakautoinst_.c:235
-msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:273
-#, fuzzy
-msgid "Auto Install"
-msgstr "Усталёўка"
-
-#: ../../standalone/drakautoinst_.c:343
-#, fuzzy
-msgid "Add an item"
-msgstr "Дадаць карыстальнiка"
-
-#: ../../standalone/drakautoinst_.c:350
-#, fuzzy
-msgid "Remove the last item"
-msgstr "Фарматаванне вiртуальнага раздзелу %s"
-
-#: ../../standalone/drakbackup_.c:580
-msgid "Cron not available yet as non-root"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:690
-msgid "WARNING"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:691
-#, fuzzy
-msgid "FATAL"
-msgstr "FAT"
-
-#: ../../standalone/drakbackup_.c:692
-msgid "INFO"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:704
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"options description:\n"
"\n"
-" DrakBackup Report \n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:705
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"Description:\n"
"\n"
-" DrakBackup Daemon Report\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:709
-msgid ""
+" Per default all backups will be stored on your\n"
+" /var/lib/drakbackup directory\n"
"\n"
-" DrakBackup Report Details\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
-#: ../../standalone/drakbackup_.c:859
-#, fuzzy
-msgid "Total progess"
-msgstr "Праверка партоў"
-
-#: ../../standalone/drakbackup_.c:785
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"%s exists, delete?\n"
-"\n"
-"Warning: If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "This may take a moment to generate the keys."
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "ERROR: Cannot spawn %s."
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:818
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No password prompt on %s at port %s"
+msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
+"\n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
+"\n"
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:819
-#, fuzzy, c-format
-msgid "Bad password on %s"
-msgstr "Няма паролю"
-
-#: ../../standalone/drakbackup_.c:820
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Permission denied transferring %s to %s"
+msgid ""
+"options description:\n"
+"\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include the web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed data afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:821
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "Памылка адкрыцця %s для запiсу: %s"
-
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "%s not responding"
+msgid ""
+"\n"
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
+"options description:\n"
"\n"
-"ssh -i %s %s\\@%s\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %%).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000%% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" #> cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
"\n"
-"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:873
-msgid "WebDAV remote site already in sync!"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:877
-msgid "WebDAV transfer failed!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore"
+msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:898
-msgid "No CDR/DVDR in drive!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Now"
+msgstr "Настр. файлавых сiстэмаў"
-#: ../../standalone/drakbackup_.c:902
-msgid "Does not appear to be recordable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Advanced Configuration"
+msgstr "Заканчэнне настройкi"
-#: ../../standalone/drakbackup_.c:906
-msgid "Not erasable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Wizard Configuration"
+msgstr "Настройка"
-#: ../../standalone/drakbackup_.c:945
-msgid "This may take a moment to erase the media."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "View Backup Configuration."
+msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:1033
-msgid "Permission problem accessing CD."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Now from configuration file"
+msgstr "Канфiгурацыя сеткi"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Drakbackup Configuration"
+msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:1060
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No tape in %s!"
+msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
-msgid "Backup system files..."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Sending files..."
+msgstr "Захаванне ў файл"
-#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
-#, fuzzy
-msgid "Hard Disk Backup files..."
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "files sending by FTP"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1236
-#, fuzzy
-msgid "Backup User files..."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup other files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1237
-msgid "Hard Disk Backup Progress..."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1290
-#, fuzzy
-msgid "Backup Other files..."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup user files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1296
-#, fuzzy
-msgid "No changes to backup!"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup system files"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"file list sent by FTP: %s\n"
-" "
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:1322
-msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select data to backup..."
+msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:1340
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select media for backup..."
+msgstr "Калi ласка, абярыце мову для карыстання."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please select data to restore..."
+msgstr "Калi ласка, абярыце мову для карыстання."
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "The following packages need to be installed:\n"
+msgstr "Наступныя пакеты будуць даданы да сiстэмы"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:1354
-#, fuzzy
-msgid " Error during mail sending. \n"
-msgstr "Памылка чытання файлу %s"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Next"
+msgstr "Тэкст"
-#: ../../standalone/drakbackup_.c:1380
-msgid "Can't create catalog!"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
-#: ../../standalone/drakfont_.c:946
-#, fuzzy
-msgid "File Selection"
-msgstr "Выбар групы пакетаў"
-
-#: ../../standalone/drakbackup_.c:1529
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+#: ../../standalone/drakbackup:1 ../../standalone/drakperm:1
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Save"
+msgstr "Стартавае меню"
-#: ../../standalone/drakbackup_.c:1573
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Build Backup"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:1574
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Progress"
+msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:1575
-#, fuzzy
-msgid "Backup your System files. (/etc directory)"
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From Catalog"
+msgstr "Дадатковая таблiца раздзелаў"
-#: ../../standalone/drakbackup_.c:1576
-msgid "Use incremental backup (do not replace old backups)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:1577
-msgid "Do not include critical files (passwd, group, fstab)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:1578
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Custom Restore"
+msgstr "Па выбару"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
-#, fuzzy
-msgid "Please check all users that you want to include in your backup."
-msgstr "Выбар пакетаў для ўсталявання"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Failed..."
+msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:1622
-msgid "Do not include the browser cache"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
-msgid "Use Incremental Backups (do not replace old backups)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
-#, fuzzy
-msgid "Remove Selected"
-msgstr "Выдалiць чаргу друку"
-
-#: ../../standalone/drakbackup_.c:1679
-#, fuzzy
-msgid "Windows (FAT32)"
-msgstr "Выдалiць Windows(TM)"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hostname required"
+msgstr "Iмя машыны"
-#: ../../standalone/drakbackup_.c:1714
-#, fuzzy
-msgid "Users"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username required"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:1740
-#, fuzzy
-msgid "Use network connection to backup"
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Password required"
+msgstr "Пароль"
-#: ../../standalone/drakbackup_.c:1742
-msgid "Net Method:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:1746
-msgid "Use Expect for SSH"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Host Name"
+msgstr "Iмя машыны"
-#: ../../standalone/drakbackup_.c:1747
-msgid ""
-"Create/Transfer\n"
-"backup keys for SSH"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
-msgid ""
-" Transfer \n"
-"Now"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Via Network"
+msgstr "Пераканфiгураваць лакальную сетку"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:1749
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Other (not drakbackup)\n"
-"keys in place already"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
-#, fuzzy
-msgid "Please enter the host name or IP."
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From Tape"
+msgstr "Дадатковая таблiца раздзелаў"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr ""
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please enter the directory (or module) to\n"
-" put the backup on this host."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakbackup_.c:1763
-#, fuzzy
-msgid "Please enter your login"
-msgstr "Паспрабуйце яшчэ раз"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore From CD"
+msgstr "Аднаўленне з дыскеты"
-#: ../../standalone/drakbackup_.c:1768
-#, fuzzy
-msgid "Please enter your password"
-msgstr "Паспрабуйце яшчэ раз"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files not found at %s."
+msgstr ""
-#: ../../standalone/drakbackup_.c:1774
-#, fuzzy
-msgid "Remember this password"
-msgstr "Няма паролю"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Change\n"
+"Restore Path"
+msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:1785
-msgid "Need hostname, username and password!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Restore Selected\n"
+"Files"
+msgstr "Выдалiць чаргу друку"
-#: ../../standalone/drakbackup_.c:1879
-msgid "Use CD/DVDROM to backup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
-msgid ""
-"Please choose your CD/DVD device\n"
-"(Press Enter to propogate settings to other fields.\n"
-"This field isn't necessary, only a tool to fill in the form.)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:1887
-#, fuzzy
-msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "Калi ласка, абярыце тып клавiятуры."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1893
-#, fuzzy
-msgid "Please check for multisession CD"
-msgstr "Націсніце на раздзел"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "select path to restore (instead of /)"
+msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:1899
-#, fuzzy
-msgid "Please check if you are using CDRW media"
-msgstr "Націсніце на раздзел"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Other"
+msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:1905
-#, fuzzy
-msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Націсніце на раздзел"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore Users"
+msgstr "Аднаўленне з файлу"
-#: ../../standalone/drakbackup_.c:1906
-msgid " Erase Now "
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore system"
+msgstr "Усталяванне сiстэмы"
-#: ../../standalone/drakbackup_.c:1912
-#, fuzzy
-msgid "Please check if you are using a DVDR device"
-msgstr "Націсніце на раздзел"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Other Media"
+msgstr "Іншыя"
-#: ../../standalone/drakbackup_.c:1918
-#, fuzzy
-msgid "Please check if you are using a DVDRAM device"
-msgstr "Націсніце на раздзел"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Select another media to restore from"
+msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:1931
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
-#, fuzzy
-msgid "No CD device defined!"
-msgstr "Абярыце файл"
-
-#: ../../standalone/drakbackup_.c:2012
-#, fuzzy
-msgid "Use tape to backup"
-msgstr "Дрэнны файл рэзервовай копii"
-
-#: ../../standalone/drakbackup_.c:2015
-msgid "Please enter the device name to use for backup"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Restore from Hard Disk."
+msgstr "Аднаўленне з дыскеты"
-#: ../../standalone/drakbackup_.c:2021
-#, fuzzy
-msgid "Please check if you want to use the non-rewinding device."
-msgstr "Выбар пакетаў для ўсталявання"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Secure Connection"
+msgstr "Выбар тыпу злучэння прынтэру"
-#: ../../standalone/drakbackup_.c:2027
-#, fuzzy
-msgid "Please check if you want to erase your tape before the backup."
-msgstr "Выбар пакетаў для ўсталявання"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "FTP Connection"
+msgstr "Размеркаванне"
-#: ../../standalone/drakbackup_.c:2033
-#, fuzzy
-msgid "Please check if you want to eject your tape after the backup."
-msgstr "Выбар пакетаў для ўсталявання"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use quota for backup files."
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
-#: ../../standalone/drakbackup_.c:3068
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2103
-#, fuzzy
-msgid "Please enter the directory to save to:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the directory to save:"
msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
-#, fuzzy
-msgid "Use quota for backup files."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use Hard Disk to backup"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2180
-#, fuzzy
-msgid "Network"
-msgstr "Сетка:"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "please choose the date to restore"
+msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/drakbackup_.c:2185
-msgid "CDROM / DVDROM"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup the system files before:"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:2190
-msgid "HardDrive / NFS"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2195
-#, fuzzy
-msgid "Tape"
-msgstr "Тып: "
-
-#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
-#: ../../standalone/drakbackup_.c:2216
-msgid "hourly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
-#: ../../standalone/drakbackup_.c:2216
-msgid "daily"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Restore Configuration "
+msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
-#: ../../standalone/drakbackup_.c:2216
-msgid "weekly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
-#: ../../standalone/drakbackup_.c:2216
-msgid "monthly"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
-#, fuzzy
-msgid "Use daemon"
-msgstr "Iмя карыстальнiку:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files are corrupted"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr "Выбар пакетаў для ўсталявання"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please uncheck or remove it on next time."
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
-#: ../../standalone/drakbackup_.c:2240
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose the\n"
-"media for backup."
-msgstr "Калi ласка, абярыце мову для карыстання."
+"List of data corrupted:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2247
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
+"List of data to restore:\n"
"\n"
-"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:2283
-msgid "Send mail report after each backup to:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2289
-msgid "Delete Hard Drive tar files after backup to other media."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2324
-#, fuzzy
-msgid "What"
-msgstr "Чакайце"
-
-#: ../../standalone/drakbackup_.c:2329
-#, fuzzy
-msgid "Where"
-msgstr "З колам"
-
-#: ../../standalone/drakbackup_.c:2334
-#, fuzzy
-msgid "When"
-msgstr "З колам"
-
-#: ../../standalone/drakbackup_.c:2339
-#, fuzzy
-msgid "More Options"
-msgstr "Опцыi модулю:"
-
-#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
-#, fuzzy
-msgid "Drakbackup Configuration"
-msgstr "Канфiгурацыя сеткi"
-
-#: ../../standalone/drakbackup_.c:2376
-#, fuzzy
-msgid "Please choose where you want to backup"
-msgstr "Выбар пакетаў для ўсталявання"
-
-#: ../../standalone/drakbackup_.c:2378
-msgid "on Hard Drive"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2388
-#, fuzzy
-msgid "across Network"
-msgstr "Сетка:"
-
-#: ../../standalone/drakbackup_.c:2398
-msgid "on CDROM"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2406
-#, fuzzy
-msgid "on Tape Device"
-msgstr "Порт прынтэру"
-
-#: ../../standalone/drakbackup_.c:2449
-#, fuzzy
-msgid "Please choose what you want to backup"
-msgstr "Выбар пакетаў для ўсталявання"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by FTP.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2450
-#, fuzzy
-msgid "Backup system"
-msgstr "Настр. файлавых сiстэмаў"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "\t-Tape \n"
+msgstr "Тып: "
-#: ../../standalone/drakbackup_.c:2451
-msgid "Backup Users"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2454
-msgid "Select user manually"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2537
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Backup Sources: \n"
+"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2538
-msgid ""
-"\n"
-"- System Files:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2540
-msgid ""
-"\n"
-"- User Files:\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and bzip2\n"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2542
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid ""
"\n"
-"- Other Files:\n"
-msgstr ""
+"- Options:\n"
+msgstr "Опцыi"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Delete hard drive tar files after backup.\n"
+"- Save via %s on host: %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2553
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Burn to CD"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2554
-msgid "RW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2555
+#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Мыш: %s\n"
-#: ../../standalone/drakbackup_.c:2556
-msgid " (multi-session)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2557
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save to Tape on device: %s"
+"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "\t\tErase=%s"
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2561
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save via %s on host: %s\n"
+"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2562
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"\n"
+"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Options:\n"
-msgstr "Опцыi"
-
-#: ../../standalone/drakbackup_.c:2564
-msgid "\tDo not include System Files\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2567
-msgid "\tBackups use tar and bzip2\n"
+"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2569
-msgid "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2572
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Daemon (%s) include:\n"
+"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
-msgid "\t-Hard drive.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2574
-msgid "\t-CDROM.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2575
-#, fuzzy
-msgid "\t-Tape \n"
-msgstr "Тып: "
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup system"
+msgstr "Настр. файлавых сiстэмаў"
-#: ../../standalone/drakbackup_.c:2576
-msgid "\t-Network by FTP.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose what you want to backup"
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2577
-msgid "\t-Network by SSH.\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "on Tape Device"
+msgstr "Порт прынтэру"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2578
-msgid "\t-Network by rsync.\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "across Network"
+msgstr "Сетка:"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2579
-msgid "\t-Network by webdav.\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose where you want to backup"
+msgstr "Выбар пакетаў для ўсталявання"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "More Options"
+msgstr "Опцыi модулю:"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "When"
+msgstr "З колам"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Where"
+msgstr "З колам"
+
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "What"
+msgstr "Чакайце"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2581
-msgid "No configuration, please click Wizard or Advanced.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"List of data to restore:\n"
+"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:2754
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
msgid ""
-"List of data corrupted:\n"
-"\n"
-msgstr ""
+"Please choose the\n"
+"media for backup."
+msgstr "Калi ласка, абярыце мову для карыстання."
-#: ../../standalone/drakbackup_.c:2756
-#, fuzzy
-msgid "Please uncheck or remove it on next time."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:2766
-msgid "Backup files are corrupted"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use daemon"
+msgstr "Iмя карыстальнiку:"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2787
-msgid " All of your selected data have been "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2788
+#: ../../standalone/drakbackup:1
#, c-format
-msgid " Successfuly Restored on %s "
+msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2906
-#, fuzzy
-msgid " Restore Configuration "
-msgstr "Канфiгурацыя сеткi"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "hourly"
+msgstr ""
-#: ../../standalone/drakbackup_.c:2924
-msgid "OK to restore the other files."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2941
-msgid "User list to restore (only the most recent date per user is important)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:3019
-#, fuzzy
-msgid "Backup the system files before:"
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the directory to save to:"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:3021
-#, fuzzy
-msgid "please choose the date to restore"
-msgstr "калi ласка, пазначце тып вашай мышы."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:3057
-#, fuzzy
-msgid "Use Hard Disk to backup"
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:3060
-#, fuzzy
-msgid "Please enter the directory to save:"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:3103
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Размеркаванне"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the device name to use for backup"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3110
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Выбар тыпу злучэння прынтэру"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use tape to backup"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3134
-#, fuzzy
-msgid "Restore from Hard Disk."
-msgstr "Аднаўленне з дыскеты"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No CD device defined!"
+msgstr "Абярыце файл"
-#: ../../standalone/drakbackup_.c:3136
-msgid "Please enter the directory where backups are stored"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:3204
-#, fuzzy
-msgid "Select another media to restore from"
-msgstr "калi ласка, пазначце тып вашай мышы."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:3206
-#, fuzzy
-msgid "Other Media"
-msgstr "Іншыя"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using a DVDR device"
+msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:3211
-#, fuzzy
-msgid "Restore system"
-msgstr "Усталяванне сiстэмы"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Erase Now "
+msgstr ""
-#: ../../standalone/drakbackup_.c:3212
-#, fuzzy
-msgid "Restore Users"
-msgstr "Аднаўленне з файлу"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:3213
-#, fuzzy
-msgid "Restore Other"
-msgstr "Аднаўленне з файлу"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check if you are using CDRW media"
+msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:3215
-#, fuzzy
-msgid "select path to restore (instead of /)"
-msgstr "калi ласка, пазначце тып вашай мышы."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check for multisession CD"
+msgstr "Націсніце на раздзел"
-#: ../../standalone/drakbackup_.c:3219
-msgid "Do new backup before restore (only for incremental backups.)"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Калi ласка, абярыце тып клавiятуры."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3221
-msgid "Remove user directories before restore."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3334
-msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:3344
-#, fuzzy
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "Выдалiць чаргу друку"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Remember this password"
+msgstr "Няма паролю"
-#: ../../standalone/drakbackup_.c:3361
-#, fuzzy
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr "Аднаўленне з файлу"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter your password"
+msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/drakbackup_.c:3427
-#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter your login"
+msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:3440
-#, fuzzy
-msgid "Restore From CD"
-msgstr "Аднаўленне з дыскеты"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please enter the host name or IP."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/drakbackup_.c:3442
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:3452
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+" Transfer \n"
+"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:3452
-#, fuzzy
-msgid "Restore From Tape"
-msgstr "Дадатковая таблiца раздзелаў"
-
-#: ../../standalone/drakbackup_.c:3454
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:3474
-#, fuzzy
-msgid "Restore Via Network"
-msgstr "Пераканфiгураваць лакальную сетку"
-
-#: ../../standalone/drakbackup_.c:3474
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Restore Via Network Protocol: %s"
+msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy
-msgid "Host Name"
-msgstr "Iмя машыны"
-
-#: ../../standalone/drakbackup_.c:3476
-msgid "Host Path or Module"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3483
-#, fuzzy
-msgid "Password required"
-msgstr "Пароль"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Use network connection to backup"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3489
-#, fuzzy
-msgid "Username required"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Users"
msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakbackup_.c:3492
-#, fuzzy
-msgid "Hostname required"
-msgstr "Iмя машыны"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Windows (FAT32)"
+msgstr "Выдалiць Windows(TM)"
-#: ../../standalone/drakbackup_.c:3497
-msgid "Path or Module required"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3510
-msgid "Files Restored..."
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove Selected"
+msgstr "Выдалiць чаргу друку"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:3513
-#, fuzzy
-msgid "Restore Failed..."
-msgstr "Аднаўленне з файлу"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Please check all users that you want to include in your backup."
+msgstr "Выбар пакетаў для ўсталявання"
-#: ../../standalone/drakbackup_.c:3751
-msgid "Restore all backups"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:3760
-#, fuzzy
-msgid "Custom Restore"
-msgstr "Па выбару"
-
-#: ../../standalone/drakbackup_.c:3804
-msgid "CD in place - continue."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3810
-msgid "Browse to new restore repository."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3813
-#, fuzzy
-msgid "Restore From Catalog"
-msgstr "Дадатковая таблiца раздзелаў"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup your System files. (/etc directory)"
+msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:3841
-#, fuzzy
-msgid "Restore Progress"
-msgstr "Аднаўленне з файлу"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
-#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
-#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
-#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
-#: ../../standalone/drakbackup_.c:4139
-msgid "Previous"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
-#: ../../standalone/logdrake_.c:203
-#, fuzzy
-msgid "Save"
-msgstr "Стартавае меню"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select the files or directories and click on 'Add'"
+msgstr ""
-#: ../../standalone/drakbackup_.c:3946
-#, fuzzy
-msgid "Build Backup"
-msgstr "Дрэнны файл рэзервовай копii"
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "File Selection"
+msgstr "Выбар групы пакетаў"
-#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
-#, fuzzy
-msgid "Restore"
-msgstr "Аднаўленне з файлу"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Can't create catalog!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid " Error while sending mail. \n"
+msgstr "Памылка чытання файлу %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4195
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4209
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"The following packages need to be installed:\n"
-" @list_of_rpm_to_install"
-msgstr "Наступныя пакеты будуць даданы да сiстэмы"
-
-#: ../../standalone/drakbackup_.c:4232
-#, fuzzy
-msgid "Please select data to restore..."
-msgstr "Калi ласка, абярыце мову для карыстання."
-
-#: ../../standalone/drakbackup_.c:4267
-#, fuzzy
-msgid "Please select media for backup..."
-msgstr "Калi ласка, абярыце мову для карыстання."
-
-#: ../../standalone/drakbackup_.c:4275
-#, fuzzy
-msgid "Please select data to backup..."
-msgstr "Калi ласка, абярыце мову для карыстання."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4308
-msgid "Under Devel ... please wait."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakbackup_.c:4382
-#, fuzzy
-msgid "Backup system files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "No changes to backup!"
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4384
-#, fuzzy
-msgid "Backup user files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Hard Disk Backup files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4386
-#, fuzzy
-msgid "Backup other files"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup Other files..."
msgstr "Дрэнны файл рэзервовай копii"
-#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
-msgid "Total Progress"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4412
-msgid "files sending by FTP"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Backup User files..."
+msgstr "Дрэнны файл рэзервовай копii"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4416
-#, fuzzy
-msgid "Sending files..."
-msgstr "Захаванне ў файл"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No tape in %s!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4500
-#, fuzzy
-msgid "Backup Now from configuration file"
-msgstr "Канфiгурацыя сеткi"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission problem accessing CD."
+msgstr ""
-#: ../../standalone/drakbackup_.c:4505
-#, fuzzy
-msgid "View Backup Configuration."
-msgstr "Канфiгурацыя сеткi"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to erase the media."
+msgstr ""
-#: ../../standalone/drakbackup_.c:4526
-#, fuzzy
-msgid "Wizard Configuration"
-msgstr "Настройка"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not erasable media!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4531
-#, fuzzy
-msgid "Advanced Configuration"
-msgstr "Заканчэнне настройкi"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Does not appear to be recordable media!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4536
-#, fuzzy
-msgid "Backup Now"
-msgstr "Настр. файлавых сiстэмаў"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:4576
-msgid "Drakbackup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:4624
-msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time (about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
-"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:4654
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Total progess"
+msgstr "Праверка партоў"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"ssh -i %s %s\\@%s\n"
"\n"
+"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:4662
-msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:4701
-msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used, because with incremental \n"
-"backups it is necessary to restore one by one each older backup.\n"
-"\n"
-"So if you don't want to restore a user please unselect all their\n"
-"check boxes.\n"
-"\n"
-"Otherwise, you are able to select only one of these.\n"
-"\n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption to use. This option allows you to \n"
-"\tbackup all of your data the first time, and \n"
-"\tonly the changed data after.\n"
-"\tSo you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
-"\n"
-"\n"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Can't find %s on %s"
+msgstr "Памылка адкрыцця %s для запiсу: %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:4727
-msgid ""
-" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
-"fr>"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Bad password on %s"
+msgstr "Няма паролю"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:4729
-msgid ""
-" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:4732
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Description:\n"
-"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
-"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
+"%s exists, delete?\n"
"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
+" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4769
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"options description:\n"
"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
+" DrakBackup Daemon Report\n"
+"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4778
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Restore Backup Problems:\n"
+" DrakBackup Report \n"
"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakboot_.c:50
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "Усталяванне %s не атрымалася. Узнiкла наступная памылка:"
-
-#: ../../standalone/drakbug_.c:45
-msgid "Mandrake Bug Report Tool"
+msgid "INFO"
msgstr ""
-#: ../../standalone/drakbug_.c:50
-msgid "First Time Wizard"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "FATAL"
+msgstr "FAT"
-#: ../../standalone/drakbug_.c:51
-msgid "Synchronization tool"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
-#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
-#: ../../standalone/drakbug_.c:139
-#, fuzzy
-msgid "Standalone Tools"
-msgstr "Кансольныя інструментальныя сродкі"
-
-#: ../../standalone/drakbug_.c:53
-msgid "HardDrake"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Cron not available yet as non-root"
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/drakboot:1
+#, c-format
+msgid "Installation of %s failed. The following error occured:"
+msgstr "Усталяванне %s не атрымалася. Узнiкла наступная памылка:"
-#: ../../standalone/drakbug_.c:58
-#, fuzzy
-msgid "Software Manager"
-msgstr "Iмя для размеркаванага рэсурсу"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "No browser available! Please install one"
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
-#: ../../standalone/drakbug_.c:59
-msgid "Urpmi"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "connecting to Bugzilla wizard ..."
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:75
-#, fuzzy
-msgid "Application:"
-msgstr "Размеркаванне"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package not installed"
+msgstr "Заканчэнне ўсталявання"
-#: ../../standalone/drakbug_.c:76
-#, fuzzy
-msgid "Package: "
-msgstr "Пакет"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Not installed"
+msgstr "Заканчэнне ўсталявання"
-#: ../../standalone/drakbug_.c:77
-msgid "Kernel:"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Standalone Tools"
+msgstr "Кансольныя інструментальныя сродкі"
-#: ../../standalone/drakbug_.c:78
-#, fuzzy
-msgid "Release: "
-msgstr "Калi ласка, пачакайце"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Report"
+msgstr "Порт"
-#: ../../standalone/drakbug_.c:93
+#: ../../standalone/drakbug:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -11184,490 +14128,566 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:112
-#, fuzzy
-msgid "Report"
-msgstr "Порт"
-
-#: ../../standalone/drakbug_.c:148
-#, fuzzy
-msgid "Not installed"
-msgstr "Заканчэнне ўсталявання"
-
-#: ../../standalone/drakbug_.c:160
-#, fuzzy
-msgid "Package not installed"
-msgstr "Заканчэнне ўсталявання"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Release: "
+msgstr "Калi ласка, пачакайце"
-#: ../../standalone/drakbug_.c:173
-msgid "connecting to Bugzilla wizard ..."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:180
-#, fuzzy
-msgid "No browser available! Please install one"
-msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Package: "
+msgstr "Пакет"
-#: ../../standalone/drakconnect_.c:75
+#: ../../standalone/drakbug:1
#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Канфiгурацыя сеткi"
+msgid "Application:"
+msgstr "Размеркаванне"
-#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
-#, fuzzy
-msgid "Profile: "
-msgstr "памылка манцiравання: "
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Configuration Wizards"
+msgstr "Канфiгурацыя сеткi"
-#: ../../standalone/drakconnect_.c:91
-msgid "Del profile..."
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Userdrake"
+msgstr "Выкарыстоўваць DiskDrake"
-#: ../../standalone/drakconnect_.c:97
-msgid "Profile to delete:"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Windows Migration tool"
+msgstr "Навуковыя прыкладанні"
-#: ../../standalone/drakconnect_.c:125
-msgid "New profile..."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakconnect_.c:131
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Software Manager"
+msgstr "Iмя для размеркаванага рэсурсу"
-#: ../../standalone/drakconnect_.c:157
-#, fuzzy
-msgid "Hostname: "
-msgstr "Iмя машыны"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Remote Control"
+msgstr "Аддалены прынтэр"
-#: ../../standalone/drakconnect_.c:164
-msgid "Internet access"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Msec"
+msgstr "Порт мышы"
-#: ../../standalone/drakconnect_.c:177
-#, fuzzy
-msgid "Type:"
-msgstr "Тып: "
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Menudrake"
+msgstr "абавязкова"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Gateway:"
-msgstr "Шлюз:"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Online"
+msgstr "Далучэнне да Iнтэрнэту"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Interface:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakconnect_.c:191
-msgid "Status:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
-msgid "Wait please"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakconnect_.c:216
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Настройка службаў"
-
-#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Настройка ADSL"
-
-#: ../../standalone/drakconnect_.c:228
-#, fuzzy
-msgid "Driver"
-msgstr "сервер"
-
-#: ../../standalone/drakconnect_.c:228
-#, fuzzy
-msgid "Interface"
-msgstr "Сеткавы iнтэрфейс"
-
-#: ../../standalone/drakconnect_.c:228
-msgid "Protocol"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakconnect_.c:228
-#, fuzzy
-msgid "State"
-msgstr "Стартавае меню"
-
-#: ../../standalone/drakconnect_.c:240
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Настройка лакальнай сеткi"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP Client"
+msgstr ""
-#: ../../standalone/drakconnect_.c:252
-msgid "Click here to launch the wizard ->"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakconnect_.c:253
-msgid "Wizard..."
-msgstr "Майстар стварэння..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway"
+msgstr "Шлюз"
-#: ../../standalone/drakconnect_.c:279
-msgid "Apply"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Parameters"
msgstr ""
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-#, fuzzy
-msgid "Connected"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection type: "
msgstr "Iмя злучэння"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-#, fuzzy
-msgid "Not connected"
-msgstr "Размеркаванне"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Profile: "
+msgstr "памылка манцiравання: "
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Connect..."
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Internet Connection Configuration"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Disconnect..."
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Internet connection configuration"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
-#: ../../standalone/drakconnect_.c:400
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
+"You don't have an Internet connection.\n"
+"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:427
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:449
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Настройка"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "activate now"
+msgstr "Актыўны"
-#: ../../standalone/drakconnect_.c:460
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "deactivate now"
+msgstr "Актыўны"
+
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Adapter %s: %s"
+msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakconnect_.c:466
-msgid "Boot Protocol"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakconnect_.c:467
-msgid "Started on boot"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:468
-msgid "DHCP client"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-#, fuzzy
-msgid "activate now"
-msgstr "Актыўны"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "LAN Configuration"
+msgstr "Настройка"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-#, fuzzy
-msgid "deactivate now"
-msgstr "Актыўны"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "LAN configuration"
+msgstr "Настройка ADSL"
-#: ../../standalone/drakconnect_.c:499
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:556
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Connect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:580
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Disconnect..."
+msgstr ""
-#: ../../standalone/drakconnect_.c:584
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Not connected"
+msgstr "Размеркаванне"
-#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
-#, fuzzy
-msgid "Connection type: "
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connected"
msgstr "Iмя злучэння"
-#: ../../standalone/drakconnect_.c:599
-msgid "Parameters"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:618
-msgid "Gateway"
-msgstr "Шлюз"
-
-#: ../../standalone/drakconnect_.c:627
-msgid "Ethernet Card"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface:"
msgstr ""
-#: ../../standalone/drakconnect_.c:628
-msgid "DHCP Client"
-msgstr ""
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway:"
+msgstr "Шлюз:"
-#: ../../standalone/drakfloppy_.c:39
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Apply"
msgstr ""
-#: ../../standalone/drakfloppy_.c:40
-#, fuzzy
-msgid "Module name"
-msgstr "Опцыi модулю:"
-
-#: ../../standalone/drakfloppy_.c:40
-#, fuzzy
-msgid "Size"
-msgstr "Памер: %s"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Click here to launch the wizard ->"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:45
-#, fuzzy
-msgid "drakfloppy"
-msgstr "Аднаўленне з дыскеты"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Wizard..."
+msgstr "Майстар стварэння..."
-#: ../../standalone/drakfloppy_.c:63
-#, fuzzy
-msgid "boot disk creation"
-msgstr "Настройка пасля ўсталявання"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Status:"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
-msgid "default"
-msgstr "Па дамаўленню"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Type:"
+msgstr "Тып: "
-#: ../../standalone/drakfloppy_.c:87
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "DrakFloppy Error: %s"
+msgid "Internet access"
msgstr ""
-#: ../../standalone/drakfloppy_.c:98
-#, fuzzy
-msgid "kernel version"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Hostname: "
+msgstr "Iмя машыны"
-#: ../../standalone/drakfloppy_.c:104
-#, fuzzy
-msgid "General"
-msgstr "Агульны"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Configure Local Area Network..."
+msgstr "Настройка лакальнай сеткi"
-#: ../../standalone/drakfloppy_.c:109
-#, fuzzy
-msgid "Expert Area"
-msgstr "Эксперт"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "State"
+msgstr "Стартавае меню"
-#: ../../standalone/drakfloppy_.c:112
-msgid "mkinitrd optional arguments"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Driver"
+msgstr "сервер"
+
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Protocol"
msgstr ""
-#: ../../standalone/drakfloppy_.c:113
-#, fuzzy
-msgid "Add a module"
-msgstr "Дадаць карыстальнiка"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Interface"
+msgstr "Сеткавы iнтэрфейс"
-#: ../../standalone/drakfloppy_.c:133
-#, fuzzy
-msgid "force"
-msgstr "Перанос"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Configure Internet Access..."
+msgstr "Настройка службаў"
-#: ../../standalone/drakfloppy_.c:134
-msgid "if needed"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Wait please"
msgstr ""
-#: ../../standalone/drakfloppy_.c:135
-#, fuzzy
-msgid "omit scsi modules"
-msgstr "Рэжым злучэння"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:136
-msgid "omit raid modules"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "New profile..."
msgstr ""
-#: ../../standalone/drakfloppy_.c:172
-#, fuzzy
-msgid "Remove a module"
-msgstr "Адваротны парадак старонак"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile to delete:"
+msgstr ""
-#: ../../standalone/drakfloppy_.c:194
-msgid "Output"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakfloppy_.c:206
-msgid "Build the disk"
+#: ../../standalone/drakconnect:1
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Канфiгурацыя сеткi"
+
+#: ../../standalone/drakedm:1
+#, c-format
+msgid ""
+"X11 Display Manager allows you to graphically log\n"
+"into your system with the X Window System running and supports running\n"
+"several different X sessions on your local machine at the same time."
msgstr ""
-#: ../../standalone/drakfloppy_.c:336
+#: ../../standalone/drakedm:1
#, c-format
-msgid "Be sure a media is present for the device %s"
+msgid "Choosing a display manager"
msgstr ""
-#: ../../standalone/drakfloppy_.c:341
+#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"Unable to properly close mkbootdisk: \n"
+" %s \n"
+" %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:344
+#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Зрабiць неактыўным сеткавае злучэнне"
-#: ../../standalone/drakfloppy_.c:349
+#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
-"Unable to close properly mkbootdisk: \n"
-" %s \n"
-" %s"
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-#: ../../standalone/drakfont_.c:213
-msgid "Search installed fonts"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfont_.c:215
-msgid "Unselect fonts installed"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfont_.c:239
-msgid "parse all fonts"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Output"
msgstr ""
-#: ../../standalone/drakfont_.c:242
-#, fuzzy
-msgid "no fonts found"
-msgstr "Не знайшлi %s"
-
-#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
-#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
-#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
-#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
-#, fuzzy
-msgid "done"
-msgstr "Зроблена"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "Remove a module"
+msgstr "Адваротны парадак старонак"
-#: ../../standalone/drakfont_.c:257
-msgid "could not find any font in your mounted partitions"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit raid modules"
msgstr ""
-#: ../../standalone/drakfont_.c:303
-msgid "Reselect correct fonts"
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "omit scsi modules"
+msgstr "Рэжым злучэння"
-#: ../../standalone/drakfont_.c:307
-msgid "could not find any font.\n"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "if needed"
msgstr ""
-#: ../../standalone/drakfont_.c:331
-msgid "Search fonts in installed list"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "force"
+msgstr "Перанос"
+
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "Add a module"
+msgstr "Дадаць карыстальнiка"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakfont_.c:359
-#, fuzzy
-msgid "Fonts copy"
-msgstr "Фарматаваць дыскету"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "Expert Area"
+msgstr "Эксперт"
-#: ../../standalone/drakfont_.c:363
-#, fuzzy
-msgid "True Type fonts installation"
-msgstr "Падрыхтоўка ўсталяваньня"
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "General"
+msgstr "Агульны"
-#: ../../standalone/drakfont_.c:371
-msgid "please wait during ttmkfdir..."
-msgstr ""
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "kernel version"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakfont_.c:377
-msgid "True Type install done"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413
-msgid "Fonts conversion"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "default"
+msgstr "Па дамаўленню"
+
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "boot disk creation"
+msgstr "Настройка пасля ўсталявання"
+
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "drakfloppy"
+msgstr "Аднаўленне з дыскеты"
+
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "Size"
+msgstr "Памер: %s"
+
+#: ../../standalone/drakfloppy:1
+#, fuzzy, c-format
+msgid "Module name"
+msgstr "Опцыi модулю:"
+
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfont_.c:392 ../../standalone/drakfont_.c:417
-#: ../../standalone/drakfont_.c:450
-msgid "type1inst building"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Post Uninstall"
+msgstr "Заканчэнне ўсталявання"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove fonts on your system"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Initial tests"
msgstr ""
-#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:427
-msgid "Ghostscript referencing"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Post Install"
+msgstr "Усталёўка"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:437
-msgid "ttf fonts conversion"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Copy fonts on your system"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Remove List"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Selected All"
+msgstr "Абярыце файл"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:444
-msgid "pfm fonts conversion"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:456
-msgid "Suppress temporary Files"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:459
-#, fuzzy
-msgid "Restart XFS"
-msgstr "абмежаванне"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Install List"
+msgstr "Усталяванне сiстэмы"
-#: ../../standalone/drakfont_.c:512 ../../standalone/drakfont_.c:526
-msgid "Suppress Fonts Files"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:528
-#, fuzzy
-msgid "xfs restart"
-msgstr "абмежаванне"
-
-#: ../../standalone/drakfont_.c:536 ../../standalone/drakfont_.c:902
+#: ../../standalone/drakfont:1
+#, c-format
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
"\n"
-"-You can install the fonts using the normal way. In rare cases, bogus fonts "
-"may hang up your X Server."
+"-You can install the fonts the normal way. In rare cases, bogus fonts may "
+"hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:621
-#, fuzzy
-msgid "Fonts Importation"
-msgstr "Фарматаванне раздзелаў"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Generic Printers"
+msgstr "Прынтэр"
-#: ../../standalone/drakfont_.c:650
-msgid "Get Windows Fonts"
-msgstr ""
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Abiword"
+msgstr "Адмянiць"
-#: ../../standalone/drakfont_.c:658
-#, fuzzy
-msgid "Uninstall Fonts"
-msgstr "Выдаленне выбраных RPM-пакетаў з сiстэмы"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "StarOffice"
+msgstr "добра"
-#: ../../standalone/drakfont_.c:669
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Заканчэнне настройкi"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Ghostscript"
+msgstr ""
-#: ../../standalone/drakfont_.c:677
-#, fuzzy
-msgid "Font List"
-msgstr "Кропка манцiравання"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Choose the applications that will support the fonts:"
+msgstr "Выбар раздзелаў для фарматавання"
-#: ../../standalone/drakfont_.c:737
+#: ../../standalone/drakfont:1
+#, c-format
msgid ""
"\n"
" Copyright (C) 2001-2002 by MandrakeSoft \n"
-"\tDUPONT Sebastien sdupont\\@mandrakesoft.com\n"
+"\tDUPONT Sebastien (original version)\n"
+" CHAUMETTE Damien <dchaumette\\@mandrakesoft.com>\n"
"\n"
" 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"
@@ -11693,274 +14713,334 @@ msgid ""
" - ttf2pt1: \n"
"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
" Convert ttf font files to afm and pfb fonts\n"
-"\n"
-"\n"
msgstr ""
-#: ../../standalone/drakfont_.c:793
-msgid ""
-"drakfont Future Overview\n"
-" - Fonts import:\n"
-" pfb ( Adobe Type 1 binary )\n"
-" pfa ( Adobe Type 1 ASCII )\n"
-" ttf ( True-Type )\n"
-" pcf.gz\n"
-" Speedo\n"
-" and Bitmap (PCF, BDF, and SNF)\n"
-" - Features\n"
-" - Install fonts from any directory\n"
-" - Get windows fonts on any vfat partitions\n"
-" - Get fonts on any partitions.\n"
-" - UN-installation of any fonts (even if not installed "
-"through drakfont)\n"
-" - Support\n"
-" - Xfs\n"
-" - ghostscript & printer\n"
-" - Staroffice & printer\n"
-" - abiword\n"
-"\t - netscape\n"
-" - Koffice, Gnumeric, ... studying\n"
-" - all fonts supported by printer\n"
-" - anti-aliases by RENDER in Xfree86 .... \n"
-"\t\t\t\tsupported by KDE.\n"
-"\t\t\t\twill be supported by gnome 1.2.\n"
-"Visual Interface:\n"
-" Window interface:\n"
-" - Fontselectiondialog widget\n"
-" - Command buttons under Fontselectiondialog (like the actual "
-"frontend).\n"
-" Commands buttons:\n"
-" - import from windows partition.\n"
-" import from all fat32 partitions and look for winnt/windows/"
-"font\n"
-" and import all (delete doublon) but don't import if already "
-"exist.\n"
-" - import from directory\n"
-" look for if it exist before for each font and not delete the "
-"original.\n"
-" (replace all, no, none)\n"
-" expert options:\n"
-" ask the directory, and look for if it exist before\n"
-" if it exist ask: (replace all, no, none)\n"
-" - uninstall with list per font type\n"
-" Expert additional switch\n"
-" - option support: ghostscript, Staroffice, etc...\n"
-" check-button. (by default all check)\n"
-" - Printer Application Fonts Support...\n"
-"\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakfont_.c:862
-#, fuzzy
-msgid "Choose the applications that will support the fonts:"
-msgstr "Выбар раздзелаў для фарматавання"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "About"
+msgstr "Адмянiць"
-#: ../../standalone/drakfont_.c:870
-msgid "Ghostscript"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Font List"
+msgstr "Кропка манцiравання"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Advanced Options"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Uninstall Fonts"
+msgstr "Выдаленне выбраных RPM-пакетаў з сiстэмы"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:877
-#, fuzzy
-msgid "StarOffice"
-msgstr "добра"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Import Fonts"
+msgstr "Фарматаванне раздзелаў"
-#: ../../standalone/drakfont_.c:884
-#, fuzzy
-msgid "Abiword"
-msgstr "Адмянiць"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "done"
+msgstr "Зроблена"
-#: ../../standalone/drakfont_.c:891
-#, fuzzy
-msgid "Generic Printers"
-msgstr "Прынтэр"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "xfs restart"
+msgstr "абмежаванне"
-#: ../../standalone/drakfont_.c:958
-msgid "Select the font file or directory and click on 'Add'"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:1005
-#, fuzzy
-msgid "Install List"
-msgstr "Усталяванне сiстэмы"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Restart XFS"
+msgstr "абмежаванне"
-#: ../../standalone/drakfont_.c:1048
-msgid "click here if you are sure."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Suppress Temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:1055
-msgid "here if no."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:1112
-msgid "Unselected All"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:1116
-#, fuzzy
-msgid "Selected All"
-msgstr "Абярыце файл"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "ttf fonts conversion"
+msgstr ""
-#: ../../standalone/drakfont_.c:1120
-#, fuzzy
-msgid "Remove List"
-msgstr "Аддалены прынтэр"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Ghostscript referencing"
+msgstr ""
-#: ../../standalone/drakfont_.c:1142 ../../standalone/drakfont_.c:1175
-msgid "Initials tests"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:1145
-#, fuzzy
-msgid "Copy fonts on your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "True Type install done"
+msgstr ""
-#: ../../standalone/drakfont_.c:1149
-msgid "Install & convert Fonts"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:1153
-#, fuzzy
-msgid "Post Install"
-msgstr "Усталёўка"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "True Type fonts installation"
+msgstr "Падрыхтоўка ўсталяваньня"
-#: ../../standalone/drakfont_.c:1178
-#, fuzzy
-msgid "Remove fonts on your system"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "Fonts copy"
+msgstr "Фарматаваць дыскету"
-#: ../../standalone/drakfont_.c:1182
-#, fuzzy
-msgid "Post Uninstall"
-msgstr "Заканчэнне ўсталявання"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Search for fonts in installed list"
+msgstr ""
-#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:182
-msgid "Internet Connection Sharing"
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "could not find any font.\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:114
-msgid "Sorry, we support only 2.4 kernels."
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakgw_.c:125
-msgid "Internet Connection Sharing currently enabled"
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "could not find any font in your mounted partitions"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, fuzzy, c-format
+msgid "no fonts found"
+msgstr "Не знайшлi %s"
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "parse all fonts"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Unselect fonts installed"
+msgstr ""
+
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Search installed fonts"
+msgstr ""
-#: ../../standalone/drakgw_.c:126
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently enabled.\n"
+"Welcome to the Internet Connection Sharing utility!\n"
"\n"
-"What would you like to do?"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Internet Connection Sharing configuration"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:130
-#, fuzzy
-msgid "disable"
-msgstr "Таблiца"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The setup has already been done, but it's currently disabled."
+msgstr ""
-#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
-msgid "dismiss"
+#: ../../standalone/drakgw:1
+#, c-format
+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"
+"Зараз вы можаце сумесна выкарыстоўваць падключэнне да Internet\n"
+"з іншымі камп'ютэрамі ў вашай ЛВС, карыстаючыся аўтаматычным\n"
+"канфігураваннем (DHCP)."
-#: ../../standalone/drakgw_.c:130 ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "reconfigure"
-msgstr "Настройка X Window"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid "Problems installing package %s"
+msgstr "Праблемы з усталяваннем пакету %s"
-#: ../../standalone/drakgw_.c:133
-#, fuzzy
-msgid "Disabling servers..."
-msgstr "Вызначэнне прыладаў..."
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
-#: ../../standalone/drakgw_.c:142
-#, fuzzy
-msgid "Internet connection sharing is now disabled."
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Configuring..."
+msgstr "Настройка IDE"
-#: ../../standalone/drakgw_.c:149
-msgid "Internet Connection Sharing currently disabled"
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Potential LAN address conflict found in current config of %s!\n"
+msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"
-#: ../../standalone/drakgw_.c:150
-msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
-"\n"
-"What would you like to do?"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:154
-#, fuzzy
-msgid "enable"
-msgstr "Таблiца"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Re-configure interface and DHCP server"
+msgstr ""
-#: ../../standalone/drakgw_.c:161
-msgid "Enabling servers..."
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../../standalone/drakgw_.c:166
-#, fuzzy
-msgid "Internet connection sharing is now enabled."
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The default lease (in seconds)"
+msgstr ""
-#: ../../standalone/drakgw_.c:183
-#, fuzzy
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP end range"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "The DHCP start range"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The internal domain name"
+msgstr "Iмя друкаркi"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "The DNS Server IP"
+msgstr "IP сервера SMB"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "(This) DHCP Server IP"
+msgstr "IP сервера SMB"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use "
-"this computer's Internet connection.\n"
+"DHCP Server Configuration.\n"
"\n"
-"Make sure you have configured your Network/Internet access using drakconnect "
-"before going any further.\n"
+"Here you can select different options for the DHCP server configuration.\n"
+"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN)."
msgstr ""
-"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
-" Інтэрнэту (Internet Connection Sharing)?\n"
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Local Network adress"
+msgstr "сеткавая карта не знойдзена"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP "
+"server; in that case please verify I correctly read the Network that you use "
+"for your local network; I will not reconfigure it and I will not touch your "
+"DHCP server configuration.\n"
"\n"
-"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. "
+"You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Otherwise, I can reconfigure your interface and (re)configure a DHCP server "
+"for you.\n"
"\n"
-"Вы жадаеце усталяваць сумесны доступ да Internet?"
+msgstr ""
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Interface %s (using module %s)"
+msgid ""
+"Current configuration of `%s':\n"
+"\n"
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:212
+#: ../../standalone/drakgw:1
#, fuzzy, c-format
-msgid "Interface %s"
-msgstr "Сеткавы iнтэрфейс"
+msgid "Current interface configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakgw_.c:220
-msgid "No network adapter on your system!"
-msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Show current interface configuration"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../standalone/drakgw_.c:221
-msgid ""
-"No ethernet network adapter has been detected on your system. Please run the "
-"hardware configuration tool."
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "No (experts only)"
msgstr ""
-"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
-"скарыстайце канфiгурацыйны iнструмэнт."
-#: ../../standalone/drakgw_.c:227
-msgid "Network interface"
-msgstr "Сеткавы iнтэрфейс"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Automatic reconfiguration"
+msgstr "Настройка мадэму"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
-"There is only one configured network adapter on your system:\n"
+"Warning, the network adapter (%s) is already configured.\n"
"\n"
-"%s\n"
+"Do you want an automatic re-configuration?\n"
"\n"
-"I am about to setup your Local Area Network with that adapter."
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:235
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Network interface already configured"
+msgstr "Манiтор пакуль не настроены"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11968,339 +15048,494 @@ msgstr ""
"Калi ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
"вашай лакальнай сеткi."
-#: ../../standalone/drakgw_.c:261
-#, fuzzy
-msgid "Network interface already configured"
-msgstr "Манiтор пакуль не настроены"
-
-#: ../../standalone/drakgw_.c:262
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
+"There is only one configured network adapter on your system:\n"
"\n"
-"Do you want an automatic re-configuration?\n"
+"%s\n"
"\n"
-"You can do it manually but you need to know what you're doing."
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:267
-#, fuzzy
-msgid "Automatic reconfiguration"
-msgstr "Настройка мадэму"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Network interface"
+msgstr "Сеткавы iнтэрфейс"
-#: ../../standalone/drakgw_.c:267
-msgid "No (experts only)"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
msgstr ""
+"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
+"скарыстайце канфiгурацыйны iнструмэнт."
-#: ../../standalone/drakgw_.c:268
-#, fuzzy
-msgid "Show current interface configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#, c-format
+msgid "No network adapter on your system!"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
-#: ../../standalone/drakgw_.c:269
-#, fuzzy
-msgid "Current interface configuration"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Interface %s"
+msgstr "Сеткавы iнтэрфейс"
-#: ../../standalone/drakgw_.c:270
+#: ../../standalone/drakgw:1
#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:283
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
-"I can keep your current configuration and assume you already set up a DHCP "
-"server; in that case please verify I correctly read the Network that you use "
-"for your local network; I will not reconfigure it and I will not touch your "
-"DHCP server configuration.\n"
+"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 "
+"this computer's Internet connection.\n"
"\n"
-"The default DNS entry is the Caching Nameserver configured on the firewall. "
-"You can replace that with your ISP DNS IP, for example.\n"
-"\t\t \n"
-"Else, I can reconfigure your interface and (re)configure a DHCP server for "
-"you.\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
-
-#: ../../standalone/drakgw_.c:290
-#, fuzzy
-msgid "Local Network adress"
-msgstr "сеткавая карта не знойдзена"
-
-#: ../../standalone/drakgw_.c:294
-msgid ""
-"DHCP Server Configuration.\n"
+"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
+" Інтэрнэту (Internet Connection Sharing)?\n"
"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you don't know the meaning of an option, simply leave it as it is.\n"
+"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
"\n"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:300
-#, fuzzy
-msgid "(This) DHCP Server IP"
-msgstr "IP сервера SMB"
-
-#: ../../standalone/drakgw_.c:301
-#, fuzzy
-msgid "The DNS Server IP"
-msgstr "IP сервера SMB"
+"Вы жадаеце усталяваць сумесны доступ да Internet?"
-#: ../../standalone/drakgw_.c:302
-#, fuzzy
-msgid "The internal domain name"
-msgstr "Iмя друкаркi"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
-#: ../../standalone/drakgw_.c:303
-msgid "The DHCP start range"
-msgstr ""
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Internet Connection Sharing is now enabled."
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
-#: ../../standalone/drakgw_.c:304
-msgid "The DHCP end range"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:305
-msgid "The default lease (in seconds)"
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:306
-msgid "The maximum lease (in seconds)"
-msgstr ""
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "reconfigure"
+msgstr "Настройка X Window"
-#: ../../standalone/drakgw_.c:307
-msgid "Re-configure interface and DHCP server"
-msgstr ""
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "enable"
+msgstr "Таблiца"
-#: ../../standalone/drakgw_.c:314
-msgid "The Local Network did not finish with `.0', bailing out."
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:325
+#: ../../standalone/drakgw:1
#, c-format
-msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
-#: ../../standalone/drakgw_.c:335
-#, fuzzy
-msgid "Configuring..."
-msgstr "Настройка IDE"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Internet Connection Sharing is now disabled."
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
-#: ../../standalone/drakgw_.c:336
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Disabling servers..."
+msgstr "Вызначэнне прыладаў..."
-#: ../../standalone/drakgw_.c:372
-#, c-format
-msgid "Problems installing package %s"
-msgstr "Праблемы з усталяваннем пакету %s"
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "disable"
+msgstr "Таблiца"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw:1
+#, c-format
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)."
+"The setup of Internet Connection Sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
msgstr ""
-"Усе адканфігуравана.\n"
-"Зараз вы можаце сумесна выкарыстоўваць падключэнне да Internet\n"
-"з іншымі камп'ютэрамі ў вашай ЛВС, карыстаючыся аўтаматычным\n"
-"канфігураваннем (DHCP)."
-#: ../../standalone/drakgw_.c:523
-msgid "The setup has already been done, but it's currently disabled."
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:524
-msgid "The setup has already been done, and it's currently enabled."
+#: ../../standalone/drakhelp:1
+#, c-format
+msgid ""
+"No browser is installed on your system, Please install one if you want to "
+"browse the help system"
msgstr ""
-#: ../../standalone/drakgw_.c:525
-#, fuzzy
-msgid "No Internet Connection Sharing has ever been configured."
-msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "group :"
+msgstr "Працоўная група"
-#: ../../standalone/drakgw_.c:531
-#, fuzzy
-msgid "Internet connection sharing configuration"
-msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "user :"
+msgstr "Iмя карыстальнiку:"
-#: ../../standalone/drakgw_.c:539
+#: ../../standalone/drakperm:1
#, fuzzy, c-format
-msgid ""
-"Welcome to the Internet Connection Sharing utility!\n"
-"\n"
-"%s\n"
-"\n"
-"Click on Configure to launch the setup wizard."
-msgstr "Сумеснае Iнтэрнэт-злучэнне"
+msgid "Path selection"
+msgstr "Асабiсты выбар пакетаў"
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "group"
-msgstr "Працоўная група"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "when checked, owner and group won't be changed"
+msgstr ""
-#: ../../standalone/drakperm_.c:36
-msgid "path"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "permissions"
-msgstr "Раздзел %s"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Use owner id for execution"
+msgstr ""
-#: ../../standalone/drakperm_.c:36
-#, fuzzy
-msgid "user"
-msgstr "Iмя карыстальнiку:"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid ""
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
+msgstr ""
-#: ../../standalone/drakperm_.c:43
-msgid "Up"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:44
-#, fuzzy
-msgid "delete"
-msgstr "Знiшчыць"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Set-UID"
+msgstr ""
-#: ../../standalone/drakperm_.c:45
-#, fuzzy
-msgid "edit"
-msgstr "Сярэднi"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "sticky-bit"
+msgstr ""
-#: ../../standalone/drakperm_.c:46
-#, fuzzy
-msgid "Down"
-msgstr "Зроблена"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Property"
+msgstr "Порт"
-#: ../../standalone/drakperm_.c:47
-#, fuzzy
-msgid "add a rule"
-msgstr "Дадаць карыстальнiка"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Path"
+msgstr ""
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Permissions"
+msgstr "Версiя: %s\n"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Current user"
+msgstr "Прыняць карыстальнiка"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "browse"
+msgstr ""
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm:1
+#, c-format
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm:1
+#, c-format
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:56
-#, fuzzy
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Edit current rule"
+msgstr ""
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "edit"
+msgstr "Сярэднi"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Delete selected rule"
+msgstr "Выдалiць чаргу друку"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "delete"
+msgstr "Знiшчыць"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
msgid "Add a new rule at the end"
msgstr "Iмя друкаркi"
-#: ../../standalone/drakperm_.c:57
-msgid "Edit curent rule"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "add a rule"
+msgstr "Дадаць карыстальнiка"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Move selected rule down one level"
msgstr ""
-#: ../../standalone/drakperm_.c:58
-msgid "Up selected rule one level"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "Down"
+msgstr "Зроблена"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Move selected rule up one level"
msgstr ""
-#: ../../standalone/drakperm_.c:59
-msgid "Down selected rule one level"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:60
-#, fuzzy
-msgid "Delete selected rule"
-msgstr "Выдалiць чаргу друку"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "permissions"
+msgstr "Раздзел %s"
-#: ../../standalone/drakperm_.c:224
-msgid "browse"
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "group"
+msgstr "Працоўная група"
+
+#: ../../standalone/drakperm:1
+#, fuzzy, c-format
+msgid "user"
+msgstr "Iмя карыстальнiку:"
+
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:231
-#, fuzzy
-msgid "Current user"
-msgstr "Прыняць карыстальнiка"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Location of auto_install.cfg file"
+msgstr "Стварэнне дыскеты для ўсталявання"
-#: ../../standalone/drakperm_.c:236
-#, fuzzy
-msgid "Permissions"
-msgstr "Версiя: %s\n"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"Please indicate where the auto_install.cfg file is located.\n"
+"\n"
+"Leave it blank if you do not want to set up automatic installation mode.\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakperm_.c:237
-msgid "Path"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"No CD or DVD image found, please copy the installation program and rpm files."
msgstr ""
-#: ../../standalone/drakperm_.c:238
-#, fuzzy
-msgid "Property"
-msgstr "Порт"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "No image found"
+msgstr "Лакальны прынтэр"
-#: ../../standalone/drakperm_.c:240
-msgid "sticky-bit"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation image directory"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid ""
+"Please indicate where the installation image will be available.\n"
+"\n"
+"If you do not have an existing directory, please copy the CD or DVD "
+"contents.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:241
-msgid "Set-UID"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "The DHCP end ip"
msgstr ""
-#: ../../standalone/drakperm_.c:242
-msgid "Set-GID"
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "The DHCP start ip"
msgstr ""
-#: ../../standalone/drakperm_.c:296
+#: ../../standalone/drakpxe:1
+#, c-format
msgid ""
-"Used for directory:\n"
-" only owner of directory or file in this directory can delete it"
+"The DHCP server will allow other computer to boot using PXE in the given "
+"range of address.\n"
+"\n"
+"The network address is %s using a netmask of %s.\n"
+"\n"
msgstr ""
-#: ../../standalone/drakperm_.c:297
-msgid "Use owner id for execution"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Interface %s (on network %s)"
+msgstr "Сеткавы iнтэрфейс"
+
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Please choose which network interface will be used for the dhcp server."
msgstr ""
+"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
+"далучэння да iнтэрнэт"
-#: ../../standalone/drakperm_.c:298
-msgid "Use group id for execution"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid ""
+"You are about to configure your computer to install a PXE server as a DHCP "
+"server\n"
+"and a TFTP server to build an installation server.\n"
+"With that feature, other computers on your local network will be installable "
+"using from this computer.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect "
+"before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN)."
msgstr ""
+"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
+" Інтэрнэту (Internet Connection Sharing)?\n"
+"\n"
+"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
+"\n"
+"Вы жадаеце усталяваць сумесны доступ да Internet?"
-#: ../../standalone/drakperm_.c:299
-msgid "when checked, owner and group won't be changed"
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "Installation Server Configuration"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/drakpxe:1
+#, fuzzy, c-format
+msgid "PXE Server Configuration"
+msgstr "Заканчэнне настройкi"
+
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security options..."
+msgstr "Падрыхтоўка ўсталяваньня"
+
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Please wait, setting security level..."
+msgstr "Настройкi ўзроўня бяспекi"
+
+#: ../../standalone/draksec:1
+#, c-format
+msgid "Periodic Checks"
msgstr ""
-#: ../../standalone/drakperm_.c:304
-#, fuzzy
-msgid "Path selection"
-msgstr "Асабiсты выбар пакетаў"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "System Options"
+msgstr "Опцыi модулю:"
-#: ../../standalone/drakperm_.c:350
-#, fuzzy
-msgid "user :"
-msgstr "Iмя карыстальнiку:"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Network Options"
+msgstr "Опцыi модулю:"
-#: ../../standalone/drakperm_.c:352
-#, fuzzy
-msgid "group :"
-msgstr "Працоўная група"
+#: ../../standalone/draksec:1
+#, c-format
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need an explanation, look at the help tooltip.\n"
+msgstr ""
-#: ../../standalone/draksound_.c:46
-#, fuzzy
-msgid "No Sound Card detected!"
-msgstr "Размеркаванне"
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Administrator:"
+msgstr "Опцыi аддаленага прынтэру lpd"
+
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Alerts:"
+msgstr "Настройкi ўзроўня бяспекi"
+
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "(default value: %s)"
+msgstr " ? (змоўчанне %s) "
+
+#: ../../standalone/draksec:1
+#, fuzzy, c-format
+msgid "Security Level:"
+msgstr "Настройкi ўзроўня бяспекi"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksec:1
+#, c-format
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-"
-"supported Sound Card is correctly plugged in.\n"
+"Standard: This is the standard security recommended for a computer that will "
+"be used to connect\n"
+" to the Internet as a client.\n"
"\n"
+"High: There are already some restrictions, and more automatic checks "
+"are run every night.\n"
"\n"
-"You can visit our hardware database at:\n"
+"Higher: The security is now high enough to use the system as a server "
+"which can accept\n"
+" connections from many clients. If your machine is only a "
+"client on the Internet, you\n"
+"\t should choose a lower level.\n"
"\n"
+"Paranoid: This is similar to the previous level, but the system is entirely "
+"closed and security\n"
+" features are at their maximum\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Security Administrator:\n"
+" If the 'Security Alerts' option is set, security alerts will "
+"be sent to this user (username or\n"
+"\t email)"
msgstr ""
-#: ../../standalone/draksound_.c:54
+#: ../../standalone/draksound:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -12309,715 +15544,811 @@ msgid ""
"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:21
+#: ../../standalone/draksound:1
+#, c-format
msgid ""
-"package 'ImageMagick' is required for correct working.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+"No Sound Card has been detected on your machine. Please verify that a Linux-"
+"supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:67
-#, fuzzy
-msgid "first step creation"
-msgstr "Настройка пасля ўсталявання"
+#: ../../standalone/draksound:1
+#, fuzzy, c-format
+msgid "No Sound Card detected!"
+msgstr "Размеркаванне"
-#: ../../standalone/draksplash_.c:70
-#, fuzzy
-msgid "final resolution"
-msgstr "Памеры экрану"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
-#: ../../standalone/draksplash_.c:71 ../../standalone/draksplash_.c:163
-#, fuzzy
-msgid "choose image file"
-msgstr "Абярыце дзеянне"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Generating preview ..."
+msgstr "Вызначэнне прыладаў..."
-#: ../../standalone/draksplash_.c:72
-#, fuzzy
-msgid "Theme name"
-msgstr "Iмя для размеркаванага рэсурсу"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "You must choose an image file first!"
+msgstr "URI прынтэру"
-#: ../../standalone/draksplash_.c:77
-msgid "Browse"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "ProgressBar color selection"
+msgstr "Злучэнне прынтэру"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "This theme does not yet have a bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:87 ../../standalone/draksplash_.c:153
-#, fuzzy
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "saving Bootsplash theme..."
+msgstr ""
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image file"
+msgstr "Абярыце дзеянне"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Настройка службаў"
-#: ../../standalone/draksplash_.c:90
-msgid ""
-"x coordinate of text box\n"
-"in number of character"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:91
-msgid ""
-"y coordinate of text box\n"
-"in number of character"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:92
-msgid "text width"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Choose color"
+msgstr "Абярыце манiтор"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Save theme"
+msgstr "Усталяванне сiстэмы"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Preview"
+msgstr "прылада"
+
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:93
-msgid "text box height"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the height of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:94
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "the width of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:95
+#: ../../standalone/draksplash:1
+#, c-format
msgid ""
"the progress bar y coordinate\n"
"of its upper left corner"
msgstr ""
-#: ../../standalone/draksplash_.c:96
-msgid "the width of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:97
-msgid "the heigth of the progress bar"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/draksplash_.c:98
-msgid "the color of the progress bar"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "text box height"
msgstr ""
-#: ../../standalone/draksplash_.c:113
-#, fuzzy
-msgid "Preview"
-msgstr "прылада"
-
-#: ../../standalone/draksplash_.c:115
-#, fuzzy
-msgid "Save theme"
-msgstr "Усталяванне сiстэмы"
-
-#: ../../standalone/draksplash_.c:116
-#, fuzzy
-msgid "Choose color"
-msgstr "Абярыце манiтор"
-
-#: ../../standalone/draksplash_.c:119
-msgid "Display logo on Console"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "text width"
msgstr ""
-#: ../../standalone/draksplash_.c:120
-msgid "Make kernel message quiet by default"
+#: ../../standalone/draksplash:1
+#, c-format
+msgid ""
+"y coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../standalone/draksplash_.c:156 ../../standalone/draksplash_.c:321
+#: ../../standalone/draksplash:1
#, c-format
-msgid "This theme haven't yet any bootsplash in %s !"
+msgid ""
+"x coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../standalone/draksplash_.c:205
-msgid "saving Bootsplash theme..."
+#: ../../standalone/draksplash:1
+#, c-format
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:428
-#, fuzzy
-msgid "ProgressBar color selection"
-msgstr "Злучэнне прынтэру"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Theme name"
+msgstr "Iмя для размеркаванага рэсурсу"
-#: ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "You must choose an image file first!"
-msgstr "URI прынтэру"
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "final resolution"
+msgstr "Памеры экрану"
-#: ../../standalone/draksplash_.c:458
-#, fuzzy
-msgid "Generating preview ..."
-msgstr "Вызначэнне прыладаў..."
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "first step creation"
+msgstr "Настройка пасля ўсталявання"
-#. -PO First %s is theme name, second %s (in parenthesis) is resolution
-#: ../../standalone/draksplash_.c:506
+#: ../../standalone/draksplash:1
#, c-format
-msgid "%s BootSplash (%s) preview"
+msgid ""
+"package 'ImageMagick' is required to be able to complete configuration.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/drakxtv_.c:46
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
-"XawTV isn't installed!\n"
+"No TV Card has been detected on your machine. Please verify that a Linux-"
+"supported Video/TV Card is correctly plugged in.\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\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"
+"You can visit our hardware database at:\n"
"\n"
"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:63
-#, fuzzy
-msgid "Canada (cable)"
-msgstr "Канадскi (Квебэк)"
-
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (broadcast)"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (cable)"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakxtv_.c:63
-msgid "USA (cable-hrc)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "China (broadcast)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "Japan (broadcast)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:64
-msgid "Japan (cable)"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "East Europe"
-msgstr "Еўропа"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "France [SECAM]"
-msgstr "Францыя"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Ireland"
-msgstr "Iсландскi"
-
-#: ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "West Europe"
-msgstr "Еўропа"
-
-#: ../../standalone/drakxtv_.c:66
-#, fuzzy
-msgid "Australia"
-msgstr "паслядоўная"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "There was an error while scanning for TV channels"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
-#: ../../standalone/drakxtv_.c:66
-msgid "Newzealand"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:67
-msgid "South Africa"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:68
-msgid "Argentina"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Area:"
msgstr ""
-#: ../../standalone/drakxtv_.c:69
-msgid "Australian Optus cable TV"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "TV norm:"
msgstr ""
-#: ../../standalone/drakxtv_.c:102
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:104
-msgid "TV norm:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../standalone/drakxtv_.c:105
-msgid "Area:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:109
-msgid "Scanning for TV channels in progress ..."
-msgstr ""
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "France [SECAM]"
+msgstr "Францыя"
-#: ../../standalone/drakxtv_.c:116
-msgid "Scanning for TV channels"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "East Europe"
+msgstr "Еўропа"
+
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "West Europe"
+msgstr "Еўропа"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
-#, fuzzy
-msgid "There was an error while scanning for TV channels"
-msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Japan (cable)"
+msgstr ""
-#: ../../standalone/drakxtv_.c:121
-msgid "XawTV isn't installed!"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:124
-msgid "Have a nice day!"
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Canada (cable)"
+msgstr "Канадскi (Квебэк)"
+
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:125
-msgid "Now, you can run xawtv (under X Window!) !\n"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:147
-msgid "No TV Card detected!"
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv:1
+#, c-format
msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-"
-"supported Video/TV Card is correctly plugged in.\n"
+"XawTV isn't installed!\n"
"\n"
"\n"
-"You can visit our hardware database at:\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\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"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/harddrake2_.c:17
-#, fuzzy
-msgid "Alternative drivers"
-msgstr "Друк тэставых старонак"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Options"
+msgstr "Опцыi"
-#: ../../standalone/harddrake2_.c:18
-msgid "the list of alternative drivers for this sound card"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect jazz drives"
+msgstr "Аддалены прынтэр"
-#: ../../standalone/harddrake2_.c:20
-msgid "Bus"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect modems"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect printers"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "primary"
msgstr ""
-#: ../../standalone/harddrake2_.c:21
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "secondary"
+msgstr "%d секундаў"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+"Click on a device in the left tree in order to display its information here."
msgstr ""
-#: ../../standalone/harddrake2_.c:22
-#, fuzzy
-msgid "Channel"
-msgstr "Адмена"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
-#: ../../standalone/harddrake2_.c:22
-msgid "EIDE/SCSI channel"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Run config tool"
msgstr ""
-#: ../../standalone/harddrake2_.c:23
-msgid "Bogomips"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Configure module"
+msgstr "Настройка мышы"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Information"
+msgstr "Iнфармацыя"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Detected hardware"
+msgstr "Гл. апiсанне абсталявання"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Harddrake2 version "
+msgstr "Вызначэнне жорсткага дыску"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Detection in progress"
+msgstr "Дубляванне пункту манцiравання %s"
-#: ../../standalone/harddrake2_.c:23
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Author:"
+msgstr "Аўтапошук"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"The GNU/Linux kernel needs to do run a calculation loop at boot time\n"
-"\t to initialize a timer counter. Its result is stored as bogomips as a way "
-"to \"benchmark\" the cpu."
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
msgstr ""
-#: ../../standalone/harddrake2_.c:26
-#, fuzzy
-msgid "Bus identification"
-msgstr "Аўтэнтыфiкацыя"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "About Harddrake"
+msgstr ""
-#: ../../standalone/harddrake2_.c:27
-msgid ""
-"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
-"PCI/USB ids"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_About..."
+msgstr "Адмянiць"
+
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_Help"
msgstr ""
-#: ../../standalone/harddrake2_.c:29
-msgid "Location on the bus"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "/_Report Bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:30
+#: ../../standalone/harddrake2:1
+#, c-format
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"
+"Once you've selected a device, you'll be able to see the device information "
+"in fields displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/harddrake2_.c:33
-#, fuzzy
-msgid "Cache size"
-msgstr "памер блоку"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Select a device !"
+msgstr "Абярыце вiдэакарту"
-#: ../../standalone/harddrake2_.c:33
-msgid "Size of the (second level) cpu cache"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../standalone/harddrake2_.c:34
-msgid "Coma bug:"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Harddrake help"
msgstr ""
-#: ../../standalone/harddrake2_.c:34
-msgid "Does this cpu has Cyrix 6x86 Coma bug ?"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Fields description"
+msgstr "Апiсанне"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _jazz drives"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_Options"
msgstr ""
-#: ../../standalone/harddrake2_.c:35
-msgid "Cpuid family"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _modems"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/Autodetect _printers"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "/_Quit"
+msgstr "Выхад"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the vendor name of the processor"
msgstr ""
-#: ../../standalone/harddrake2_.c:35
-msgid "Family of the cpu (eg: 6 for i686 class)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the vendor name of the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:36
-#, fuzzy
-msgid "Cpuid level"
-msgstr "Настройкi ўзроўня бяспекi"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "The type of bus on which the mouse is connected"
+msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-#: ../../standalone/harddrake2_.c:36
-msgid "Information level that can be obtained through the cpuid instruction"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../standalone/harddrake2_.c:37
-msgid "Frequency (MHz)"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model stepping"
+msgstr "фарматаванне"
-#: ../../standalone/harddrake2_.c:37
-msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
-"coarsely assimilated to number of instructions the cpu is able to execute "
-"per second)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the number of the processor"
msgstr ""
-#: ../../standalone/harddrake2_.c:38
-msgid "This field describes the device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Processor ID"
msgstr ""
-#: ../../standalone/harddrake2_.c:39
-#, fuzzy
-msgid "Old device file"
-msgstr "Абярыце файл"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "network printer port"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
-#: ../../standalone/harddrake2_.c:40
-msgid "old static device name used in dev package"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Name"
+msgstr "Iмя: "
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Number of buttons"
+msgstr "2 кнопкi"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Official vendor name of the cpu"
msgstr ""
-#: ../../standalone/harddrake2_.c:41
-#, fuzzy
-msgid "New devfs device"
-msgstr "Прылада-шлюз"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model name"
+msgstr "Опцыi модулю:"
-#: ../../standalone/harddrake2_.c:42
-msgid "new dinamic device name generated by incore kernel devfs"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../standalone/harddrake2_.c:43
-#, fuzzy
-msgid "Module"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Model"
msgstr "Порт мышы"
-#: ../../standalone/harddrake2_.c:43
-msgid "the module of the GNU/Linux kernel that handle that device"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "hard disk model"
+msgstr "Адрасы памяці карты (DMA)"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "class of hardware device"
msgstr ""
-#: ../../standalone/harddrake2_.c:44
-msgid "CPU flags reported by the kernel"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Media class"
msgstr ""
-#: ../../standalone/harddrake2_.c:44
-msgid "Flags"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Sub generation of the cpu"
msgstr ""
-#: ../../standalone/harddrake2_.c:45
-msgid "Fdiv bug"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Level"
+msgstr "узровень"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Format of floppies the drive accept"
msgstr ""
-#: ../../standalone/harddrake2_.c:46
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Floppy format"
+msgstr "Фарматаванне"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Early Intel Pentium chips manufactured have a bug in their floating point "
-"processor which did not achieve the attended precision when performing a "
-"Floating point DIVision (FDIV)"
+"Some of the early i486DX-100 chips cannot reliably return to operating mode "
+"after the \"halt\" instruction is used"
msgstr ""
-#: ../../standalone/harddrake2_.c:49
-msgid "Is FPU present"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Halt bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:49
-msgid "yes means the processor has an arithmetic coprocessor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../standalone/harddrake2_.c:50
-msgid "Does FPU have an irq vector"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "F00f bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:50
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../standalone/harddrake2_.c:51
-msgid "Early pentium were buggy and freezed when decoding the F00F bytecode"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether the FPU has an irq vector"
msgstr ""
-#: ../../standalone/harddrake2_.c:51
-msgid "F00f bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/harddrake2_.c:52
-msgid "Halt bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Is FPU present"
msgstr ""
-#: ../../standalone/harddrake2_.c:53
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Some of the early i486DX-100 chips cannot reliably return to operating mode "
-"after the \"halt\" instruction is used"
+"Early Intel Pentium chips manufactured have a bug in their floating point "
+"processor which did not achieve the required precision when performing a "
+"Floating point DIVision (FDIV)"
msgstr ""
-#: ../../standalone/harddrake2_.c:55
-#, fuzzy
-msgid "Floppy format"
-msgstr "Фарматаванне"
-
-#: ../../standalone/harddrake2_.c:55
-msgid "Format of floppies the drive accept"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Fdiv bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:56
-#, fuzzy
-msgid "Level"
-msgstr "узровень"
-
-#: ../../standalone/harddrake2_.c:56
-msgid "Sub generation of the cpu"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../standalone/harddrake2_.c:57
-msgid "Media class"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Flags"
msgstr ""
-#: ../../standalone/harddrake2_.c:57
-msgid "class of hardware device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:58 ../../standalone/harddrake2_.c:59
-#, fuzzy
-msgid "Model"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Module"
msgstr "Порт мышы"
-#: ../../standalone/harddrake2_.c:58
-#, fuzzy
-msgid "hard disk model"
-msgstr "Адрасы памяці карты (DMA)"
-
-#: ../../standalone/harddrake2_.c:59
-msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
-#: ../../standalone/harddrake2_.c:60
-#, fuzzy
-msgid "Model name"
-msgstr "Опцыi модулю:"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "New devfs device"
+msgstr "Прылада-шлюз"
-#: ../../standalone/harddrake2_.c:60
-msgid "Official vendor name of the cpu"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../standalone/harddrake2_.c:61
-#, fuzzy
-msgid "Number of buttons"
-msgstr "2 кнопкi"
-
-#: ../../standalone/harddrake2_.c:62
-#, fuzzy
-msgid "Name"
-msgstr "Iмя: "
-
-#: ../../standalone/harddrake2_.c:63
-#, fuzzy
-msgid "network printer port"
-msgstr "Сеткавы прынтэр (TCP/Socket)"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Old device file"
+msgstr "Абярыце файл"
-#: ../../standalone/harddrake2_.c:64
-msgid "Processor ID"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "This field describes the device"
msgstr ""
-#: ../../standalone/harddrake2_.c:64
-msgid "the number of the processor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"coarsely assimilated to number of instructions the cpu is able to execute "
+"per second)"
msgstr ""
-#: ../../standalone/harddrake2_.c:65
-#, fuzzy
-msgid "Model stepping"
-msgstr "фарматаванне"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Frequency (MHz)"
+msgstr ""
-#: ../../standalone/harddrake2_.c:65
-msgid "Stepping of the cpu (sub model (generation) number)"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../standalone/harddrake2_.c:66
-#, fuzzy
-msgid "The type of bus on which the mouse is connected"
-msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cpuid level"
+msgstr "Настройкi ўзроўня бяспекi"
-#: ../../standalone/harddrake2_.c:67
-msgid "the vendor name of the device"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../standalone/harddrake2_.c:68
-msgid "the vendor name of the processor"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Cpuid family"
msgstr ""
-#: ../../standalone/harddrake2_.c:82
-#, fuzzy
-msgid "/_Quit"
-msgstr "Выхад"
-
-#: ../../standalone/harddrake2_.c:83
-#, fuzzy
-msgid "/Autodetect _printers"
-msgstr "Аддалены прынтэр"
-
-#: ../../standalone/harddrake2_.c:83 ../../standalone/harddrake2_.c:85
-#: ../../standalone/logdrake_.c:81
-msgid "/_Options"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:85
-#, fuzzy
-msgid "/Autodetect _modems"
-msgstr "Аддалены прынтэр"
-
-#: ../../standalone/harddrake2_.c:87 ../../standalone/harddrake2_.c:89
-#: ../../standalone/harddrake2_.c:100 ../../standalone/harddrake2_.c:102
-#: ../../standalone/logdrake_.c:83
-msgid "/_Help"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Coma bug"
msgstr ""
-#: ../../standalone/harddrake2_.c:89
-msgid "/_Help..."
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Size of the (second level) cpu cache"
msgstr ""
-#: ../../standalone/harddrake2_.c:92
-msgid "Harddrake help"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Cache size"
+msgstr "памер блоку"
-#: ../../standalone/harddrake2_.c:93
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Description of the fields:\n"
-"\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"
msgstr ""
-#: ../../standalone/harddrake2_.c:96
-msgid ""
-"Once you've selected a device, you'll be able to see explanations on fields "
-"displayed on the right frame (\"Information\")"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Location on the bus"
msgstr ""
-#: ../../standalone/harddrake2_.c:96
-#, fuzzy
-msgid "Select a device !"
-msgstr "Абярыце вiдэакарту"
-
-#: ../../standalone/harddrake2_.c:100
-msgid "/_Report Bug"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid ""
+"- PCI and USB devices: this lists the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
msgstr ""
-#: ../../standalone/harddrake2_.c:102
-#, fuzzy
-msgid "/_About..."
-msgstr "Адмянiць"
-
-#: ../../standalone/harddrake2_.c:104
-msgid "About Harddrake"
-msgstr ""
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Bus identification"
+msgstr "Аўтэнтыфiкацыя"
-#: ../../standalone/harddrake2_.c:105
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"The GNU/Linux kernel needs to run a calculation loop at boot time to "
+"initialize a timer counter. Its result is stored as bogomips as a way to "
+"\"benchmark\" the cpu."
msgstr ""
-#: ../../standalone/harddrake2_.c:106
-#, fuzzy
-msgid "Author:"
-msgstr "Аўтапошук"
-
-#: ../../standalone/harddrake2_.c:113
-#, fuzzy
-msgid "Detection in progress"
-msgstr "Дубляванне пункту манцiравання %s"
-
-#: ../../standalone/harddrake2_.c:119
-#, fuzzy
-msgid "Harddrake2 version "
-msgstr "Вызначэнне жорсткага дыску"
-
-#: ../../standalone/harddrake2_.c:126
-#, fuzzy
-msgid "Detected hardware"
-msgstr "Гл. апiсанне абсталявання"
-
-#: ../../standalone/harddrake2_.c:129
-#, fuzzy
-msgid "Information"
-msgstr "Iнфармацыя"
-
-#: ../../standalone/harddrake2_.c:131
-#, fuzzy
-msgid "Configure module"
-msgstr "Настройка мышы"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Bogomips"
+msgstr ""
-#: ../../standalone/harddrake2_.c:137
-msgid "Run config tool"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../standalone/harddrake2_.c:143
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+msgid "Channel"
+msgstr "Адмена"
-#: ../../standalone/harddrake2_.c:159
+#: ../../standalone/harddrake2:1
+#, c-format
msgid ""
-"Click on a device in the left tree in order to get its information displayed "
-"here."
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../standalone/harddrake2_.c:231
-msgid "primary"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "Bus"
msgstr ""
-#: ../../standalone/harddrake2_.c:231
-#, fuzzy
-msgid "secondary"
-msgstr "%d секундаў"
-
-#: ../../standalone/harddrake2_.c:260
-#, fuzzy
-msgid "/Autodetect modems"
-msgstr "Аддалены прынтэр"
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the list of alternative drivers for this sound card"
+msgstr ""
-#: ../../standalone/harddrake2_.c:260
-#, fuzzy
-msgid "/Autodetect printers"
-msgstr "Аддалены прынтэр"
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Alternative drivers"
+msgstr "Друк тэставых старонак"
-#: ../../standalone/harddrake2_.c:261
-#, fuzzy
-msgid "/Options"
-msgstr "Опцыi"
+#: ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Do you want the BackSpace to return Delete in console?"
+msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
-#: ../../standalone/keyboarddrake_.c:26
+#: ../../standalone/keyboarddrake:1
+#, c-format
msgid "Please, choose your keyboard layout."
msgstr "Калi ласка, абярыце тып клавiятуры."
-#: ../../standalone/keyboarddrake_.c:35
-msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
-
-#: ../../standalone/livedrake_.c:18
-#, fuzzy
-msgid "Change Cd-Rom"
-msgstr "Змянiць памеры экрану"
+#: ../../standalone/livedrake:1
+#, c-format
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Немагчыма запусціць live upgrade !!!\n"
-#: ../../standalone/livedrake_.c:19
-#, fuzzy
+#: ../../standalone/livedrake:1
+#, fuzzy, c-format
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."
@@ -13029,660 +16360,785 @@ msgstr ""
"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
"Cd."
-#: ../../standalone/livedrake_.c:29
-msgid "Unable to start live upgrade !!!\n"
-msgstr "Немагчыма запусціць live upgrade !!!\n"
+#: ../../standalone/livedrake:1
+#, fuzzy, c-format
+msgid "Change Cd-Rom"
+msgstr "Змянiць памеры экрану"
-#: ../../standalone/localedrake_.c:34
+#: ../../standalone/localedrake:1
+#, c-format
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:56 ../../ugtk.pm_.c:284 ../../ugtk2.pm_.c:350
-msgid "logdrake"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Save as.."
msgstr ""
-#: ../../standalone/logdrake_.c:68
-msgid "Show only for the selected day"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Please enter your email address below "
+msgstr "Паспрабуйце яшчэ раз"
-#: ../../standalone/logdrake_.c:75
-msgid "/File/_New"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "alert configuration"
+msgstr "Настройка"
-#: ../../standalone/logdrake_.c:75
-msgid "<control>N"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:76
-msgid "/File/_Open"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "load setting"
+msgstr "фарматаванне"
-#: ../../standalone/logdrake_.c:76
-msgid "<control>O"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"You will receive an alert if one of the selected services is no longer "
+"running"
msgstr ""
-#: ../../standalone/logdrake_.c:77
-msgid "/File/_Save"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "service setting"
+msgstr "прылада"
-#: ../../standalone/logdrake_.c:77
-msgid "<control>S"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Xinetd Service"
+msgstr "Сервер друку"
+
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Webmin Service"
+msgstr "прылада"
+
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "SSH Server"
+msgstr "NIS сервер:"
+
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Samba Server"
+msgstr "NIS сервер:"
+
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Postfix Mail Server"
+msgstr "Сервер друку"
+
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Ftp Server"
+msgstr "NIS сервер:"
+
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Domain Name Resolver"
+msgstr "Iмя дамену"
+
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:78
-msgid "/File/Save _As"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:79
-msgid "/File/-"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Mail alert configuration"
+msgstr "Настройка ADSL"
+
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:82
-msgid "/Options/Test"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:84
-msgid "/Help/_About..."
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:145
-#, fuzzy
-msgid "User"
-msgstr "Iмя карыстальнiку:"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Calendar"
+msgstr ""
-#: ../../standalone/logdrake_.c:146
-#, fuzzy
-msgid "Messages"
-msgstr "Праверка партоў"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Choose file"
+msgstr ""
-#: ../../standalone/logdrake_.c:147
-msgid "Syslog"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "but not matching"
msgstr ""
-#: ../../standalone/logdrake_.c:148
-msgid "Mandrake Tools Explanations"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "matching"
msgstr ""
-#: ../../standalone/logdrake_.c:151
-msgid "search"
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Settings"
msgstr ""
-#: ../../standalone/logdrake_.c:161
+#: ../../standalone/logdrake:1
+#, c-format
msgid "A tool to monitor your logs"
msgstr ""
-#: ../../standalone/logdrake_.c:162 ../../standalone/net_monitor_.c:91
-msgid "Settings"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "search"
msgstr ""
-#: ../../standalone/logdrake_.c:167
-msgid "matching"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Mandrake Tools Explanation"
msgstr ""
-#: ../../standalone/logdrake_.c:168
-msgid "but not matching"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Syslog"
msgstr ""
-#: ../../standalone/logdrake_.c:172
-msgid "Choose file"
-msgstr ""
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "Messages"
+msgstr "Праверка партоў"
-#: ../../standalone/logdrake_.c:181
-msgid "Calendar"
+#: ../../standalone/logdrake:1
+#, fuzzy, c-format
+msgid "User"
+msgstr "Iмя карыстальнiку:"
+
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/Help/_About..."
msgstr ""
-#: ../../standalone/logdrake_.c:191
-msgid "Content of the file"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/Options/Test"
msgstr ""
-#: ../../standalone/logdrake_.c:195 ../../standalone/logdrake_.c:375
-msgid "Mail alert"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/-"
msgstr ""
-#: ../../standalone/logdrake_.c:245
+#: ../../standalone/logdrake:1
#, c-format
-msgid "please wait, parsing file: %s"
+msgid "/File/Save _As"
msgstr ""
-#: ../../standalone/logdrake_.c:392
-#, fuzzy
-msgid "Mail alert configuration"
-msgstr "Настройка ADSL"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>S"
+msgstr ""
-#: ../../standalone/logdrake_.c:393
-msgid ""
-"Welcome to the mail configuration utility.\n"
-"\n"
-"Here, you'll be able to set up the alert system.\n"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Save"
msgstr ""
-#: ../../standalone/logdrake_.c:400
-msgid "Apache World Wide Web Server"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>O"
msgstr ""
-#: ../../standalone/logdrake_.c:401
-#, fuzzy
-msgid "Domain Name Resolver"
-msgstr "Iмя дамену"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_Open"
+msgstr ""
-#: ../../standalone/logdrake_.c:402
-#, fuzzy
-msgid "Ftp Server"
-msgstr "NIS сервер:"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "<control>N"
+msgstr ""
-#: ../../standalone/logdrake_.c:403
-#, fuzzy
-msgid "Postfix Mail Server"
-msgstr "Сервер друку"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "/File/_New"
+msgstr ""
-#: ../../standalone/logdrake_.c:404
-#, fuzzy
-msgid "Samba Server"
-msgstr "NIS сервер:"
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Show only for the selected day"
+msgstr ""
-#: ../../standalone/logdrake_.c:405
-#, fuzzy
-msgid "SSH Server"
-msgstr "NIS сервер:"
+#: ../../standalone/mousedrake:1
+#, c-format
+msgid "Emulate third button?"
+msgstr "Эмуляваць трэцюю кнопку?"
-#: ../../standalone/logdrake_.c:406
-#, fuzzy
-msgid "Webmin Service"
-msgstr "прылада"
+#: ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose your mouse type."
+msgstr "калi ласка, пазначце тып вашай мышы."
-#: ../../standalone/logdrake_.c:407
-#, fuzzy
-msgid "Xinetd Service"
-msgstr "Сервер друку"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connect %s"
+msgstr "Iмя злучэння"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "service setting"
-msgstr "прылада"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnect %s"
+msgstr "Настройка ISDN"
-#: ../../standalone/logdrake_.c:415
+#: ../../standalone/net_monitor:1
+#, c-format
msgid ""
-"You will receive an alert if one of the selected services is no more running"
+"Warning, another internet connection has been detected, maybe using your "
+"network"
msgstr ""
-#: ../../standalone/logdrake_.c:428
-#, fuzzy
-msgid "load setting"
-msgstr "фарматаванне"
-
-#: ../../standalone/logdrake_.c:429
-msgid "You will receive an alert if the load is higher than this value"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "received"
msgstr ""
-#: ../../standalone/logdrake_.c:444
-#, fuzzy
-msgid "alert configuration"
-msgstr "Настройка"
-
-#: ../../standalone/logdrake_.c:445
-#, fuzzy
-msgid "Please enter your email address below "
-msgstr "Паспрабуйце яшчэ раз"
-
-#: ../../standalone/logdrake_.c:486
-msgid "Save as.."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "transmitted"
msgstr ""
-#: ../../standalone/mousedrake_.c:37
-msgid "Please, choose the type of your mouse."
-msgstr "калi ласка, пазначце тып вашай мышы."
-
-#: ../../standalone/mousedrake_.c:50
-msgid "Emulate third button?"
-msgstr "Эмуляваць трэцюю кнопку?"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "received: "
+msgstr ""
-#: ../../standalone/net_monitor_.c:53 ../../standalone/net_monitor_.c:87
-#, fuzzy
-msgid "Network Monitoring"
-msgstr "Канфiгурацыя сеткi"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "sent: "
+msgstr ""
-#: ../../standalone/net_monitor_.c:96
-#, fuzzy
-msgid "Profile "
-msgstr "памылка манцiравання: "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Local measure"
+msgstr "Лакальны прынтэр"
-#: ../../standalone/net_monitor_.c:99
-msgid "Statistics"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "average"
msgstr ""
-#: ../../standalone/net_monitor_.c:103
-#, fuzzy
-msgid "Sending Speed:"
-msgstr "Захаванне ў файл"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Color configuration"
+msgstr "Настройка"
-#: ../../standalone/net_monitor_.c:104
-msgid "Receiving Speed:"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../standalone/net_monitor_.c:106
-#, fuzzy
-msgid "Connection Time: "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection complete."
msgstr "Iмя злучэння"
-#: ../../standalone/net_monitor_.c:113
-msgid "Logs"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Disconnection from the Internet complete."
msgstr ""
-#: ../../standalone/net_monitor_.c:147
-#, fuzzy
-msgid "Wait please, testing your connection..."
-msgstr "Якi тып вашага ISDN злучэння?"
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Disconnection from the Internet failed."
+msgstr ""
-#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
-#, fuzzy
-msgid "Connecting to Internet "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connecting to the Internet "
msgstr "Далучэнне да Iнтэрнэту"
-#: ../../standalone/net_monitor_.c:178 ../../standalone/net_monitor_.c:191
-#, fuzzy
-msgid "Disconnecting from Internet "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Disconnecting from the Internet "
msgstr "Далучэнне да Iнтэрнэту"
-#: ../../standalone/net_monitor_.c:222
-msgid "Disconnection from Internet failed."
-msgstr ""
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Wait please, testing your connection..."
+msgstr "Якi тып вашага ISDN злучэння?"
-#: ../../standalone/net_monitor_.c:223
-msgid "Disconnection from Internet complete."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Logs"
msgstr ""
-#: ../../standalone/net_monitor_.c:225
-#, fuzzy
-msgid "Connection complete."
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Connection Time: "
msgstr "Iмя злучэння"
-#: ../../standalone/net_monitor_.c:226
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Receiving Speed:"
msgstr ""
-#: ../../standalone/net_monitor_.c:330
-#, fuzzy
-msgid "Color configuration"
-msgstr "Настройка"
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Sending Speed:"
+msgstr "Захаванне ў файл"
-#: ../../standalone/net_monitor_.c:383 ../../standalone/net_monitor_.c:403
-msgid "sent: "
+#: ../../standalone/net_monitor:1
+#, c-format
+msgid "Statistics"
msgstr ""
-#: ../../standalone/net_monitor_.c:390 ../../standalone/net_monitor_.c:407
-msgid "received: "
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Profile "
+msgstr "памылка манцiравання: "
+
+#: ../../standalone/net_monitor:1
+#, fuzzy, c-format
+msgid "Network Monitoring"
+msgstr "Канфiгурацыя сеткi"
+
+#: ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Reading printer data ..."
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
+
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Name/IP address of host:"
msgstr ""
-#: ../../standalone/net_monitor_.c:397
-msgid "average"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "This host is already in the list, it cannot be added again.\n"
msgstr ""
-#: ../../standalone/net_monitor_.c:400
-#, fuzzy
-msgid "Local measure"
-msgstr "Лакальны прынтэр"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scannerdrake"
+msgstr "Абярыце вiдэакарту"
-#: ../../standalone/net_monitor_.c:432
-msgid "transmitted"
-msgstr ""
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "You must enter a host name or an IP address.\n"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-#: ../../standalone/net_monitor_.c:433
-msgid "received"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Choose the host on which the local scanners should be made available:"
msgstr ""
-#: ../../standalone/net_monitor_.c:453
-msgid ""
-"Warning, another internet connection has been detected, maybe using your "
-"network"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Sharing of local scanners"
+msgstr "Даступныя пакеты"
+
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "This machine"
msgstr ""
-#: ../../standalone/net_monitor_.c:459
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Connect %s"
-msgstr "Iмя злучэння"
+msgid "Remove selected host"
+msgstr "Выдалiць чаргу друку"
-#: ../../standalone/net_monitor_.c:459
+#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
-msgid "Disconnect %s"
-msgstr "Настройка ISDN"
+msgid "Edit selected host"
+msgstr "Выдалiць чаргу друку"
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
-msgid "Reading printer data ..."
-msgstr "Чытаю базу дадзеных драйвероў CUPS"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Add host"
+msgstr "Дадаць карыстальнiка"
-#: ../../standalone/scannerdrake_.c:39
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Вызначэнне прыладаў..."
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "These are the machines from which the scanners should be used:"
+msgstr ""
-#: ../../standalone/scannerdrake_.c:39
-msgid "Test ports"
-msgstr "Праверка партоў"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Usage of remote scanners"
+msgstr "Выкарыстоўваць незанятую прастору"
-#: ../../standalone/scannerdrake_.c:51 ../../standalone/scannerdrake_.c:66
-#: ../../standalone/scannerdrake_.c:79
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "All remote machines"
+msgstr "Аддалены прынтэр"
+
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+msgid ""
+"These are the machines on which the locally connected scanner(s) should be "
+"available:"
msgstr ""
-#: ../../standalone/scannerdrake_.c:54
-#, fuzzy, c-format
-msgid "%s found on %s, configure it?"
-msgstr "Жадаеце настроiць прынтэр?"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Use the scanners on hosts: "
+msgstr ""
-#: ../../standalone/scannerdrake_.c:57
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+msgid "Use scanners on remote computers"
msgstr ""
-#: ../../standalone/scannerdrake_.c:63
-#, fuzzy
-msgid "Select a scanner"
-msgstr "Абярыце вiдэакарту"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing to hosts: "
+msgstr "Прынтэр"
-#: ../../standalone/scannerdrake_.c:91
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "This %s scanner is unsupported"
+msgid "The scanners on this machine are available to other computers"
msgstr ""
-#: ../../standalone/scannerdrake_.c:105
+#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
-"Scannerdrake was not able to detect your %s scanner.\n"
-"Please select the device where your scanner is plugged"
+"You can also decide here whether scanners on remote machines should be made "
+"available on this machine."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
-#, fuzzy
-msgid "choose device"
-msgstr "Загрузачная прылада"
-
-#: ../../standalone/scannerdrake_.c:113
+#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
-"This %s scanner must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware "
-"section."
+"Here you can choose whether the scanners connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../standalone/scannerdrake_.c:118
+#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
-"Your %s scanner has been configured.\n"
-"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
+"Your %s has been configured.\n"
+"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:44
+#: ../../standalone/scannerdrake:1
#, c-format
-msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
-
-#: ../../standalone/service_harddrake_.c:48
-msgid "Some devices were added:\n"
+msgid ""
+"The %s must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware "
+"section."
msgstr ""
-#: ../../standalone/service_harddrake_.c:64
-#, fuzzy
-msgid "Hardware probing in progress"
-msgstr "Дубляванне пункту манцiравання %s"
-
-#: ../../steps.pm_.c:14
-msgid "Choose your language"
-msgstr "Выбар мовы"
-
-#: ../../steps.pm_.c:15
-msgid "Select installation class"
-msgstr "Клас усталявання"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "choose device"
+msgstr "Загрузачная прылада"
-#: ../../steps.pm_.c:16
-msgid "Hard drive detection"
-msgstr "Вызначэнне жорсткага дыску"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Please select the device where your %s is attached"
+msgstr ""
-#: ../../steps.pm_.c:17
-msgid "Configure mouse"
-msgstr "Настройка мышы"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is unsupported"
+msgstr ""
-#: ../../steps.pm_.c:18
-msgid "Choose your keyboard"
-msgstr "Выбар клавiятуры"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is not known by this version of Scannerdrake."
+msgstr ""
-#: ../../steps.pm_.c:19
-#, fuzzy
-msgid "Security"
-msgstr "кучаравы"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "The %s is not supported by this version of Mandrake Linux."
+msgstr ""
-#: ../../steps.pm_.c:20
-msgid "Setup filesystems"
-msgstr "Настр. файлавых сiстэмаў"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Re-generating list of configured scanners ..."
+msgstr ""
-#: ../../steps.pm_.c:21
-msgid "Format partitions"
-msgstr "Фарматаванне раздзелаў"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for new scanners ..."
+msgstr "Даступныя пакеты"
-#: ../../steps.pm_.c:22
-msgid "Choose packages to install"
-msgstr "Выбар пакетаў"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Searching for configured scanners ..."
+msgstr "Даступныя пакеты"
-#: ../../steps.pm_.c:23
-msgid "Install system"
-msgstr "Усталяванне сiстэмы"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Scanner sharing"
+msgstr "Прынтэр"
-#: ../../steps.pm_.c:25
-msgid "Add a user"
-msgstr "Дадаць карыстальнiка"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Add a scanner manually"
+msgstr ""
-#: ../../steps.pm_.c:26
-msgid "Configure networking"
-msgstr "Настройка сеткi"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Search for new scanners"
+msgstr "Даступныя пакеты"
-#: ../../steps.pm_.c:28
-msgid "Configure services"
-msgstr "Настройка службаў"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "There are no scanners found which are available on your system.\n"
+msgstr ""
-#: ../../steps.pm_.c:29
-msgid "Install bootloader"
-msgstr "Усталяванне загрузчыку"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid ""
+"The following scanner\n"
+"\n"
+"%s\n"
+"is available on your system.\n"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
-#: ../../steps.pm_.c:31
-msgid "Create a bootdisk"
-msgstr "Стварыць загр. дыск"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid ""
+"The following scanners\n"
+"\n"
+"%s\n"
+"are available on your system.\n"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
-#: ../../steps.pm_.c:33
-msgid "Configure X"
-msgstr "Настройка X Window"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "Select a scanner"
+msgstr "Абярыце вiдэакарту"
-#: ../../steps.pm_.c:34
-#, fuzzy
-msgid "Install system updates"
-msgstr "Усталяванне сiстэмы"
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "%s is not in the scanner database, configure it manually?"
+msgstr ""
-#: ../../steps.pm_.c:35
-msgid "Exit install"
-msgstr "Заканчэнне ўсталявання"
+#: ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "%s found on %s, configure it automatically?"
+msgstr "Жадаеце настроiць прынтэр?"
-#: ../../ugtk.pm_.c:636
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
+#: ../../standalone/service_harddrake:1
+#, fuzzy, c-format
+msgid "Hardware probing in progress"
+msgstr "Дубляванне пункту манцiравання %s"
-#: ../../ugtk2.pm_.c:711
-msgid "utopia 25"
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Some devices were added:\n"
msgstr ""
-#: ../../share/compssUsers:999
-msgid "Web/FTP"
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Network Computer (client)"
-msgstr "Сеткавы прынтэр (socket)"
+msgid "Office Workstation"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
-msgid "NFS server, SMB server, Proxy server, ssh server"
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
msgstr ""
+"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
+"аглядальнікі pdf-файлаў, і г.д."
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Office"
-msgstr "добра"
+msgid "Workstation"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Gnome Workstation"
-msgstr "Навуковыя прыкладанні"
+msgid "Game station"
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "Інструментальныя сродкі для Palm Pilot і Visor"
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Workstation"
-msgstr "Навуковыя прыкладанні"
+msgid "Multimedia station"
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
-msgid "Firewall/Router"
-msgstr ""
+msgid "Sound and video playing/editing programs"
+msgstr "Рэдактары і прайгравальнікі гуку і відэа"
#: ../../share/compssUsers:999
-msgid "Domain Name and Network Information Server"
-msgstr ""
+#, fuzzy
+msgid "Internet station"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../share/compssUsers:999
msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
msgstr ""
-"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
-"аглядальнікі pdf-файлаў, і г.д."
+"Прыкладанні для чытання і адпраўкі пошты і навінаў (pine, mutt, tin...), "
+"Web аглядальнікі"
#: ../../share/compssUsers:999
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Аўдыёсродкі: прайгравальнікі mp3 і midi, мікшары і г.д."
+#, fuzzy
+msgid "Network Computer (client)"
+msgstr "Сеткавы прынтэр (socket)"
#: ../../share/compssUsers:999
-msgid "Linux Standard Base. Third party applications support"
+msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Books and Howto's on Linux and Free Software"
-msgstr "нігі і Howto па Linux і Free Software"
+#, fuzzy
+msgid "Configuration"
+msgstr "Настройка"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "KDE Workstation"
+msgid "Tools to ease the configuration of your computer"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Scientific Workstation"
msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
+msgid "Console Tools"
+msgstr "Кансольныя інструментальныя сродкі"
#: ../../share/compssUsers:999
-msgid "Multimedia - Video"
-msgstr "Мультымедыя - відэа"
+msgid "Editors, shells, file tools, terminals"
+msgstr "Рэдактары, абалонкі, тэрміналы"
#: ../../share/compssUsers:999
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Набор інструментаў для пошты, навінаў, web'у, перадачы файлаў, і chat"
+#, fuzzy
+msgid "KDE Workstation"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
-msgid "Database"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
msgstr ""
+"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
+"інструментальных сродкаў"
#: ../../share/compssUsers:999
-msgid "PostgreSQL or MySQL database server"
+msgid "Graphical Environment"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Tools to ease the configuration of your computer"
-msgstr "Цi жадаеце пратэсцiраваць настройкi?"
-
-#: ../../share/compssUsers:999
-msgid "Multimedia - Sound"
-msgstr "Мультымедыя - гук"
+msgid "Gnome Workstation"
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Documentation"
-msgstr "Аўтэнтыфiкацыя"
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"Графічнае асяродзе са зручным дзеля выкарыстання наборам прыкладанняў і "
+"інструментальных сродкаў"
#: ../../share/compssUsers:999
-msgid "Console Tools"
-msgstr "Кансольныя інструментальныя сродкі"
+msgid "Other Graphical Desktops"
+msgstr "Іншыя графічныя Працоўныя сталы"
#: ../../share/compssUsers:999
-msgid "Postfix mail server, Inn news server"
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Internet station"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgid "Development"
+msgstr "распрацоўшчык"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Multimedia station"
-msgstr "Мультымедыя - гук"
+msgid "C and C++ development libraries, programs and include files"
+msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Configuration"
-msgstr "Настройка"
+msgid "Documentation"
+msgstr "Аўтэнтыфiкацыя"
#: ../../share/compssUsers:999
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Шмат графічных мэнаджэраў Працоўных сталоў(Gnome, IceWM)"
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "нігі і Howto па Linux і Free Software"
#: ../../share/compssUsers:999
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
+msgid "LSB"
msgstr ""
-"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
-"інструментальных сродкаў"
#: ../../share/compssUsers:999
-msgid "Graphical Environment"
+msgid "Linux Standard Base. Third party applications support"
msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Development"
-msgstr "распрацоўшчык"
+msgid "Web/FTP"
+msgstr ""
#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Tools to create and burn CD's"
-msgstr "Інструментальныя сродкі стварэньня CD"
+msgid "Mail/Groupware/News"
+msgstr ""
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Office Workstation"
-msgstr "Навуковыя прыкладанні"
+msgid "Postfix mail server, Inn news server"
+msgstr ""
#: ../../share/compssUsers:999
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgid "Database"
msgstr ""
#: ../../share/compssUsers:999
-msgid "Graphics programs such as The Gimp"
-msgstr "Графічныя праграмы тыпу The Gimp"
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr ""
#: ../../share/compssUsers:999
-msgid "C and C++ development libraries, programs and include files"
-msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
+msgid "Domain Name and Network Information Server"
+msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
@@ -13690,211 +17146,76 @@ msgid "Network Computer server"
msgstr "Сеткавы прынтэр (socket)"
#: ../../share/compssUsers:999
-msgid "Mail/Groupware/News"
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
-msgid "Game station"
-msgstr "Мультымедыя - гук"
+msgid "Office"
+msgstr "добра"
#: ../../share/compssUsers:999
-msgid "Video players and editors"
-msgstr "Рэдактары і прайгравальнікі відэа"
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Набор інструментаў для пошты, навінаў, web'у, перадачы файлаў, і chat"
#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Мультымедыя - Графіка"
#: ../../share/compssUsers:999
-msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
-
-#: ../../share/compssUsers:999
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Прыкладанні для чытання і адпраўкі пошты і навінаў (pine, mutt, tin...), "
-"Web аглядальнікі"
-
-#: ../../share/compssUsers:999
-msgid "Personal Finance"
-msgstr "Персанальныя фінансы"
+msgid "Graphics programs such as The Gimp"
+msgstr "Графічныя праграмы тыпу The Gimp"
#: ../../share/compssUsers:999
-msgid ""
-"A graphical environment with user-friendly set of applications and desktop "
-"tools"
-msgstr ""
-"Графічнае асяродзе са зручным дзеля выкарыстання наборам прыкладанняў і "
-"інструментальных сродкаў"
+msgid "Multimedia - Sound"
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
-msgid "Clients for different protocols including ssh"
-msgstr ""
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Аўдыёсродкі: прайгравальнікі mp3 і midi, мікшары і г.д."
#: ../../share/compssUsers:999
-msgid "LSB"
-msgstr ""
+msgid "Multimedia - Video"
+msgstr "Мультымедыя - відэа"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Internet gateway"
-msgstr "Настройка злучэння з Iнтэрнэтам"
+msgid "Video players and editors"
+msgstr "Рэдактары і прайгравальнікі відэа"
#: ../../share/compssUsers:999
-msgid "Sound and video playing/editing programs"
-msgstr "Рэдактары і прайгравальнікі гуку і відэа"
+msgid "Multimedia - CD Burning"
+msgstr "Мультымедыя - Стварэнне CD"
#: ../../share/compssUsers:999
-msgid "Other Graphical Desktops"
-msgstr "Іншыя графічныя Працоўныя сталы"
+msgid "Tools to create and burn CD's"
+msgstr "Інструментальныя сродкі стварэньня CD"
#: ../../share/compssUsers:999
-msgid "Editors, shells, file tools, terminals"
-msgstr "Рэдактары, абалонкі, тэрміналы"
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Шмат графічных мэнаджэраў Працоўных сталоў(Gnome, IceWM)"
#: ../../share/compssUsers:999
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "Мэнаджар асабістай інфармацыі"
#: ../../share/compssUsers:999
-msgid "Multimedia - CD Burning"
-msgstr "Мультымедыя - Стварэнне CD"
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Інструментальныя сродкі для Palm Pilot і Visor"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Scientific Workstation"
-msgstr "Навуковыя прыкладанні"
-
-#, fuzzy
-#~ msgid "cpu number "
-#~ msgstr "Нумар тэлефону"
-
-#~ msgid ""
-#~ "You now have the opportunity to download encryption software.\n"
-#~ "\n"
-#~ "WARNING:\n"
-#~ "\n"
-#~ "Due to different general requirements applicable to these software and "
-#~ "imposed\n"
-#~ "by various jurisdictions, customer and/or end user of theses software "
-#~ "should\n"
-#~ "ensure that the laws of his/their jurisdiction allow him/them to "
-#~ "download, stock\n"
-#~ "and/or use these software.\n"
-#~ "\n"
-#~ "In addition customer and/or end user shall particularly be aware to not "
-#~ "infringe\n"
-#~ "the laws of his/their jurisdiction. Should customer and/or end user not\n"
-#~ "respect the provision of these applicable laws, he/they will incure "
-#~ "serious\n"
-#~ "sanctions.\n"
-#~ "\n"
-#~ "In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
-#~ "liable\n"
-#~ "for special, indirect or incidental damages whatsoever (including, but "
-#~ "not\n"
-#~ "limited to loss of profits, business interruption, loss of commercial "
-#~ "data and\n"
-#~ "other pecuniary losses, and eventual liabilities and indemnification to "
-#~ "be paid\n"
-#~ "pursuant to a court decision) arising out of use, possession, or the "
-#~ "sole\n"
-#~ "downloading of these software, to which customer and/or end user could\n"
-#~ "eventually have access after having sign up the present agreement.\n"
-#~ "\n"
-#~ "\n"
-#~ "For any queries relating to these agreement, please contact \n"
-#~ "Mandrakesoft, Inc.\n"
-#~ "2400 N. Lincoln Avenue Suite 243\n"
-#~ "Altadena California 91001\n"
-#~ "USA"
-#~ msgstr ""
-#~ "Зараз вы маеце магчымасць загрузiць праграмы для шыфравання.\n"
-#~ "\n"
-#~ "УВАГА:\n"
-#~ "\n"
-#~ "З-за агульных абмежаванняў на праграмы гэткага роду i розных паняццяў\n"
-#~ "у розных законадаўствах, прадавец i/альбо карыстальнiк гэтых праграм "
-#~ "павiнен\n"
-#~ "упэўнiцца ў тым, што законы яго/iх дзяржаваў дазваляюць загружаць, "
-#~ "захоўваць\n"
-#~ "i/альбо выкарыстоўваць гэтыя праграмы.\n"
-#~ "\n"
-#~ "Акрамя таго, прадавец i/альбо карыстальнiк павiнны быць упэўнены, што не "
-#~ "парушаюць\n"
-#~ "законаў сваёй краiны. Калi прадавец i/альбо карыстальнiк парушае гэтыя\n"
-#~ "законы, якiя могуць быць скарыстаныя супраць яго, ён/яны нясе адказнасць\n"
-#~ "\n"
-#~ "Нi ў якiм разе нi Mandrakesoft, нi яе выканаўцы i пастаўшчыкi не "
-#~ "адказваюць\n"
-#~ "за непасрэдную, непрамую альбо выпадковую шкоду (што уключае, але \n"
-#~ "не абмяжоўваецца страчанымі прыбыткам, парушэнне бiзнэсу, стратай "
-#~ "камерцыйных \n"
-#~ "дадзеных i iншымi стратамi, а таксама магчымымi санкцыямi i штрафамi, "
-#~ "якiя \n"
-#~ "належыць выплацiць па пастанове суду), якiя выцякаюць з карыстання, \n"
-#~ "валодання, альбо проста загрузкi з сеткi праграм, да якiх прадавец альбо\n"
-#~ "карыстальнiк атрымалi доступ пасля падпiсання гэтага пагаднення.\n"
-#~ "\n"
-#~ "Гэтае пагадненне ў першую чаргу адказвае законадаўству Францыi, за "
-#~ "выключэннем\n"
-#~ "выпадкаў, якiя спецыяльна рэгламентуюцца мясцовым законадаўствам у межах\n"
-#~ "грамадзянскага права. Аднак дадзенае пагадненне катэгарычна абвяргае "
-#~ "любыя\n"
-#~ "несуадносiны законадаўстваў, прынцыпаў, альбо прымяненне ад "
-#~ "процiлеглага.\n"
-#~ "Такiм чынам, законы Францыi будуць прэвалiраваць над любымi iншымi "
-#~ "мясцовымi\n"
-#~ "законамi.\n"
-#~ "\n"
-#~ "З любымi пытаннямi, якiя датычацца дадзеннага пагаднення, звяртайцеся: \n"
-#~ "Mandrakesoft\n"
-#~ "43, rue d'Aboukir\n"
-#~ "75002 Paris\n"
-#~ "FRANCE"
-
-#, fuzzy
-#~ msgid "Proxy configuration"
-#~ msgstr "Настройка proxy кэшуючых сервераў"
-
-#, fuzzy
-#~ msgid "port"
-#~ msgstr "Порт"
-
-#, fuzzy
-#~ msgid "Url should begin with 'http:'"
-#~ msgstr "Proxy павiнен быць http://..."
-
-#, fuzzy
-#~ msgid "login"
-#~ msgstr "Аўтаматычны ўваход у сiстэму"
-
-#, fuzzy
-#~ msgid "password"
-#~ msgstr "Пароль"
-
-#, fuzzy
-#~ msgid "re-type password"
-#~ msgstr "Няма паролю"
-
-#, fuzzy
-#~ msgid "The passwords don't match. Try again!"
-#~ msgstr "Паролi не супадаюць"
+msgid "Personal Finance"
+msgstr "Персанальныя фінансы"
-#~ msgid "Can't write file %s"
-#~ msgstr "Не атрымлiваецца запiс у файл %s"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finances, such as gnucash"
+msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
-#, fuzzy
-#~ msgid "Please click on a medium"
-#~ msgstr "Націсніце на раздзел"
+#~ msgid "Please be patient. This operation can take several minutes."
+#~ msgstr "Калі ласка, пачакайце. Гэтая аперацыя адыме пэўны час."
-#, fuzzy
-#~ msgid "detected on interface %s"
-#~ msgstr "Сеткавы iнтэрфейс"
+#~ msgid "Test ports"
+#~ msgstr "Праверка партоў"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 1ad2b46b9..79ee82b3a 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -15,1111 +15,651 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfig/card.pm_.c:16
-msgid "256 kB"
-msgstr "256 КБ"
-
-#: ../../Xconfig/card.pm_.c:17
-msgid "512 kB"
-msgstr "512 КБ"
-
-#: ../../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:203
-msgid "Choose a X server"
-msgstr "Изберете X сървър"
-
-#: ../../Xconfig/card.pm_.c:203
-msgid "X server"
-msgstr "X сървър"
-
-#: ../../Xconfig/card.pm_.c:230
-msgid "Multi-head configuration"
-msgstr ""
-
-#: ../../Xconfig/card.pm_.c:231
+#: ../../any.pm:1
+#, c-format
msgid ""
-"Your system support multiple head configuration.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../../Xconfig/card.pm_.c:288
-msgid "Select the memory size of your graphics card"
-msgstr "Изберете капацитет на паметта на графичната си карта"
-
-#: ../../Xconfig/card.pm_.c:349
-msgid "XFree configuration"
-msgstr "Настройка на XFree"
-
-#: ../../Xconfig/card.pm_.c:351
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Коя настройка на XFree искате да имате ?"
-
-#: ../../Xconfig/card.pm_.c:383
-msgid "Configure all heads independently"
-msgstr ""
-
-#: ../../Xconfig/card.pm_.c:384
-msgid "Use Xinerama extension"
-msgstr "Използвай разширението Xinerama"
-
-#: ../../Xconfig/card.pm_.c:389
-#, fuzzy, c-format
-msgid "Configure only card \"%s\"%s"
-msgstr "Настройка само на карта \"%s\" (%s)"
-
-#: ../../Xconfig/card.pm_.c:401 ../../Xconfig/card.pm_.c:402
-#: ../../Xconfig/various.pm_.c:23
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user to this group."
+msgstr ""
+
+#: ../../any.pm:1 ../../bootlook.pm:1 ../../install_steps_gtk.pm:1
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
+#: ../../interactive/stdio.pm:1 ../../network/netconnect.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
+#: ../../standalone/drakgw:1 ../../standalone/draksec:1
+#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
#, c-format
-msgid "XFree %s"
-msgstr "XFree %s"
+msgid "Cancel"
+msgstr "Отказ"
-#: ../../Xconfig/card.pm_.c:413 ../../Xconfig/card.pm_.c:439
-#: ../../Xconfig/various.pm_.c:23
+#: ../../any.pm:1
#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s с хардуерно 3D ускорение"
+msgid "Launch userdrake"
+msgstr ""
-#: ../../Xconfig/card.pm_.c:416
+#: ../../any.pm:1
#, 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."
+"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 ""
-"Картата ви може да има поддръжка на хардуерно 3D ускорение, но само с Xfree %"
-"s.\n"
-"Картата ви се поддържа от XFree %s, който може да има по-добра поддръжка на "
-"2D."
-#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:441
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Картата ви може да има поддръжка на хардуерно 3D ускорение в XFree %s."
-
-#: ../../Xconfig/card.pm_.c:426 ../../Xconfig/card.pm_.c:447
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s с ЕКСПЕРИМЕНТАЛНO хардуерно 3D ускорение"
-
-#: ../../Xconfig/card.pm_.c:429
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+msgid "Mandatory package %s is missing"
msgstr ""
-"Картата ви може да има поддръжка на хардуерно 3D ускорение, но само с XFree %"
-"s,\n"
-"ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И МОЖЕ ДА ЗАБИЕ КОМПЮТЪРА "
-"ВИ.\n"
-"Картата ви се поддържа от XFree %s, който може да има по-добра поддръжка на "
-"2D."
-#: ../../Xconfig/card.pm_.c:432 ../../Xconfig/card.pm_.c:449
+#: ../../any.pm:1
#, 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."
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Картата ви може да има поддръжка на хардуерно 3D ускорение с XFree %s.\n"
-"ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И КОМПЮТЪРЪТ ВИ МОЖЕ ДА "
-"ЗАБИЕ."
-#: ../../Xconfig/card.pm_.c:455
-msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (инсталация графичен драйвер)"
+#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "The package %s needs to be installed. Do you want to install it?"
+msgstr ""
+"Този пакет трябва да бъде обновен\n"
+"Сигурни ли сте, че искате да го изключите ?"
-#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:961
+#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
msgid "Custom"
msgstr "Клиентска"
-#: ../../Xconfig/main.pm_.c:102
-#, fuzzy
-msgid "Graphic Card"
-msgstr "Графична карта"
-
-#: ../../Xconfig/main.pm_.c:105 ../../Xconfig/monitor.pm_.c:93
-msgid "Monitor"
-msgstr "Монитор"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Allow all users"
+msgstr "Добавяне на потребител"
-#: ../../Xconfig/main.pm_.c:108 ../../Xconfig/resolution_and_depth.pm_.c:210
-msgid "Resolution"
-msgstr "Разделителна способност"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "No sharing"
+msgstr "Поделяне на файлове"
-#: ../../Xconfig/main.pm_.c:113
-msgid "Test"
-msgstr ""
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "More"
+msgstr "Още"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
-#: ../../diskdrake/interactive.pm_.c:393 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Опции"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Here is the full list of available countries"
+msgstr "Ето пълен списък на достръпните клавиатури"
-#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:269
-#: ../../install_gtk.pm_.c:86 ../../install_steps_gtk.pm_.c:274
-#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:345 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:159
-#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:181
-#: ../../standalone/drakbackup_.c:3920 ../../standalone/drakbackup_.c:4015
-#: ../../standalone/drakbackup_.c:4034 ../../ugtk2.pm_.c:435
-#: ../../ugtk2.pm_.c:926 ../../ugtk2.pm_.c:949
-msgid "Ok"
-msgstr "Ok"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose your country."
+msgstr "Моля, изберете тип на мишката."
-#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/draksplash_.c:114
-#: ../../standalone/harddrake2_.c:152 ../../standalone/logdrake_.c:204
-msgid "Quit"
-msgstr "Изход"
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Country"
+msgstr "Страна:"
-#: ../../Xconfig/main.pm_.c:145
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Да запазя ли промените ?\n"
-"Текущата настройка е:\n"
-"\n"
-"%s"
-
-#: ../../Xconfig/monitor.pm_.c:93
-msgid "Choose a monitor"
-msgstr "Изберете монитор"
-
-#: ../../Xconfig/monitor.pm_.c:97
-msgid "Plug'n Play"
+msgid "Use Unicode by default"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
-msgid "Generic"
-msgstr "Общ"
-
-#: ../../Xconfig/monitor.pm_.c:99 ../../standalone/harddrake2_.c:67
-#: ../../standalone/harddrake2_.c:68
-#, fuzzy
-msgid "Vendor"
-msgstr "Върни"
-
-#: ../../Xconfig/monitor.pm_.c:109
-msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakxtv:1
+#, c-format
+msgid "All"
+msgstr "Всички"
-#: ../../Xconfig/monitor.pm_.c:114
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the "
-"rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
-"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
-"range\n"
-"that is beyond the capabilities of your monitor: you may damage your "
-"monitor.\n"
-" If in doubt, choose a conservative setting."
-msgstr ""
-"Двата критични параметъра са вертикалната скорост на възстановяване, която "
-"отразява скоростта, \n"
-"с която целият екран се възстановява, и най-важното - хоризонталната\n"
-"синхронизационна скорост, която отразява скоростта, с която се изписват "
-"хоризонталните линии.\n"
-"\n"
-"МНОГО Е ВАЖНО да изберете такава синхронизационната скорост, която да "
-"отговаря на възможностите на Вашия монитор - в противен случай можете да "
-"повредите монитора си.\n"
-" Ако имате някакви съмнения, изберете консервативна настройка."
-
-#: ../../Xconfig/monitor.pm_.c:121
-msgid "Horizontal refresh rate"
-msgstr "Хоризонтална скорост на възстановяване"
-
-#: ../../Xconfig/monitor.pm_.c:122
-msgid "Vertical refresh rate"
-msgstr "Вертикална скорост на възстановяване"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:12
-msgid "256 colors (8 bits)"
-msgstr "256 цвята (8 бита)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:13
-msgid "32 thousand colors (15 bits)"
-msgstr "32 хиляди цвята (15 бита)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:14
-msgid "65 thousand colors (16 bits)"
-msgstr "65 хиляди цвята (16 бита)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:15
-msgid "16 million colors (24 bits)"
-msgstr "16 милиона цвята (24 бита)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:16
-msgid "4 billion colors (32 bits)"
-msgstr "4 милиарда цвята (32 бита)"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:130
-msgid "Resolutions"
-msgstr "Разделителна способност"
+"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 "Можете да изберете други езици, които ще бъдат налице слединсталацията"
-#: ../../Xconfig/resolution_and_depth.pm_.c:255
-msgid "Choose the resolution and the color depth"
-msgstr "Изберете разделителна способност и дълбочина на цветовете"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Please choose a language to use."
+msgstr "Моля, изберете използван език."
-#: ../../Xconfig/resolution_and_depth.pm_.c:256
+#: ../../any.pm:1
#, c-format
-msgid "Graphics card: %s"
-msgstr "Графична карта: %s"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:269 ../../any.pm_.c:1001
-#: ../../bootlook.pm_.c:336 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_gtk.pm_.c:463
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:345
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:194
-#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
-#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:162 ../../my_gtk.pm_.c:287
-#: ../../network/netconnect.pm_.c:39 ../../printer/printerdrake.pm_.c:2055
-#: ../../security/main.pm_.c:228 ../../standalone/drakautoinst_.c:198
-#: ../../standalone/drakbackup_.c:3874 ../../standalone/drakbackup_.c:3907
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3960
-#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4047
-#: ../../standalone/drakbackup_.c:4074 ../../standalone/drakbackup_.c:4104
-#: ../../standalone/drakbackup_.c:4130 ../../standalone/drakconnect_.c:112
-#: ../../standalone/drakconnect_.c:144 ../../standalone/drakconnect_.c:286
-#: ../../standalone/drakconnect_.c:534 ../../standalone/drakconnect_.c:677
-#: ../../standalone/drakfloppy_.c:207 ../../standalone/drakfont_.c:918
-#: ../../standalone/drakgw_.c:557 ../../standalone/logdrake_.c:204
-#: ../../standalone/net_monitor_.c:337 ../../ugtk.pm_.c:295
-#: ../../ugtk2.pm_.c:362 ../../ugtk2.pm_.c:434 ../../ugtk2.pm_.c:438
-#: ../../ugtk2.pm_.c:926
-msgid "Cancel"
-msgstr "Отказ"
+msgid "Choose the window manager to run:"
+msgstr "Изберете Windows Manager за стартиране:"
-#: ../../Xconfig/test.pm_.c:29
-msgid "Test of the configuration"
-msgstr "Проверка на настройката"
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the default user:"
+msgstr "Изберете подразбиращ се потребител :"
-#: ../../Xconfig/test.pm_.c:30
-msgid "Do you want to test the configuration?"
-msgstr "Искате ли да тествате настройките?"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "Do you want to use this feature?"
+msgstr "Искате ли да използвате aboot ?"
-#: ../../Xconfig/test.pm_.c:30
-#, fuzzy
-msgid "Warning: testing this graphic card may freeze your computer"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "I can set up your computer to automatically log on one user."
msgstr ""
-"Внимание: тестването на тази графична карта може да \"замрази\" компютъра ви"
+"Мога да настроя компютъра ви да влизане в системата автоматично като някой "
+"потребител.\n"
+"Искате ли тази възможност ?"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../any.pm:1
#, c-format
-msgid "Keyboard layout: %s\n"
-msgstr "Тип клавиатура: %s\n"
+msgid "Autologin"
+msgstr "Autologin"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../any.pm:1
#, c-format
-msgid "Mouse type: %s\n"
-msgstr "Тип мишка: %s\n"
+msgid "Icon"
+msgstr "Икона"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../any.pm:1
#, c-format
-msgid "Mouse device: %s\n"
-msgstr "Устройство на мишката: %s\n"
+msgid "Shell"
+msgstr "Шел"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid "Monitor: %s\n"
-msgstr "Монитор: %s\n"
+msgid "Password (again)"
+msgstr "Парола (отново)"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Monitor HorizSync: %s\n"
-msgstr "Хоризонтална синхронизация на монитора: %s\n"
+msgid "Password"
+msgstr "Парола"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
-msgid "Monitor VertRefresh: %s\n"
-msgstr "Вертикално опресняване на монитора: %s\n"
+msgid "User name"
+msgstr "Потребителско име"
-#: ../../Xconfig/various.pm_.c:35
+#: ../../any.pm:1
#, c-format
-msgid "Graphics card: %s\n"
-msgstr "Графична карта: %s\n"
+msgid "Real name"
+msgstr "Истинско име"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../any.pm:1
#, c-format
-msgid "Graphics memory: %s kB\n"
-msgstr "Графична памет: %s kB\n"
+msgid "Accept user"
+msgstr "Приеми потребител"
-#: ../../Xconfig/various.pm_.c:38
+#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
-msgid "Color depth: %s\n"
-msgstr "Дълбочина на цвета: %s\n"
+msgid "Done"
+msgstr "Готово"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../any.pm:1
#, c-format
-msgid "Resolution: %s\n"
-msgstr "Разделителна способност: %s\n"
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Въведете потребител\n"
+"%s"
-#: ../../Xconfig/various.pm_.c:41
+#: ../../any.pm:1
#, c-format
-msgid "XFree86 server: %s\n"
-msgstr "XFree86 сървър: %s\n"
+msgid "Add user"
+msgstr "Добави потребител"
-#: ../../Xconfig/various.pm_.c:42
+#: ../../any.pm:1
#, c-format
-msgid "XFree86 driver: %s\n"
-msgstr "XFree86 драйвер: %s\n"
-
-#: ../../Xconfig/various.pm_.c:61
-msgid "Graphical interface at startup"
-msgstr "X при стартиране на системата"
+msgid "This user name has already been added"
+msgstr "Това потребителско име е вече добавено"
-#: ../../Xconfig/various.pm_.c:62
-msgid ""
-"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 да се стартира, когато рестартирате системата?"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "The user name is too long"
+msgstr "Това потребителско име е вече добавено"
-#: ../../Xconfig/various.pm_.c:73
+#: ../../any.pm:1
+#, c-format
msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your "
-"computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
+"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-#: ../../Xconfig/various.pm_.c:85
-#, fuzzy
-msgid "What norm is your TV using?"
-msgstr "Какъв е типът на ISDN връзката ?"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132
-msgid "First sector of boot partition"
-msgstr "Първи сектор от стартиращия се дял"
-
-#: ../../any.pm_.c:107 ../../any.pm_.c:132 ../../any.pm_.c:209
-msgid "First sector of drive (MBR)"
-msgstr "Първият сектор от драйва (MBR)"
-
-#: ../../any.pm_.c:111
-msgid "SILO Installation"
-msgstr "SILO инсталация"
-
-#: ../../any.pm_.c:112 ../../any.pm_.c:125
-msgid "Where do you want to install the bootloader?"
-msgstr "Къде искате да инсталирате bootloader-а?"
-
-#: ../../any.pm_.c:124
-msgid "LILO/grub Installation"
-msgstr "LILO/grub инсталация"
-
-#: ../../any.pm_.c:136 ../../any.pm_.c:150
-msgid "SILO"
-msgstr "SILO"
-
-#: ../../any.pm_.c:138
-msgid "LILO with text menu"
-msgstr "LILO с текстово меню"
-
-#: ../../any.pm_.c:139 ../../any.pm_.c:150
-msgid "LILO with graphical menu"
-msgstr "LILO с графично меню"
-
-#: ../../any.pm_.c:142
-msgid "Grub"
-msgstr "Grub"
-
-#: ../../any.pm_.c:146
-msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Стартиране от DOS/Windows (loadlin)"
-
-#: ../../any.pm_.c:148 ../../any.pm_.c:150
-msgid "Yaboot"
-msgstr "Yaboot"
-
-#: ../../any.pm_.c:158 ../../any.pm_.c:189
-msgid "Bootloader main options"
-msgstr "Опции на зареждащата програма"
-
-#: ../../any.pm_.c:159 ../../any.pm_.c:190
-msgid "Bootloader to use"
-msgstr "Използвана зареждащата програма"
-
-#: ../../any.pm_.c:161
-msgid "Bootloader installation"
-msgstr "Bootloader инсталация"
-
-#: ../../any.pm_.c:163 ../../any.pm_.c:192
-msgid "Boot device"
-msgstr "Стартиращо устройство"
-
-#: ../../any.pm_.c:164
-msgid "Compact"
-msgstr "Компактен"
-
-#: ../../any.pm_.c:164
-msgid "compact"
-msgstr "компактен"
-
-#: ../../any.pm_.c:165 ../../any.pm_.c:289
-msgid "Video mode"
-msgstr "Видео режим"
-
-#: ../../any.pm_.c:167
-msgid "Delay before booting default image"
-msgstr "Забавяне преди стартирането на default дяла"
-
-#: ../../any.pm_.c:169 ../../any.pm_.c:772
-#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1077 ../../network/modem.pm_.c:71
-#: ../../printer/printerdrake.pm_.c:803 ../../printer/printerdrake.pm_.c:916
-#: ../../standalone/drakbackup_.c:3478 ../../standalone/drakconnect_.c:622
-#: ../../standalone/drakconnect_.c:647
-msgid "Password"
-msgstr "Парола"
-
-#: ../../any.pm_.c:170 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1078
-msgid "Password (again)"
-msgstr "Парола (отново)"
-
-#: ../../any.pm_.c:171
-msgid "Restrict command line options"
-msgstr "Ограничи опциите, задавани от командния ред"
-
-#: ../../any.pm_.c:171
-msgid "restrict"
-msgstr "ограничи"
-
-#: ../../any.pm_.c:173
-msgid "Clean /tmp at each boot"
-msgstr "Почистване на /tmp при всяко зареждане"
-
-#: ../../any.pm_.c:174
+#: ../../any.pm:1
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Точен размер на RAM-паметта, ако е необходимо (намерени %d MB)"
-
-#: ../../any.pm_.c:176
-msgid "Enable multi profiles"
-msgstr "Включи много профили"
-
-#: ../../any.pm_.c:180
-msgid "Give the ram size in MB"
-msgstr "Дайте размера RAM-памет в Mb"
+msgid "Please give a user name"
+msgstr "Моля, задайте потребителско име"
-#: ../../any.pm_.c:182
-msgid ""
-"Option ``Restrict command line options'' is of no use without a password"
-msgstr "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
+#: ../../any.pm:1
+#, c-format
+msgid "This password is too simple"
+msgstr "Тази парола е прекалено проста"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../diskdrake/interactive.pm_.c:1204
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: ../../any.pm_.c:183 ../../any.pm_.c:748
-#: ../../install_steps_interactive.pm_.c:1072
+#: ../../any.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
msgid "The passwords do not match"
msgstr "Паролите на съвпадат"
-#: ../../any.pm_.c:191
-msgid "Init Message"
-msgstr "Стартово съобщение"
+#: ../../any.pm:1
+#, c-format
+msgid "(already added %s)"
+msgstr "(вече прибавих %s)"
-#: ../../any.pm_.c:193
-msgid "Open Firmware Delay"
-msgstr "Изчакване на Open Firmware"
+#: ../../any.pm:1
+#, c-format
+msgid "access to compilation tools"
+msgstr ""
-#: ../../any.pm_.c:194
-msgid "Kernel Boot Timeout"
-msgstr "Изчакване за стартиране на ядрото"
+#: ../../any.pm:1
+#, c-format
+msgid "access to network tools"
+msgstr ""
-#: ../../any.pm_.c:195
-msgid "Enable CD Boot?"
-msgstr "Стартиране от CD ?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to administrative files"
+msgstr ""
-#: ../../any.pm_.c:196
-msgid "Enable OF Boot?"
-msgstr "Стартиране от OF ?"
+#: ../../any.pm:1
+#, c-format
+msgid "allow \"su\""
+msgstr ""
-#: ../../any.pm_.c:197
-msgid "Default OS?"
-msgstr "ОС по подразбиране ?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to rpm tools"
+msgstr ""
-#: ../../any.pm_.c:231
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: "
-"System Commander).\n"
-"\n"
-"On which drive are you booting?"
+#: ../../any.pm:1
+#, c-format
+msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm:1
+#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
-"You can add some more or change the existing ones."
+"You can create additional entries or change the existing ones."
msgstr ""
"Това са различните записи.\n"
"Можете да добавите още или да промените съществуващите."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1531
-#: ../../standalone/drakbackup_.c:1644 ../../standalone/drakfont_.c:953
-#: ../../standalone/drakfont_.c:996
-msgid "Add"
-msgstr "Добави"
-
-#: ../../any.pm_.c:257 ../../any.pm_.c:760 ../../diskdrake/dav.pm_.c:68
-#: ../../diskdrake/hd_gtk.pm_.c:156 ../../diskdrake/removable.pm_.c:27
-#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
-#: ../../printer/printerdrake.pm_.c:2970 ../../standalone/drakbackup_.c:2726
-msgid "Done"
-msgstr "Готово"
-
-#: ../../any.pm_.c:257
-msgid "Modify"
-msgstr "Модифицирай"
-
-#: ../../any.pm_.c:265
-msgid "Which type of entry do you want to add?"
-msgstr "Какъв тип информация искате да прибавите"
-
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1674
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../any.pm_.c:266
-msgid "Other OS (SunOS...)"
-msgstr "Друга ОС (SunOS...)"
-
-#: ../../any.pm_.c:267
-msgid "Other OS (MacOS...)"
-msgstr "Друга ОС (MacOS...)"
-
-#: ../../any.pm_.c:267
+#: ../../any.pm:1
+#, c-format
msgid "Other OS (windows...)"
msgstr "Друга ОС (Windows...)"
-#: ../../any.pm_.c:285
-msgid "Image"
-msgstr "Образ"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (MacOS...)"
+msgstr "Друга ОС (MacOS...)"
-#: ../../any.pm_.c:286 ../../any.pm_.c:297
-msgid "Root"
-msgstr "Главен"
+#: ../../any.pm:1
+#, c-format
+msgid "Other OS (SunOS...)"
+msgstr "Друга ОС (SunOS...)"
-#: ../../any.pm_.c:287 ../../any.pm_.c:315
-msgid "Append"
-msgstr "Допълване"
+#: ../../any.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Linux"
+msgstr "Linux"
-#: ../../any.pm_.c:291
-msgid "Initrd"
-msgstr "Initrd"
+#: ../../any.pm:1
+#, c-format
+msgid "Which type of entry do you want to add?"
+msgstr "Какъв тип информация искате да прибавите"
-#: ../../any.pm_.c:292
-msgid "Read-write"
-msgstr "Четене-запис"
+#: ../../any.pm:1
+#, c-format
+msgid "This label is already used"
+msgstr "Този етикет вече се използва"
-#: ../../any.pm_.c:299
-msgid "Table"
-msgstr "Таблица"
+#: ../../any.pm:1
+#, fuzzy, c-format
+msgid "You must specify a root partition"
+msgstr "Трябва да имате swap-дял"
-#: ../../any.pm_.c:300
-msgid "Unsafe"
-msgstr "Опасен"
+#: ../../any.pm:1
+#, c-format
+msgid "You must specify a kernel image"
+msgstr ""
-#: ../../any.pm_.c:307 ../../any.pm_.c:312 ../../any.pm_.c:314
-msgid "Label"
-msgstr "Етикет"
+#: ../../any.pm:1
+#, c-format
+msgid "Empty label not allowed"
+msgstr "Празен етикет не е разрешен"
-#: ../../any.pm_.c:309 ../../any.pm_.c:319 ../../harddrake/v4l.pm_.c:215
+#: ../../any.pm:1 ../../harddrake/v4l.pm:1
+#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: ../../any.pm_.c:316
-msgid "Initrd-size"
-msgstr "Initrd-големина"
-
-#: ../../any.pm_.c:318
+#: ../../any.pm:1
+#, c-format
msgid "NoVideo"
msgstr "Без графика"
-#: ../../any.pm_.c:326
-msgid "Remove entry"
-msgstr "Премахни запис"
-
-#: ../../any.pm_.c:329
-msgid "Empty label not allowed"
-msgstr "Празен етикет не е разрешен"
-
-#: ../../any.pm_.c:330
-msgid "You must specify a kernel image"
-msgstr ""
-
-#: ../../any.pm_.c:330
-#, fuzzy
-msgid "You must specify a root partition"
-msgstr "Трябва да имате swap-дял"
-
-#: ../../any.pm_.c:331
-msgid "This label is already used"
-msgstr "Този етикет вече се използва"
-
-#: ../../any.pm_.c:640
+#: ../../any.pm:1
#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Намерени са %s %s интерфейси"
-
-#: ../../any.pm_.c:641
-msgid "Do you have another one?"
-msgstr "Имате ли друг(и) ?"
+msgid "Initrd-size"
+msgstr "Initrd-големина"
-#: ../../any.pm_.c:642
+#: ../../any.pm:1
#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Имате ли някакъв %s интерфейс?"
-
-#: ../../any.pm_.c:644 ../../any.pm_.c:807 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../ugtk2.pm_.c:925
-msgid "No"
-msgstr "Не"
-
-#: ../../any.pm_.c:644 ../../any.pm_.c:806 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:286 ../../standalone/drakgw_.c:258
-#: ../../standalone/drakgw_.c:259 ../../standalone/drakgw_.c:267
-#: ../../standalone/drakgw_.c:277 ../../ugtk2.pm_.c:925
-msgid "Yes"
-msgstr "Да"
-
-#: ../../any.pm_.c:645
-msgid "See hardware info"
-msgstr "Виж хардуерната информация"
+msgid "Append"
+msgstr "Допълване"
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:662
+#: ../../any.pm:1
#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Инсталиране на драйвер за %s платка %s"
+msgid "Label"
+msgstr "Етикет"
-#: ../../any.pm_.c:663
+#: ../../any.pm:1
#, c-format
-msgid "(module %s)"
-msgstr "(модул %s)"
+msgid "Unsafe"
+msgstr "Опасен"
-#: ../../any.pm_.c:674
+#: ../../any.pm:1
#, 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 ""
+msgid "Table"
+msgstr "Таблица"
-#: ../../any.pm_.c:680
+#: ../../any.pm:1
#, 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:682
-msgid "Module options:"
-msgstr "Опции на модула:"
+msgid "Root"
+msgstr "Главен"
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:694
+#: ../../any.pm:1
#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Кой %s драйвер да пробвам ?"
+msgid "Read-write"
+msgstr "Четене-запис"
-#: ../../any.pm_.c:703
+#: ../../any.pm:1
#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. Would you like to "
-"specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it "
-"should\n"
-"not cause any damage."
-msgstr ""
-"В някои случаи, %s драйверът се нуждае от допълнителна информация, за\n"
-"да работи коректно, въпреки че нормално работи и без нея. Желаете ли "
-"даподадете\n"
-"допълнителни опции за него или да разрешите на драйвера да потърси "
-"информацията\n"
-"от която се нуждае ? По принцип това може да забие компютъра ви, но няма да "
-"го повреди."
-
-#: ../../any.pm_.c:707
-msgid "Autoprobe"
-msgstr "Автоматично засичане"
+msgid "Initrd"
+msgstr "Initrd"
-#: ../../any.pm_.c:707
-msgid "Specify options"
-msgstr "Задай опции"
+#: ../../any.pm:1
+#, c-format
+msgid "Video mode"
+msgstr "Видео режим"
-#: ../../any.pm_.c:719
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Зареждането на модула %s не успя.\n"
-"Искате ли да опитате отново с други параметри ?"
+msgid "Image"
+msgstr "Образ"
-#: ../../any.pm_.c:734
-msgid "access to X programs"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Default OS?"
+msgstr "ОС по подразбиране ?"
-#: ../../any.pm_.c:735
-msgid "access to rpm tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Enable OF Boot?"
+msgstr "Стартиране от OF ?"
-#: ../../any.pm_.c:736
-msgid "allow \"su\""
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Enable CD Boot?"
+msgstr "Стартиране от CD ?"
-#: ../../any.pm_.c:737
-msgid "access to administrative files"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Kernel Boot Timeout"
+msgstr "Изчакване за стартиране на ядрото"
-#: ../../any.pm_.c:738
-msgid "access to network tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Open Firmware Delay"
+msgstr "Изчакване на Open Firmware"
-#: ../../any.pm_.c:739
-msgid "access to compilation tools"
-msgstr ""
+#: ../../any.pm:1
+#, c-format
+msgid "Boot device"
+msgstr "Стартиращо устройство"
-#: ../../any.pm_.c:744
+#: ../../any.pm:1
#, c-format
-msgid "(already added %s)"
-msgstr "(вече прибавих %s)"
+msgid "Init Message"
+msgstr "Стартово съобщение"
-#: ../../any.pm_.c:749
-msgid "This password is too simple"
-msgstr "Тази парола е прекалено проста"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader to use"
+msgstr "Използвана зареждащата програма"
-#: ../../any.pm_.c:750
-msgid "Please give a user name"
-msgstr "Моля, задайте потребителско име"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader main options"
+msgstr "Опции на зареждащата програма"
-#: ../../any.pm_.c:751
+#: ../../any.pm:1
+#, c-format
msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-
-#: ../../any.pm_.c:752
-#, fuzzy
-msgid "The user name is too long"
-msgstr "Това потребителско име е вече добавено"
+"Option ``Restrict command line options'' is of no use without a password"
+msgstr "Опцията ``Ограничи опциите от командния ред'' е безполезна без парола"
-#: ../../any.pm_.c:753
-msgid "This user name is already added"
-msgstr "Това потребителско име е вече добавено"
+#: ../../any.pm:1
+#, c-format
+msgid "Give the ram size in MB"
+msgstr "Дайте размера RAM-памет в Mb"
-#: ../../any.pm_.c:757
-msgid "Add user"
-msgstr "Добави потребител"
+#: ../../any.pm:1
+#, c-format
+msgid "Enable multiple profiles"
+msgstr "Включи много профили"
-#: ../../any.pm_.c:758
+#: ../../any.pm:1
#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Въведете потребител\n"
-"%s"
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Точен размер на RAM-паметта, ако е необходимо (намерени %d MB)"
-#: ../../any.pm_.c:759
-msgid "Accept user"
-msgstr "Приеми потребител"
+#: ../../any.pm:1
+#, c-format
+msgid "Clean /tmp at each boot"
+msgstr "Почистване на /tmp при всяко зареждане"
-#: ../../any.pm_.c:770
-msgid "Real name"
-msgstr "Истинско име"
+#: ../../any.pm:1
+#, c-format
+msgid "Create a bootdisk"
+msgstr "Създаване на boot-дискета"
-#: ../../any.pm_.c:771 ../../printer/printerdrake.pm_.c:802
-#: ../../printer/printerdrake.pm_.c:915
-msgid "User name"
-msgstr "Потребителско име"
+#: ../../any.pm:1
+#, c-format
+msgid "restrict"
+msgstr "ограничи"
-#: ../../any.pm_.c:774
-msgid "Shell"
-msgstr "Шел"
+#: ../../any.pm:1
+#, c-format
+msgid "Restrict command line options"
+msgstr "Ограничи опциите, задавани от командния ред"
-#: ../../any.pm_.c:776
-msgid "Icon"
-msgstr "Икона"
+#: ../../any.pm:1
+#, c-format
+msgid "Delay before booting default image"
+msgstr "Забавяне преди стартирането на default дяла"
-#: ../../any.pm_.c:803
-msgid "Autologin"
-msgstr "Autologin"
+#: ../../any.pm:1
+#, c-format
+msgid "compact"
+msgstr "компактен"
-#: ../../any.pm_.c:804
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"Do you want to use this feature?"
-msgstr ""
-"Мога да настроя компютъра ви да влизане в системата автоматично като някой "
-"потребител.\n"
-"Искате ли тази възможност ?"
+#: ../../any.pm:1
+#, c-format
+msgid "Compact"
+msgstr "Компактен"
-#: ../../any.pm_.c:808
-msgid "Choose the default user:"
-msgstr "Изберете подразбиращ се потребител :"
+#: ../../any.pm:1
+#, c-format
+msgid "Bootloader installation"
+msgstr "Bootloader инсталация"
-#: ../../any.pm_.c:809
-msgid "Choose the window manager to run:"
-msgstr "Изберете Windows Manager за стартиране:"
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of boot partition"
+msgstr "Първи сектор от стартиращия се дял"
-#: ../../any.pm_.c:824
-#, fuzzy
-msgid "Please choose a language to use."
-msgstr "Моля, изберете използван език."
+#: ../../any.pm:1
+#, c-format
+msgid "First sector of drive (MBR)"
+msgstr "Първият сектор от драйва (MBR)"
-#: ../../any.pm_.c:826
-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:1
+#, c-format
+msgid "Where do you want to install the bootloader?"
+msgstr "Къде искате да инсталирате bootloader-а?"
-#: ../../any.pm_.c:840 ../../install_steps_interactive.pm_.c:697
-#: ../../standalone/drakxtv_.c:70
-msgid "All"
-msgstr "Всички"
+#: ../../any.pm:1
+#, c-format
+msgid "LILO/grub Installation"
+msgstr "LILO/grub инсталация"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "Allow all users"
-msgstr "Добавяне на потребител"
+#: ../../any.pm:1
+#, c-format
+msgid "SILO Installation"
+msgstr "SILO инсталация"
-#: ../../any.pm_.c:961
-#, fuzzy
-msgid "No sharing"
-msgstr "Поделяне на файлове"
+#: ../../any.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Skip"
+msgstr "Прескочи"
-#: ../../any.pm_.c:971 ../../install_any.pm_.c:1207 ../../standalone.pm_.c:185
+#: ../../any.pm:1
#, fuzzy, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr ""
-"Този пакет трябва да бъде обновен\n"
-"Сигурни ли сте, че искате да го изключите ?"
-
-#: ../../any.pm_.c:973
-msgid ""
-"You can export using NFS or Samba. Please select which you'd like to use."
-msgstr ""
+msgid "On Floppy"
+msgstr "Запази на дискета"
-#: ../../any.pm_.c:981 ../../install_any.pm_.c:1212 ../../standalone.pm_.c:190
+#: ../../any.pm:1
#, c-format
-msgid "Mandatory package %s is missing"
-msgstr ""
-
-#: ../../any.pm_.c:987
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror "
-"and nautilus.\n"
+"You decided to install the bootloader on a partition.\n"
+"This implies you already have a bootloader on the hard drive you boot (eg: "
+"System Commander).\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-msgstr ""
-
-#: ../../any.pm_.c:1001
-msgid "Launch userdrake"
-msgstr ""
-
-#: ../../any.pm_.c:1003
-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:1053 ../../security/level.pm_.c:7
-msgid "Welcome To Crackers"
-msgstr "Добре дошли при Cracker-ите"
-
-#: ../../any.pm_.c:1054 ../../security/level.pm_.c:8
-msgid "Poor"
-msgstr "Лошо"
-
-#: ../../any.pm_.c:1055 ../../mouse.pm_.c:31 ../../security/level.pm_.c:9
-msgid "Standard"
-msgstr "Стандартна"
-
-#: ../../any.pm_.c:1056 ../../security/level.pm_.c:10
-msgid "High"
-msgstr "Високо"
-
-#: ../../any.pm_.c:1057 ../../security/level.pm_.c:11
-#, fuzzy
-msgid "Higher"
-msgstr "Високо"
-
-#: ../../any.pm_.c:1058 ../../security/level.pm_.c:12
-msgid "Paranoid"
-msgstr "Параноично"
-
-#: ../../any.pm_.c:1061
-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"
-"свързани с други или по Интернет. Няма достъп с пароли."
-
-#: ../../any.pm_.c:1064
-msgid ""
-"Password are now enabled, but use as a networked computer is still not "
-"recommended."
-msgstr ""
-"Паролата сега е включена, но използването като мрежов компютър не е "
-"препоръчително."
-
-#: ../../any.pm_.c:1065
-#, fuzzy
-msgid ""
-"This is the standard security recommended for a computer that will be used "
-"to connect to the Internet as a client."
-msgstr ""
-"Това е стандартната сигурност препоръчителна за компютър, който ще бъде\n"
-"използван да се свързва към Интернет като клиент. Има проверки на "
-"сигурността. "
-
-#: ../../any.pm_.c:1066
-msgid ""
-"There are already some restrictions, and more automatic checks are run every "
-"night."
+"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:1067
-#, 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"
-"сървър приемащ връзки от много клиенти. "
+#: ../../any.pm:1
+#, c-format
+msgid "Creating bootdisk..."
+msgstr "Създаване на стартираща дискета"
-#: ../../any.pm_.c:1070
-#, fuzzy
-msgid ""
-"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:1
+#, fuzzy, c-format
+msgid "Insert a floppy in %s"
+msgstr "Сложете дискета в устройство %s"
-#: ../../any.pm_.c:1076
-#, fuzzy
-msgid "DrakSec Basic Options"
-msgstr "Опции"
+#: ../../any.pm:1
+#, c-format
+msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgstr "Изберете флопи драйв,където да направите стартираща дискета"
-#: ../../any.pm_.c:1077
-#, fuzzy
-msgid "Please choose the desired security level"
-msgstr "Изберете ниво на сигурност"
+#: ../../any.pm:1
+#, c-format
+msgid "Second floppy drive"
+msgstr "Второ флопи устройство"
-#: ../../any.pm_.c:1080
-msgid "Security level"
-msgstr "Ниво на сигурност"
+#: ../../any.pm:1
+#, c-format
+msgid "First floppy drive"
+msgstr "Първо флопи устройство"
-#: ../../any.pm_.c:1082
-msgid "Use libsafe for servers"
-msgstr "Използвайте libsafe за сървъри"
+#: ../../any.pm:1
+#, c-format
+msgid "Sorry, no floppy drive available"
+msgstr "Съжалявам няма флопи"
-#: ../../any.pm_.c:1083
+#: ../../any.pm:1
+#, c-format
msgid ""
-"A library which defends against buffer overflow and format string attacks."
-msgstr ""
-"Библиотека, която осигурява защита от aтаки с препълване на буфер и форматни "
-"стрингове."
-
-#: ../../any.pm_.c:1084
-msgid "Security Administrator (login or email)"
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"LILO (or grub) on your system, or another operating system removes LILO, or "
+"LILO doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures. Would you like to create a bootdisk for your system?\n"
+"%s"
msgstr ""
+"Клиентски bootdisk е необходим за стартиране в Linux системата ви "
+"независимо\n"
+"от обикновената зареждаща програма. Това е полезно, ако не искате да "
+"инсталирате\n"
+"LILO (или GRUB) на системата си или ако някоя друга операционна система "
+"махне LILO или LILO не\n"
+"работи с хардуерната ви настройка. Bootdisk-ът може да бъде използван със\n"
+"спасителната дискета на Mandrake, улесняваща възстановяването при редки\n"
+"случаи на срив. Искате ли да създам bootdisk за системата ви ?\n"
+"%s"
-#: ../../any.pm_.c:1166
+#: ../../any.pm:1
+#, c-format
msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
+"\n"
+"\n"
+"(WARNING! You're using XFS for your root partition,\n"
+"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
+"because XFS needs a very large driver)."
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:436
+#: ../../any.pm:1
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system in the list above or\n"
-"wait %d seconds for default boot.\n"
+"Клиентскят bootdisk е необходим за стартиране в Linux системата ви "
+"независимо\n"
+"от обикновения bootloader. Това е полезно, ако не искате да инсталирате\n"
+"SILO на системата си, ако някоя друга операционна система махне SILO\n"
+"или ако SILO не работи с хардуерната ви настройка. Клиентският bootdisk\n"
+"може да бъде използван със\n"
+"спасителният образ на Mandrake, улесняваки възстановяването при редки\n"
+"случаи на срив.\n"
"\n"
+"Ако искате да създадете bootdisk за вашата система, поставете дискета в\n"
+"първото устройство и натиснете \"Ok\"."
+
+#: ../../bootloader.pm:1
+#, c-format
+msgid "You can't install the bootloader on a %s partition\n"
+msgstr "Не можете да инсталирате bootloader на дяла %s\n"
+
+#: ../../bootloader.pm:1
+#, c-format
+msgid "not enough room in /boot"
+msgstr "няма достатъчно място за /boot"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1131,9 +671,10 @@ 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:983
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
+#: ../../bootloader.pm:1
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1145,10 +686,10 @@ 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:986
+#: ../../bootloader.pm:1
#, 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."
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1160,7 +701,8 @@ 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:989
+#: ../../bootloader.pm:1
+#, c-format
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1174,9 +716,10 @@ 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:992
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
+#: ../../bootloader.pm:1
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -1188,1231 +731,458 @@ 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:995
+#: ../../bootloader.pm:1
#, 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:999
-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:1099
-msgid "Desktop"
-msgstr "Десктоп"
-
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1101
-msgid "Start Menu"
-msgstr "Стартово Меню"
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
-#: ../../bootloader.pm_.c:1120
+#: ../../bootloader.pm:1
#, c-format
-msgid "You can't install the bootloader on a %s partition\n"
-msgstr "Не можете да инсталирате bootloader на дяла %s\n"
-
-#: ../../bootlook.pm_.c:53
-msgid "Boot Style Configuration"
-msgstr "Настройка на начина на стартиране"
-
-#: ../../bootlook.pm_.c:70 ../../standalone/drakfloppy_.c:54
-#: ../../standalone/harddrake2_.c:81 ../../standalone/harddrake2_.c:82
-#: ../../standalone/logdrake_.c:74
-msgid "/_File"
-msgstr "/_Файл"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/logdrake_.c:80
-msgid "/File/_Quit"
-msgstr "/Файл/_Изход"
-
-#: ../../bootlook.pm_.c:71 ../../standalone/drakfloppy_.c:55
-#: ../../standalone/harddrake2_.c:82 ../../standalone/logdrake_.c:80
-msgid "<control>Q"
-msgstr "<control>Q"
-
-#: ../../bootlook.pm_.c:82
-msgid "NewStyle Categorizing Monitor"
-msgstr "NewStyle категоризиран монитор"
-
-#: ../../bootlook.pm_.c:83
-msgid "NewStyle Monitor"
-msgstr "NewStyle монитор"
-
-#: ../../bootlook.pm_.c:84
-msgid "Traditional Monitor"
-msgstr "Обикновен монитор"
-
-#: ../../bootlook.pm_.c:85
-msgid "Traditional Gtk+ Monitor"
-msgstr "Обикновен Gtk+ монитор"
-
-#: ../../bootlook.pm_.c:86
-msgid "Launch Aurora at boot time"
-msgstr "Пусни Aurora при стартиране"
-
-#: ../../bootlook.pm_.c:89
-msgid "Lilo/grub mode"
-msgstr "Режим на Lilo/grub"
-
-#: ../../bootlook.pm_.c:89
-msgid "Yaboot mode"
-msgstr "Режим на Yaboot"
-
-#: ../../bootlook.pm_.c:138
-#, fuzzy
-msgid "Install themes"
-msgstr "Инсталиране на системата"
-
-#: ../../bootlook.pm_.c:139
-msgid ""
-"Display theme\n"
-"under console"
-msgstr ""
-
-#: ../../bootlook.pm_.c:140
-#, fuzzy
-msgid "Create new theme"
-msgstr "Създай нов дял"
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../bootlook.pm_.c:184
+#: ../../bootloader.pm:1
#, c-format
-msgid "Backup %s to %s.old"
-msgstr ""
-
-#: ../../bootlook.pm_.c:187
-#, fuzzy, c-format
-msgid "Copy %s to %s"
-msgstr "Копиране на %s"
-
-#: ../../bootlook.pm_.c:192 ../../bootlook.pm_.c:222 ../../bootlook.pm_.c:224
-#: ../../bootlook.pm_.c:234 ../../bootlook.pm_.c:243 ../../bootlook.pm_.c:250
-#: ../../diskdrake/dav.pm_.c:77 ../../diskdrake/hd_gtk.pm_.c:119
-#: ../../diskdrake/interactive.pm_.c:216 ../../diskdrake/interactive.pm_.c:352
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:481
-#: ../../diskdrake/interactive.pm_.c:486 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../fsedit.pm_.c:239 ../../install_steps.pm_.c:75
-#: ../../install_steps_interactive.pm_.c:67 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/draksplash_.c:21
-msgid "Error"
-msgstr "Грешка"
-
-#: ../../bootlook.pm_.c:192
-msgid "Lilo message not found"
-msgstr ""
-
-#: ../../bootlook.pm_.c:222
-msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
-
-#: ../../bootlook.pm_.c:222
-#, fuzzy, c-format
-msgid "Write %s"
-msgstr "XFree %s"
-
-#: ../../bootlook.pm_.c:224
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
-msgstr ""
+msgid "Grub"
+msgstr "Grub"
-#: ../../bootlook.pm_.c:235
+#: ../../bootloader.pm:1
#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgid "LILO with text menu"
+msgstr "LILO с текстово меню"
-#: ../../bootlook.pm_.c:238
+#: ../../bootloader.pm:1
#, c-format
-msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr ""
-
-#: ../../bootlook.pm_.c:244
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
-msgstr ""
-
-#: ../../bootlook.pm_.c:248
-msgid "Relaunch 'lilo'"
-msgstr ""
-
-#: ../../bootlook.pm_.c:250 ../../standalone/draksplash_.c:156
-#: ../../standalone/draksplash_.c:321 ../../standalone/draksplash_.c:449
-#, fuzzy
-msgid "Notice"
-msgstr "Без графика"
-
-#: ../../bootlook.pm_.c:251
-msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
-
-#: ../../bootlook.pm_.c:251
-#, fuzzy
-msgid "Theme installation failed!"
-msgstr "Избор на клас инсталация"
+msgid "LILO with graphical menu"
+msgstr "LILO с графично меню"
-#: ../../bootlook.pm_.c:259
+#: ../../bootloader.pm:1
#, c-format
-msgid ""
-"You are currently using %s as your boot manager.\n"
-"Click on Configure to launch the setup wizard."
-msgstr ""
-"В момента използвате %s като програма за стартиране.\n"
-"Цъкнете на Настрой, за да стартирате установяващия магьосник."
-
-#: ../../bootlook.pm_.c:261 ../../standalone/drakbackup_.c:2380
-#: ../../standalone/drakbackup_.c:2390 ../../standalone/drakbackup_.c:2400
-#: ../../standalone/drakbackup_.c:2408 ../../standalone/drakgw_.c:551
-msgid "Configure"
-msgstr "Настрой"
-
-#: ../../bootlook.pm_.c:268
-#, fuzzy
-msgid "Splash selection"
-msgstr "Запази избор на пакети"
-
-#: ../../bootlook.pm_.c:271
-msgid "Themes"
-msgstr ""
+msgid "SILO"
+msgstr "SILO"
-#: ../../bootlook.pm_.c:273
+# 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:1
+#, c-format
msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system from the list above or\n"
+"wait %d seconds for default boot.\n"
"\n"
-"Select theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separatly"
-msgstr ""
-
-#: ../../bootlook.pm_.c:276
-msgid "Lilo screen"
-msgstr ""
-
-#: ../../bootlook.pm_.c:281
-msgid "Bootsplash"
msgstr ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system from the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
-#: ../../bootlook.pm_.c:316
-msgid "System mode"
-msgstr "Системен режим"
-
-#: ../../bootlook.pm_.c:318
-msgid "Launch the graphical environment when your system starts"
-msgstr "Пусни X-Window системата при стартиране"
-
-#: ../../bootlook.pm_.c:323
-msgid "No, I don't want autologin"
-msgstr "Не, не искам autologin"
-
-#: ../../bootlook.pm_.c:325
-msgid "Yes, I want autologin with this (user, desktop)"
-msgstr "Да, искам autologin с това (потребител, десктоп)"
-
-#: ../../bootlook.pm_.c:335 ../../network/netconnect.pm_.c:96
-#: ../../standalone/drakTermServ_.c:222 ../../standalone/drakTermServ_.c:355
-#: ../../standalone/drakbackup_.c:4139 ../../standalone/drakbackup_.c:4797
-#: ../../standalone/drakconnect_.c:105 ../../standalone/drakconnect_.c:137
-#: ../../standalone/drakconnect_.c:293 ../../standalone/drakconnect_.c:432
-#: ../../standalone/drakconnect_.c:518 ../../standalone/drakconnect_.c:561
-#: ../../standalone/drakconnect_.c:665 ../../standalone/drakfont_.c:604
-#: ../../standalone/drakfont_.c:783 ../../standalone/drakfont_.c:911
-#: ../../standalone/net_monitor_.c:336 ../../ugtk.pm_.c:288
-#: ../../ugtk2.pm_.c:355
+#: ../../bootlook.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
+#: ../../network/netconnect.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#, c-format
msgid "OK"
msgstr "OK"
-#: ../../common.pm_.c:107
-msgid "GB"
-msgstr "ГБ"
-
-#: ../../common.pm_.c:107
-msgid "KB"
-msgstr "КБ"
-
-#: ../../common.pm_.c:107
-msgid "MB"
-msgstr "МБ"
-
-#: ../../common.pm_.c:115
-msgid "TB"
-msgstr "ТБ"
-
-#: ../../common.pm_.c:123
+#: ../../bootlook.pm:1
#, c-format
-msgid "%d minutes"
-msgstr "%d минути"
-
-#: ../../common.pm_.c:125
-msgid "1 minute"
-msgstr "1 минута"
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Да, искам autologin с това (потребител, десктоп)"
-#: ../../common.pm_.c:127
+#: ../../bootlook.pm:1
#, c-format
-msgid "%d seconds"
-msgstr "%d секунди"
-
-#: ../../common.pm_.c:172
-#, fuzzy
-msgid "Can't make screenshots before partitioning"
-msgstr "Не мога да добавя повече дялове"
-
-#: ../../common.pm_.c:179
-#, fuzzy, c-format
-msgid "Screenshots will be available after install in %s"
-msgstr "Можете да изберете други езици, които ще бъдат налице слединсталацията"
-
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:127
-msgid "France"
-msgstr "Франция"
-
-#: ../../crypto.pm_.c:15
-msgid "Costa Rica"
-msgstr ""
-
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:130
-#, fuzzy
-msgid "Belgium"
-msgstr "Белгийска"
-
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-msgid "Czech Republic"
-msgstr ""
-
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
-msgid "Germany"
-msgstr "Немска"
-
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
-msgid "Greece"
-msgstr "Гръцка"
+msgid "No, I don't want autologin"
+msgstr "Не, не искам autologin"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
-#, fuzzy
-msgid "Norway"
-msgstr "Норвежка"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Launch the graphical environment when your system starts"
+msgstr "Пусни X-Window системата при стартиране"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
-#, fuzzy
-msgid "Sweden"
-msgstr "Виж"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "System mode"
+msgstr "Системен режим"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:128
-msgid "Netherlands"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Bootsplash"
msgstr ""
-#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:129 ../../standalone/drakxtv_.c:65
-#, fuzzy
-msgid "Italy"
-msgstr "Италианска"
-
-#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
-#, fuzzy
-msgid "Austria"
-msgstr "серийна"
-
-#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:118
-#: ../../network/tools.pm_.c:131
-msgid "United States"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Lilo screen"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:19
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
-msgstr ""
-
-#: ../../diskdrake/dav.pm_.c:27
-#, fuzzy
-msgid "New"
-msgstr "нов"
-
-#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:400
-#: ../../diskdrake/smbnfs_gtk.pm_.c:81
-msgid "Unmount"
-msgstr "Демонтирай"
-
-#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:397
-#: ../../diskdrake/smbnfs_gtk.pm_.c:82
-msgid "Mount"
-msgstr "Монтирай"
-
-#: ../../diskdrake/dav.pm_.c:65
-msgid "Server"
-msgstr "Сървър"
-
-#: ../../diskdrake/dav.pm_.c:66 ../../diskdrake/interactive.pm_.c:391
-#: ../../diskdrake/interactive.pm_.c:580 ../../diskdrake/interactive.pm_.c:607
-#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Място на монтиране"
-
-#: ../../diskdrake/dav.pm_.c:85
-#, fuzzy
-msgid "Please enter the WebDAV server URL"
-msgstr "Моля, пробвайте мишката си"
-
-#: ../../diskdrake/dav.pm_.c:88
-msgid "The URL must begin with http:// or https://"
+"\n"
+"Select the theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separately"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:109
-#, fuzzy
-msgid "Server: "
-msgstr "Сървър"
-
-#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:452
-#: ../../diskdrake/interactive.pm_.c:1102
-#: ../../diskdrake/interactive.pm_.c:1177
-msgid "Mount point: "
-msgstr "Място на монтиране: "
-
-#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1183
+#: ../../bootlook.pm:1
#, c-format
-msgid "Options: %s"
-msgstr "Опции: %s"
+msgid "Themes"
+msgstr "Теми"
-#: ../../diskdrake/hd_gtk.pm_.c:97
-msgid "Please make a backup of your data first"
-msgstr "Първо създайте backup на своите данни"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Splash selection"
+msgstr "Запази избор на пакети"
-#: ../../diskdrake/hd_gtk.pm_.c:97 ../../diskdrake/interactive.pm_.c:946
-#: ../../diskdrake/interactive.pm_.c:956
-#: ../../diskdrake/interactive.pm_.c:1022
-msgid "Read carefully!"
-msgstr "Прочетете внимателно !"
+#: ../../bootlook.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Configure"
+msgstr "Настрой"
-#: ../../diskdrake/hd_gtk.pm_.c:100
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
-"enough)\n"
-"at the beginning of the disk"
+"You are currently using %s as your boot manager.\n"
+"Click on Configure to launch the setup wizard."
msgstr ""
-"Ако смятате да използвате aboot, оставете свободно пространство (2048 "
-"сектора\n"
-"са достатъчни) в началото на диска"
-
-#: ../../diskdrake/hd_gtk.pm_.c:154
-msgid "Wizard"
-msgstr "Магьосник"
-
-#: ../../diskdrake/hd_gtk.pm_.c:187
-msgid "Choose action"
-msgstr "Изберете действие"
+"В момента използвате %s като програма за стартиране.\n"
+"Цъкнете на Настрой, за да стартирате установяващия магьосник."
-#: ../../diskdrake/hd_gtk.pm_.c:191
-msgid ""
-"You have one big FAT partition\n"
-"(generally used by MicroSoft Dos/Windows).\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-"Имате един голям FAT дял\n"
-"(по принцип се ползват от Microsoft Dos/Windows).\n"
-"Предлагам първо да промените големината на този дял\n"
-"(щракнете върху него, а след това щракнете върху \"Промени големината\")"
-
-#: ../../diskdrake/hd_gtk.pm_.c:194
-msgid "Please click on a partition"
-msgstr "Моля, цъкнете на дяла"
-
-#: ../../diskdrake/hd_gtk.pm_.c:208 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:464
-msgid "Details"
-msgstr "Подробности"
-#: ../../diskdrake/hd_gtk.pm_.c:254
-#, fuzzy
-msgid "No hard drives found"
-msgstr "Локален принтер"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Ext2"
-msgstr "Ext2"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "FAT"
-msgstr "FAT"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "HFS"
-msgstr "HFS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Journalised FS"
-msgstr "Журнална FS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "SunOS"
-msgstr "SunOS"
-
-#: ../../diskdrake/hd_gtk.pm_.c:325
-msgid "Swap"
-msgstr "Swap"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../diskdrake/interactive.pm_.c:1118
-msgid "Empty"
-msgstr "Празен"
-
-#: ../../diskdrake/hd_gtk.pm_.c:326 ../../install_steps_gtk.pm_.c:324
-#: ../../install_steps_gtk.pm_.c:382 ../../mouse.pm_.c:165
-#: ../../services.pm_.c:162 ../../standalone/drakbackup_.c:1719
-msgid "Other"
-msgstr "Друга"
-
-#: ../../diskdrake/hd_gtk.pm_.c:330
-msgid "Filesystem types:"
-msgstr "Видове файлова система:"
-
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:414
-msgid "Create"
-msgstr "Създай"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Theme installation failed!"
+msgstr "Избор на клас инсталация"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:392
-#: ../../diskdrake/interactive.pm_.c:543 ../../diskdrake/removable.pm_.c:26
-#: ../../diskdrake/removable.pm_.c:49 ../../standalone/harddrake2_.c:66
-msgid "Type"
-msgstr "Вид"
+#: ../../bootlook.pm:1 ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "Notice"
+msgstr "Без графика"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/hd_gtk.pm_.c:349
+#: ../../bootlook.pm:1 ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
+#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
+#: ../../standalone/draksplash:1
#, c-format
-msgid "Use ``%s'' instead"
-msgstr "Вместо това използвайте ``%s''"
-
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:401
-msgid "Delete"
-msgstr "Изтрий"
-
-#: ../../diskdrake/hd_gtk.pm_.c:353
-msgid "Use ``Unmount'' first"
-msgstr "Първо използвайте 'Демонтиране'"
+msgid "Error"
+msgstr "Грешка"
-#: ../../diskdrake/hd_gtk.pm_.c:354 ../../diskdrake/interactive.pm_.c:530
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"After changing type of partition %s, all data on this partition will be lost"
+msgid "Relaunch 'lilo'"
msgstr ""
-"След промяна на типа на дяла %s, всички данни върху него ще бъдат загубени"
-
-#: ../../diskdrake/interactive.pm_.c:177
-msgid "Choose a partition"
-msgstr "Изберете дял"
-
-#: ../../diskdrake/interactive.pm_.c:177
-msgid "Choose another partition"
-msgstr "Изберете друг дял"
-
-#: ../../diskdrake/interactive.pm_.c:202
-msgid "Exit"
-msgstr "Излез"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to expert mode"
-msgstr "Премини в Експертен режим"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Toggle to normal mode"
-msgstr "Премини в Нормален режим"
-
-#: ../../diskdrake/interactive.pm_.c:228
-msgid "Undo"
-msgstr "Върни"
-
-#: ../../diskdrake/interactive.pm_.c:247
-msgid "Continue anyway?"
-msgstr "Продължение въпреки всичко ?"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without saving"
-msgstr "Изход без запис"
-
-#: ../../diskdrake/interactive.pm_.c:252
-msgid "Quit without writing the partition table?"
-msgstr "Изход, без да запис на таблицата на дяловете ?"
-
-#: ../../diskdrake/interactive.pm_.c:257
-msgid "Do you want to save /etc/fstab modifications"
-msgstr "Искате ли да запазите промените в /etc/fstab"
-
-#: ../../diskdrake/interactive.pm_.c:271
-msgid "Clear all"
-msgstr "Изчисти всичко"
-
-#: ../../diskdrake/interactive.pm_.c:272
-msgid "Auto allocate"
-msgstr "Автоматично създаване"
-
-#: ../../diskdrake/interactive.pm_.c:273
-#: ../../install_steps_interactive.pm_.c:220
-msgid "More"
-msgstr "Още"
-
-#: ../../diskdrake/interactive.pm_.c:278
-msgid "Hard drive information"
-msgstr "Информацията за твърдия диск"
-
-#: ../../diskdrake/interactive.pm_.c:310
-msgid "All primary partitions are used"
-msgstr "Всички първични дялове се използват"
-
-#: ../../diskdrake/interactive.pm_.c:311
-msgid "I can't add any more partition"
-msgstr "Не мога да добавя повече дялове"
-#: ../../diskdrake/interactive.pm_.c:312
+#: ../../bootlook.pm:1
+#, c-format
msgid ""
-"To have more partitions, please delete one to be able to create an extended "
-"partition"
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-"Ако искате още дялове, моля изтрийте един, за да можете да създадете един "
-"разширен дял"
-
-#: ../../diskdrake/interactive.pm_.c:322
-msgid "Save partition table"
-msgstr "Запази таблицата с дяловете"
-
-#: ../../diskdrake/interactive.pm_.c:323
-msgid "Restore partition table"
-msgstr "Възстанови таблицата с дяловете"
-
-#: ../../diskdrake/interactive.pm_.c:324
-msgid "Rescue partition table"
-msgstr "Спасяване таблицата с дяловете"
-
-#: ../../diskdrake/interactive.pm_.c:326
-msgid "Reload partition table"
-msgstr "Презареди таблицата с дяловете"
-
-#: ../../diskdrake/interactive.pm_.c:331
-msgid "Removable media automounting"
-msgstr "Автоматично монтиране на сменяем носител"
-
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/interactive.pm_.c:360
-msgid "Select file"
-msgstr "Изберете файл"
-#: ../../diskdrake/interactive.pm_.c:347
-msgid ""
-"The backup partition table has not the same size\n"
-"Still continue?"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-"Резервната таблица на дяловете не е със същата големина\n"
-"Да продължа ли все пак ?"
-#: ../../diskdrake/interactive.pm_.c:361 ../../harddrake/sound.pm_.c:202
-#: ../../network/modem.pm_.c:95
-msgid "Warning"
-msgstr "Предупреждение"
-
-#: ../../diskdrake/interactive.pm_.c:362
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+#: ../../bootlook.pm:1
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-"Сложете дискета във флопито\n"
-"Всички данни, намиращи се върху дискетата, ще бъдат загубени"
-#: ../../diskdrake/interactive.pm_.c:373
-msgid "Trying to rescue partition table"
-msgstr "Опитвам се да спася таблицата на дяловете"
-
-#: ../../diskdrake/interactive.pm_.c:379
-msgid "Detailed information"
-msgstr "Подробна информация"
-
-#: ../../diskdrake/interactive.pm_.c:394 ../../diskdrake/interactive.pm_.c:674
-msgid "Resize"
-msgstr "Промени големината"
-
-#: ../../diskdrake/interactive.pm_.c:395 ../../diskdrake/interactive.pm_.c:727
-msgid "Move"
-msgstr "Премести"
-
-#: ../../diskdrake/interactive.pm_.c:396
-msgid "Format"
-msgstr "Форматирай"
-
-#: ../../diskdrake/interactive.pm_.c:398
-msgid "Add to RAID"
-msgstr "Прибави към RAID"
-
-#: ../../diskdrake/interactive.pm_.c:399
-msgid "Add to LVM"
-msgstr "Прибави към LVM"
-
-#: ../../diskdrake/interactive.pm_.c:402
-msgid "Remove from RAID"
-msgstr "Премахни от RAID"
-
-#: ../../diskdrake/interactive.pm_.c:403
-msgid "Remove from LVM"
-msgstr "Премахни от LVM"
-
-#: ../../diskdrake/interactive.pm_.c:404
-msgid "Modify RAID"
-msgstr "Модифицирай RAID"
-
-#: ../../diskdrake/interactive.pm_.c:405
-msgid "Use for loopback"
-msgstr "Използвай за loopback"
-
-#: ../../diskdrake/interactive.pm_.c:445
-msgid "Create a new partition"
-msgstr "Създай нов дял"
-
-#: ../../diskdrake/interactive.pm_.c:448
-msgid "Start sector: "
-msgstr "Начален сектор: "
-
-#: ../../diskdrake/interactive.pm_.c:450 ../../diskdrake/interactive.pm_.c:827
-msgid "Size in MB: "
-msgstr "Големина в MB: "
-
-#: ../../diskdrake/interactive.pm_.c:451 ../../diskdrake/interactive.pm_.c:828
-msgid "Filesystem type: "
-msgstr "Вид файлова система: "
-
-#: ../../diskdrake/interactive.pm_.c:456
-msgid "Preference: "
-msgstr "Предпочитание: "
-
-#: ../../diskdrake/interactive.pm_.c:481
+#: ../../bootlook.pm:1
+#, c-format
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."
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:511
-msgid "Remove the loopback file?"
-msgstr "Да премахна ли loopback файла ?"
-
-#: ../../diskdrake/interactive.pm_.c:541
-msgid "Change partition type"
-msgstr "Промяна типа на дяла"
-
-#: ../../diskdrake/interactive.pm_.c:542 ../../diskdrake/removable.pm_.c:48
-msgid "Which filesystem do you want?"
-msgstr "Коя файлова система искате ?"
-
-#: ../../diskdrake/interactive.pm_.c:548
-msgid "Switching from ext2 to ext3"
-msgstr "Преход от ext2 към ext3"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
-#: ../../diskdrake/interactive.pm_.c:578
+#: ../../bootlook.pm:1
#, c-format
-msgid "Where do you want to mount loopback file %s?"
-msgstr "Къде искате да монтирате loopback-файла %s ?"
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:579
+#: ../../bootlook.pm:1
#, c-format
-msgid "Where do you want to mount device %s?"
-msgstr "Къде искате да монтирате устройство %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:585
-msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
+msgid "Lilo message not found"
msgstr ""
-"Не мога да махна точката на монтиране, тъй като дялът се използва за "
-"loopback.\n"
-"Първо махнете loopback"
-#: ../../diskdrake/interactive.pm_.c:606
+#: ../../bootlook.pm:1
#, fuzzy, c-format
-msgid "Where do you want to mount %s?"
-msgstr "Къде искате да монтирате устройство %s ?"
-
-#: ../../diskdrake/interactive.pm_.c:630
-msgid "Computing FAT filesystem bounds"
-msgstr "Изчислявам границите на fat файловата система"
-
-#: ../../diskdrake/interactive.pm_.c:630 ../../diskdrake/interactive.pm_.c:689
-#: ../../install_interactive.pm_.c:131
-msgid "Resizing"
-msgstr "Промяна на големината"
-
-#: ../../diskdrake/interactive.pm_.c:662
-msgid "This partition is not resizeable"
-msgstr "Големината на дяла не може да бъде променена"
-
-#: ../../diskdrake/interactive.pm_.c:667
-msgid "All data on this partition should be backed-up"
-msgstr "Всички данни на този дял трябва да бъдат архивирани"
+msgid "Copy %s to %s"
+msgstr "Копиране на %s"
-#: ../../diskdrake/interactive.pm_.c:669
+#: ../../bootlook.pm:1
#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+msgid "Backup %s to %s.old"
msgstr ""
-"След промяна големината на дяла %s, данниte върху него ще бъдат загубени"
-
-#: ../../diskdrake/interactive.pm_.c:674
-msgid "Choose the new size"
-msgstr "Изберете нова големина"
-
-#: ../../diskdrake/interactive.pm_.c:675
-msgid "New size in MB: "
-msgstr "Нова големина в MB: "
-
-#: ../../diskdrake/interactive.pm_.c:728
-msgid "Which disk do you want to move it to?"
-msgstr "На кой диск искате да го преместите ?"
-
-#: ../../diskdrake/interactive.pm_.c:729
-msgid "Sector"
-msgstr "Сектор"
-
-#: ../../diskdrake/interactive.pm_.c:730
-msgid "Which sector do you want to move it to?"
-msgstr "На кой сектор искате да го преместите?"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving"
-msgstr "Местене"
-
-#: ../../diskdrake/interactive.pm_.c:733
-msgid "Moving partition..."
-msgstr "Мествя дяла ... "
-
-#: ../../diskdrake/interactive.pm_.c:750
-msgid "Choose an existing RAID to add to"
-msgstr "Изберете съществуващ RAID за прибавяне"
-
-#: ../../diskdrake/interactive.pm_.c:751 ../../diskdrake/interactive.pm_.c:768
-msgid "new"
-msgstr "нов"
-
-#: ../../diskdrake/interactive.pm_.c:766
-msgid "Choose an existing LVM to add to"
-msgstr "Изберете съществуващ LVM за прибавяне"
-
-#: ../../diskdrake/interactive.pm_.c:771
-msgid "LVM name?"
-msgstr "LVM име ?"
-
-#: ../../diskdrake/interactive.pm_.c:812
-msgid "This partition can't be used for loopback"
-msgstr "Този дял не може да бъде използван за loopback"
-
-#: ../../diskdrake/interactive.pm_.c:825
-msgid "Loopback"
-msgstr "Loopback"
-
-#: ../../diskdrake/interactive.pm_.c:826
-msgid "Loopback file name: "
-msgstr "Име на loopback файла: "
-#: ../../diskdrake/interactive.pm_.c:831
-msgid "Give a file name"
-msgstr "Дайте име на файл"
-
-#: ../../diskdrake/interactive.pm_.c:834
-msgid "File already used by another loopback, choose another one"
-msgstr "Файлът вече се използва то друг loopback, изберете друг файл."
-
-#: ../../diskdrake/interactive.pm_.c:835
-msgid "File already exists. Use it?"
-msgstr "Файлът вече съшествува. Да го използвам ли ?"
-
-#: ../../diskdrake/interactive.pm_.c:858
-msgid "Mount options"
-msgstr "Опции за mount:"
-
-#: ../../diskdrake/interactive.pm_.c:865
-msgid "Various"
-msgstr "Различни"
-
-#: ../../diskdrake/interactive.pm_.c:929 ../../standalone/drakfloppy_.c:76
-msgid "device"
-msgstr "устройство"
-
-#: ../../diskdrake/interactive.pm_.c:930
-msgid "level"
-msgstr "ниво"
-
-#: ../../diskdrake/interactive.pm_.c:931
-msgid "chunk size"
-msgstr "големина на парчето"
-
-#: ../../diskdrake/interactive.pm_.c:947
-msgid "Be careful: this operation is dangerous."
-msgstr "Внимание: тази операция е опасна"
-
-#: ../../diskdrake/interactive.pm_.c:962
-msgid "What type of partitioning?"
-msgstr "Какъв тип разделяне на дялове ?"
-
-#: ../../diskdrake/interactive.pm_.c:978
+#: ../../bootlook.pm:1
#, fuzzy, c-format
-msgid "The package %s is needed. Install it?"
-msgstr ""
-"Този пакет трябва да бъде обновен\n"
-"Сигурни ли сте, че искате да го изключите ?"
-
-#: ../../diskdrake/interactive.pm_.c:992
-msgid ""
-"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
-"1024).\n"
-"Either you use LILO and it won't work, or you don't use LILO and you don't "
-"need /boot"
-msgstr ""
-"Съжалявам, но не мога да приема да създам /boot толкова навътре върху диска "
-"(върху цилиндър > 1024).\n"
-"Или използвате LILO и то не работи, или не използвате LILO и нямате нужда "
-"от /boot"
+msgid "Create new theme"
+msgstr "Създай нов дял"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../bootlook.pm:1
+#, c-format
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"
+"Display theme\n"
+"under console"
msgstr ""
-"Дялът, който сте маркирали за root (/) е физически разположен отвъд\n"
-"1024-ия цилиндър на твърдия диск и нямате /boot дял.\n"
-"Ако смятате да използвате boot мениджъра LILO, бъдете внимателни при\n"
-"прибавянето на /boot дял"
-#: ../../diskdrake/interactive.pm_.c:1002
-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 ""
-"Маркирали сте софтуерен RAID дял като root (/).\n"
-"Няма зареждаща програма, която да може да се справи с него без /boot дял.\n"
-"Така че добавете /boot дял"
+#: ../../bootlook.pm:1
+#, fuzzy, c-format
+msgid "Install themes"
+msgstr "Инсталиране на системата"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../bootlook.pm:1
#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Таблицата на дяловете на устройство %s ще бъде записана върху диска !"
-
-#: ../../diskdrake/interactive.pm_.c:1026
-msgid "You'll need to reboot before the modification can take place"
-msgstr "Трябва да рестартирате, преди промените да влязат в сила"
+msgid "Lilo/grub mode"
+msgstr "Режим на Lilo/grub"
-#: ../../diskdrake/interactive.pm_.c:1037
+#: ../../bootlook.pm:1
#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "След форматиране на дяла %s, всички данни върху него ще бъдат загубени"
-
-#: ../../diskdrake/interactive.pm_.c:1039
-msgid "Formatting"
-msgstr "Форматиране"
+msgid "Yaboot mode"
+msgstr "Режим на Yaboot"
-#: ../../diskdrake/interactive.pm_.c:1040
+#: ../../bootlook.pm:1
#, c-format
-msgid "Formatting loopback file %s"
-msgstr "Форматиране на loopback файла %s"
+msgid "Launch Aurora at boot time"
+msgstr "Пусни Aurora при стартиране"
-#: ../../diskdrake/interactive.pm_.c:1041
-#: ../../install_steps_interactive.pm_.c:466
+#: ../../bootlook.pm:1
#, c-format
-msgid "Formatting partition %s"
-msgstr "Форматиране на дяла %s"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-msgid "Hide files"
-msgstr "Скрий файловете"
-
-#: ../../diskdrake/interactive.pm_.c:1052
-msgid "Move files to the new partition"
-msgstr "Премести файловете на нов дял"
+msgid "Traditional Gtk+ Monitor"
+msgstr "Обикновен Gtk+ монитор"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../bootlook.pm:1
#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
-msgstr ""
-"Директорията %s вече съдържа някакви данни\n"
-"(%s)"
-
-#: ../../diskdrake/interactive.pm_.c:1064
-msgid "Moving files to the new partition"
-msgstr "Премести файловете на нов дял"
+msgid "Traditional Monitor"
+msgstr "Обикновен монитор"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../bootlook.pm:1
#, c-format
-msgid "Copying %s"
-msgstr "Копиране на %s"
+msgid "NewStyle Monitor"
+msgstr "NewStyle монитор"
-#: ../../diskdrake/interactive.pm_.c:1072
+#: ../../bootlook.pm:1
#, c-format
-msgid "Removing %s"
-msgstr "Изтриване на %s"
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle категоризиран монитор"
-#: ../../diskdrake/interactive.pm_.c:1082
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
-msgid "partition %s is now known as %s"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:1103
-#: ../../diskdrake/interactive.pm_.c:1162
-msgid "Device: "
-msgstr "Устройство: "
+msgid "<control>Q"
+msgstr "<control>Q"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/logdrake:1
#, c-format
-msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Буква на устройството под DOS: %s (просто предположение)\n"
-
-#: ../../diskdrake/interactive.pm_.c:1108
-#: ../../diskdrake/interactive.pm_.c:1116
-#: ../../diskdrake/interactive.pm_.c:1181
-msgid "Type: "
-msgstr "Вид: "
+msgid "/File/_Quit"
+msgstr "/Файл/_Изход"
-#: ../../diskdrake/interactive.pm_.c:1112
-msgid "Name: "
-msgstr "Име: "
+#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
+#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
+#, c-format
+msgid "/_File"
+msgstr "/_Файл"
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../bootlook.pm:1
#, c-format
-msgid "Start: sector %s\n"
-msgstr "Начало: сектор %s\n"
+msgid "Boot Style Configuration"
+msgstr "Настройка на начина на стартиране"
-#: ../../diskdrake/interactive.pm_.c:1121
+#: ../../common.pm:1
#, c-format
-msgid "Size: %s"
-msgstr "Размер: %s"
+msgid "consolehelper missing"
+msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1123
+#: ../../common.pm:1
#, c-format
-msgid ", %s sectors"
-msgstr ", %s сектора"
+msgid "kdesu missing"
+msgstr "липсва kdesu"
-#: ../../diskdrake/interactive.pm_.c:1125
+#: ../../common.pm:1
#, fuzzy, c-format
-msgid "Cylinder %d to %d\n"
-msgstr "От цилиндър %d до цилиндър %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1126
-msgid "Formatted\n"
-msgstr "Форматиран\n"
-
-#: ../../diskdrake/interactive.pm_.c:1127
-msgid "Not formatted\n"
-msgstr "Неформатиран\n"
+msgid "Screenshots will be available after install in %s"
+msgstr "Можете да изберете други езици, които ще бъдат налице слединсталацията"
-#: ../../diskdrake/interactive.pm_.c:1128
-msgid "Mounted\n"
-msgstr "Монтиран\n"
+#: ../../common.pm:1
+#, fuzzy, c-format
+msgid "Can't make screenshots before partitioning"
+msgstr "Не мога да добавя повече дялове"
-#: ../../diskdrake/interactive.pm_.c:1129
+#: ../../common.pm:1
#, c-format
-msgid "RAID md%s\n"
-msgstr "RAID md%s\n"
+msgid "%d seconds"
+msgstr "%d секунди"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../common.pm:1
#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-msgstr ""
-"Loopback файл(ове):\n"
-" %s\n"
-
-#: ../../diskdrake/interactive.pm_.c:1132
-msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-msgstr ""
-"Дял, който се стартира по подразбиране\n"
-" (за MS-DOS boot, не за lilo)\n"
+msgid "1 minute"
+msgstr "1 минута"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../common.pm:1
#, c-format
-msgid "Level %s\n"
-msgstr "Ниво %s\n"
+msgid "%d minutes"
+msgstr "%d минути"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../common.pm:1
#, c-format
-msgid "Chunk size %s\n"
-msgstr "Размер на парчето %s\n"
+msgid "TB"
+msgstr "ТБ"
-#: ../../diskdrake/interactive.pm_.c:1136
+#: ../../common.pm:1
#, c-format
-msgid "RAID-disks %s\n"
-msgstr "RAID-дискове %s\n"
+msgid "GB"
+msgstr "ГБ"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../common.pm:1
#, c-format
-msgid "Loopback file name: %s"
-msgstr "Име на loopback файла: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1141
-msgid ""
-"\n"
-"Chances are, this partition is\n"
-"a Driver partition, you should\n"
-"probably leave it alone.\n"
-msgstr ""
-"\n"
-"Вероятно е този дял да е\n"
-"Драйвер-дял, може би трябва\n"
-"трябва да го оставите.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1144
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-msgstr ""
-"\n"
-"Тази специална стартираща\n"
-"ивица на дяла е за двойно\n"
-"стартиране на системата ви.\n"
-
-#: ../../diskdrake/interactive.pm_.c:1163
-msgid "Read-only"
-msgstr ""
+msgid "MB"
+msgstr "МБ"
-#: ../../diskdrake/interactive.pm_.c:1164
+#: ../../common.pm:1
#, c-format
-msgid "Size: %s\n"
-msgstr "Размер: %s\n"
+msgid "KB"
+msgstr "КБ"
-#: ../../diskdrake/interactive.pm_.c:1165
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n"
+msgid "United States"
+msgstr "САЩ"
-#: ../../diskdrake/interactive.pm_.c:1166
-msgid "Info: "
-msgstr "Информация: "
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Austria"
+msgstr "серийна"
-#: ../../diskdrake/interactive.pm_.c:1167
-#, c-format
-msgid "LVM-disks %s\n"
-msgstr "LVM-дискове %s\n"
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#: ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Italy"
+msgstr "Италианска"
-#: ../../diskdrake/interactive.pm_.c:1168
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
-msgid "Partition table type: %s\n"
-msgstr "Тип на таблицата с дялове: %s\n"
+msgid "Netherlands"
+msgstr "Холандия"
-#: ../../diskdrake/interactive.pm_.c:1169
+#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "на шина %d адрес %d\n"
+msgid "Sweden"
+msgstr "Виж"
-#: ../../diskdrake/interactive.pm_.c:1199
-#, fuzzy
-msgid "Filesystem encryption key"
-msgstr "Вид файлова система: "
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Norway"
+msgstr "Норвежка"
-#: ../../diskdrake/interactive.pm_.c:1200
-msgid "Choose your filesystem encryption key"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Greece"
+msgstr "Гръцка"
-#: ../../diskdrake/interactive.pm_.c:1203
+#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
+msgid "Germany"
+msgstr "Немска"
-#: ../../diskdrake/interactive.pm_.c:1204
-#, fuzzy
-msgid "The encryption keys do not match"
-msgstr "Паролите на съвпадат"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Czech Republic"
+msgstr "Чешка Република"
-#: ../../diskdrake/interactive.pm_.c:1207
-msgid "Encryption key"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "Belgium"
+msgstr "Белгийска"
-#: ../../diskdrake/interactive.pm_.c:1208
-msgid "Encryption key (again)"
-msgstr ""
+#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "France"
+msgstr "Франция"
-#: ../../diskdrake/removable.pm_.c:47
-msgid "Change type"
-msgstr "Промяни типа"
+#: ../../crypto.pm:1 ../../lang.pm:1
+#, c-format
+msgid "Costa Rica"
+msgstr "Коста Рика"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#: ../../fsedit.pm:1
#, c-format
-msgid "Can't login using username %s (bad password?)"
-msgstr ""
+msgid "Error opening %s for writing: %s"
+msgstr "Грешка при отваряне на %s за запис: %s"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
-msgid "Domain Authentication Required"
-msgstr "Идентификация"
+#: ../../fsedit.pm:1
+#, c-format
+msgid "Nothing to do"
+msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
-msgid "Another one"
-msgstr "Интернет"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid "Not enough free space for auto-allocating"
+msgstr "Няма достатъчно място за автоматично заемане"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
-msgid "Which username"
-msgstr "Потребителско име"
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
+msgid "You can't use an encrypted file system for mount point %s"
+msgstr "Не можете да използвате LVM логически тип за място на монтиране %s"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+#: ../../fsedit.pm:1
+#, fuzzy, c-format
msgid ""
-"Please enter your username, password and domain name to access this host."
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
+"Нуждаете се от истинска файлова система (ext2, reiserfs) за тази точка на "
+"монтиране\n"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3477
-#, 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:547 ../../fs.pm_.c:557 ../../fs.pm_.c:561 ../../fs.pm_.c:565
-#: ../../fs.pm_.c:569 ../../fs.pm_.c:573
+#: ../../fsedit.pm:1
#, c-format
-msgid "%s formatting of %s failed"
-msgstr "%s форматиране от %s провалено"
+msgid "This directory should remain within the root filesystem"
+msgstr "Тази директория трябва да остане в рамките на root файловата система."
-#: ../../fs.pm_.c:610
+#: ../../fsedit.pm:1
#, c-format
-msgid "I don't know how to format %s in type %s"
-msgstr "не знам как да форматирам %s в тип %s"
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Не можете да използвате LVM логически тип за място на монтиране %s"
-#: ../../fs.pm_.c:684 ../../fs.pm_.c:727
+#: ../../fsedit.pm:1
#, c-format
-msgid "mounting partition %s in directory %s failed"
-msgstr ""
+msgid "There is already a partition with mount point %s\n"
+msgstr "Вече има дял с тази място на монтиране %s\n"
-#: ../../fs.pm_.c:742 ../../partition_table.pm_.c:599
+#: ../../fsedit.pm:1
#, c-format
-msgid "error unmounting %s: %s"
-msgstr "грешка при демонтирането на %s: %s"
-
-#: ../../fsedit.pm_.c:21
-msgid "simple"
-msgstr "прост"
+msgid "Mount points must begin with a leading /"
+msgstr "Точките на монтиране трябва да започват с /"
-#: ../../fsedit.pm_.c:25
-msgid "with /usr"
-msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
-#: ../../fsedit.pm_.c:30
-msgid "server"
-msgstr "сървър"
+#: ../../fsedit.pm:1
+#, c-format
+msgid "You can't use JFS for partitions smaller than 16MB"
+msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-#: ../../fsedit.pm_.c:240
+#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
@@ -2428,744 +1198,344 @@ msgstr ""
"Друго решение е да забраните на DrakX поправя таблицата с дялове.\n"
"(грешката е %s)\n"
-#: ../../fsedit.pm_.c:501
-msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-
-#: ../../fsedit.pm_.c:502
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
-
-#: ../../fsedit.pm_.c:521
-msgid "Mount points must begin with a leading /"
-msgstr "Точките на монтиране трябва да започват с /"
-
-#: ../../fsedit.pm_.c:522
-#, c-format
-msgid "There is already a partition with mount point %s\n"
-msgstr "Вече има дял с тази място на монтиране %s\n"
-
-#: ../../fsedit.pm_.c:526
+#: ../../fsedit.pm:1
#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
-msgstr "Не можете да използвате LVM логически тип за място на монтиране %s"
-
-#: ../../fsedit.pm_.c:528
-msgid "This directory should remain within the root filesystem"
-msgstr "Тази директория трябва да остане в рамките на root файловата система."
-
-#: ../../fsedit.pm_.c:530
-#, 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:532
-#, fuzzy, c-format
-msgid "You can't use an encrypted file system for mount point %s"
-msgstr "Не можете да използвате LVM логически тип за място на монтиране %s"
-
-#: ../../fsedit.pm_.c:599
-#, fuzzy
-msgid "Not enough free space for auto-allocating"
-msgstr "Няма достатъчно място за автоматично заемане"
-
-#: ../../fsedit.pm_.c:601
-msgid "Nothing to do"
-msgstr ""
+msgid "server"
+msgstr "сървър"
-#: ../../fsedit.pm_.c:694
+#: ../../fsedit.pm:1
#, c-format
-msgid "Error opening %s for writing: %s"
-msgstr "Грешка при отваряне на %s за запис: %s"
-
-#: ../../harddrake/data.pm_.c:71
-msgid "cpu /* "
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:170
-msgid "No alternative driver"
+msgid "with /usr"
msgstr ""
-#: ../../harddrake/sound.pm_.c:171
+#: ../../fsedit.pm:1
#, c-format
-msgid ""
-"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
-"currently uses \"%s\""
-msgstr ""
+msgid "simple"
+msgstr "прост"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
-msgid "Sound configuration"
-msgstr "Настройка"
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Enabling swap partition %s"
+msgstr "Форматиране на дяла %s"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
-msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)."
-msgstr ""
+msgid "error unmounting %s: %s"
+msgstr "грешка при демонтирането на %s: %s"
-#: ../../harddrake/sound.pm_.c:176
+#: ../../fs.pm:1
#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is "
-"\"%s\")"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
-#, fuzzy
-msgid "Driver:"
-msgstr "Драйвер"
-
-#: ../../harddrake/sound.pm_.c:183 ../../standalone/drakTermServ_.c:303
-#: ../../standalone/drakbackup_.c:3878 ../../standalone/drakbackup_.c:3911
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3964
-#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4030
-#: ../../standalone/drakbackup_.c:4051 ../../standalone/drakbackup_.c:4078
-#: ../../standalone/drakbackup_.c:4108 ../../standalone/drakbackup_.c:4134
-#: ../../standalone/drakbackup_.c:4157 ../../standalone/drakfont_.c:690
-#, fuzzy
-msgid "Help"
-msgstr "/_Помощ"
-
-#: ../../harddrake/sound.pm_.c:185
-msgid "Switching between ALSA and OSS help"
-msgstr ""
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Mounting partition %s"
+msgstr "Форматиране на дяла %s"
-#: ../../harddrake/sound.pm_.c:186
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independant "
-"sound API (it's available on most unices systems) but it's a very basic and "
-"limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
-"which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using "
-"the ALSA library.\n"
-msgstr ""
+#: ../../fs.pm:1
+#, fuzzy, c-format
+msgid "Checking %s"
+msgstr "Копиране на %s"
-#: ../../harddrake/sound.pm_.c:202
+#: ../../fs.pm:1
#, c-format
-msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oopses the kernel on unloading.\n"
-"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
-msgstr ""
-
-#: ../../harddrake/sound.pm_.c:205 ../../standalone/drakconnect_.c:298
-msgid "Please Wait... Applying the configuration"
-msgstr "Моля, почакайте ... Прилагане на настройките"
-
-#: ../../harddrake/sound.pm_.c:205 ../../interactive.pm_.c:382
-#: ../../standalone/drakxtv_.c:108 ../../standalone/harddrake2_.c:113
-#: ../../standalone/service_harddrake_.c:64
-msgid "Please wait"
-msgstr "Моля изчакайте"
-
-#: ../../harddrake/sound.pm_.c:210
-msgid "No known driver"
-msgstr ""
+msgid "Formatting partition %s"
+msgstr "Форматиране на дяла %s"
-#: ../../harddrake/sound.pm_.c:211
+#: ../../fs.pm:1
#, c-format
-msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgid "Creating and formatting file %s"
+msgstr "Създаване и форматиране на файла %s"
-#: ../../harddrake/sound.pm_.c:214
-#, fuzzy
-msgid "Unkown driver"
-msgstr "Неизвестен модел"
+#: ../../fs.pm:1
+#, c-format
+msgid "I don't know how to format %s in type %s"
+msgstr "не знам как да форматирам %s в тип %s"
-#: ../../harddrake/sound.pm_.c:215
+#: ../../fs.pm:1
#, c-format
+msgid "%s formatting of %s failed"
+msgstr "%s форматиране от %s провалено"
+
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"The \"%s\" driver for your sound card is unlisted\n"
+"Click on \"Next ->\" if you want to delete all data and partitions present\n"
+"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
+"be able to recover any data and partitions present on this hard drive,\n"
+"including any Windows data.\n"
"\n"
-"Please send the output of the \"lspcidrake -v\" command to\n"
-"<install at mandrakesoft dot com>\n"
-"with subject: unlisted sound driver \"%s\""
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:14 ../../harddrake/v4l.pm_.c:64
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Използвай автоматично засичане"
-
-#: ../../harddrake/v4l.pm_.c:65 ../../harddrake/v4l.pm_.c:198
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Общ"
-
-#: ../../harddrake/v4l.pm_.c:97
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:98
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+"Click on \"<- Previous\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
+"Цъкнете \"OK\", ако искате да изтриете всички данни и\n"
+"дялове съществуващи на този твърд диск. Внимание, след цъкане на \"OK\", "
+"нямада можете да възстановите каквито и да било данни и дялове съществуващи "
+"на този твърд диск,\n"
+"включително каквито и да е Windows данни.\n"
+"\n"
+"Цъкнете \"Отмяна\", за да отмените тази операция без загуба да данните и\n"
+"дяловете съществуващи на този твърд диск."
-#: ../../harddrake/v4l.pm_.c:224
+#: ../../help.pm:1
+#, c-format
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:227
-#, fuzzy
-msgid "Card model:"
-msgstr "Памет (DMA) на картата"
-
-#: ../../harddrake/v4l.pm_.c:228
-#, fuzzy
-msgid "Tuner type:"
-msgstr "Промяни типа"
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "Number of capture buffers:"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:229
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:231
-#, fuzzy
-msgid "PLL setting:"
-msgstr "Форматиране"
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "Radio support:"
-msgstr ""
-
-#: ../../harddrake/v4l.pm_.c:232
-msgid "enable radio support"
+"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 ""
+"Изберете твърдия диск, който искате да изтрете, за да\n"
+"инсталирам новия ви Mandrake Linux дял. Внимание, всички данни на него ще "
+"бъдат загубени\n"
+"и няма да могат да се възстановят."
-#: ../../help.pm_.c:13
+#: ../../help.pm:1
+#, c-format
msgid ""
-"GNU/Linux is a multiuser system, and this means that each user can have his\n"
-"own preferences, his own files and so on. You can read the ``User Guide''\n"
-"to learn more this concept. But unlike \"root\", which is the\n"
-"administrator, the users you add here will not be entitled to change\n"
-"anything except their own files and their own configurations. You will have\n"
-"to create at least one regular user for yourself. That account is where you\n"
-"should log in for routine use. Although it is very practical to log in as\n"
-"\"root\" everyday, it may also be very dangerous! The slightest mistake\n"
-"could mean that your system would not work any more. If you make a serious\n"
-"mistake as a regular user, you may only lose some information, but not the\n"
-"entire system.\n"
-"\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\n"
-"first 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"
-"system. You can change it. You then have to enter a password here. A\n"
-"non-privileged (regular) user's password is not as crucial as the \"root\"\n"
-"one from a security point of view, but that is no reason to neglect it:\n"
-"after all, your files are at risk.\n"
-"\n"
-"If you click on \"Accept user\", you can then add as many as you want. Add\n"
-"a user for each one of the people meant to use that computer. When you are\n"
-"finish adding all the users you want, select \"Done\".\n"
-"\n"
-"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
-"for that user (bash by default).\n"
-"\n"
-"When you are finished adding all users, you will be proposed to choose a\n"
-"user which can automatically log into the system when the computer boots\n"
-"up. If you are interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click \"Yes\".\n"
-"If you are not interested in this feature, click \"No\"."
-msgstr ""
-"GNU/Linux е многопотребителска система, която означава, че всеки потребител "
-"може\n"
-"да има свои предпочетания, файлове и т.н.. можете да прочетете Ръковоството "
-"на\n"
-"Потребителя, за да научите повече.\n"
-"За разлика от Root, който е администраторът, потребителите, които ще "
-"добавите тук\n"
-"няма да могат да променят нищо освен собствените си файлове и техните "
-"настройки.\n"
-"Ще трябва да създадете поне един обикновен потребител за себе си.\n"
-"С този акаунт ще трябва да влизате за рутинна дейност. Въпреки това "
-"практиката\n"
-"да влизате като root ежедневно, може да бъде много опасна ! И най-"
-"малкатагрешка\n"
-"може да означава, че системата ви няма да работи повече. Ако направите някоя "
-"сериозна\n"
-"грешка като потребител, това може са да доведе до загуба на част от "
-"информацията,\n"
-"но не и на цялата система.\n"
+"As a review, DrakX will present a summary of various information it has\n"
+"about your system. Depending on your installed hardware, you may have some\n"
+"or all of the following entries:\n"
"\n"
-"Първо, трябва да си въведете името. Това не е задължително, разбира се, "
-"всъщност\n"
-"можете да въведете каквото и да е. DrakX след това ще избере първата "
-"въведена\n"
-"в кутийката дума и ще го изкара като потребителско име. Това е името, с "
-"което\n"
-"всъщност определеният потребител ще влиза в системата. Можете да го "
-"промените.\n"
-"Трябва да въведете и парола тук. Паролата на непревилегирован (обикновен) "
-"потребител\n"
-"не е толкова фатална като тази на Root от гледна точка на сигурността, но "
-"все\n"
-"пак няма причина да я подценявата, тъй като рискувате файловете си.\n"
-"\n"
-"След като цъкнете на \"Приеми потребител\", можете да добавите колкото си "
-"искате.\n"
-"Добавете по един потребител за всеки от приятелите си: баща си, сестра си, "
-"например.\n"
-"Когато сте добавили всички потребители, които искате, цъкнете Готово.\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-"Цъкнете на бутона \"Напредничав\", за да промените обвивката по подразбиране "
-"на\n"
-"потребителя (bash по подразбиране)."
-
-#: ../../help.pm_.c:48
-msgid ""
-"Listed above are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, they are good for most common\n"
-"installations. If you make any changes, you must at least define a root\n"
-"partition (\"/\"). Do not choose too small a partition or you will not be\n"
-"able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
+" * \"Keyboard\": check the current keyboard map configuration and click on\n"
+"the button to change that if necessary.\n"
"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+" * \"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one.\n"
"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+"primary language you have chosen. But here, just as in your choice of a\n"
+"keyboard, you may not be in the country for which the chosen language\n"
+"should correspond. You may need to click on the \"Timezone\" button to\n"
+"configure the clock for the correct timezone.\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" resolution. If that does not suits you, click on\n"
+"the button to reconfigure your grapical interface.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now, you can by clicking on this button.\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+" * \"Sound card\": if a sound card is detected on your system, it is\n"
+"displayed here. If you notice the sound card displayed is not the one that\n"
+"is actually present on your system, you can click on the button and choose\n"
+"another driver.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+"here. If you have a TV card and it is not detected, click on the button to\n"
+"try to configure it manually.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+"displayed here. You can click on the button to change the parameters\n"
+"associated with the card."
msgstr ""
-"По-горе са изброени засечените Linux дялове съществуващи\n"
-"на твърдия ви диск. Можете да запазите избора направен от магьосника, те са\n"
-"добри за обща употреба. Ако ги промените, трябва да поне да определите\n"
-"root дял (\"/\"). Не избирайте прекалено малки дялове, защото няма да "
-"можете\n"
-"да инсталирате достатъчно софтуер. Ако искате да съхранявате данните си на\n"
-"отделен дял, трябва да изберете \"/home\" (възможно е само, ако имате "
-"повече\n"
-"от един Linux дял).\n"
-"\n"
-"\n"
-"За информация, всеки дял е показан, както следва: \"Име\", \"Капацитет\".\n"
-"\n"
-"\n"
-"\"Името\" се кодира както следва: \"тип на диска\", \"номер на диска\",\n"
-"\"номер на дял\" (например, \"hda1\").\n"
-"\n"
-"\n"
-"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
-"е\n"
-"SCSI твърд диск.\n"
-"\n"
-"\n"
-"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
-"дискове:\n"
-"\n"
-" * \"a\" означава \"master диск на първия IDE контролер\",\n"
-" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
-" * \"c\" означава \"master диск на втория IDE контролер\",\n"
-" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
-"\n"
-"\n"
-"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
-"\"втори твърд диск\" и т.н.."
-#: ../../help.pm_.c:79
+#: ../../help.pm:1
+#, c-format
msgid ""
-"The Mandrake Linux installation is spread out over several CD-ROMs. DrakX\n"
-"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."
+"\"Sound card\": if a sound card is detected on your system, it is displayed\n"
+"here. If you notice the sound card displayed is not the one that is\n"
+"actually present on your system, you can click on the button and choose\n"
+"another driver."
msgstr ""
-"Инсталацията на Mandrake Linux е разположена на няколко CDROM-а. DrakX\n"
-"знае дали избран пакет не се намира на друг CDROM или ще извади текущото\n"
-"CD и ще ви остави да вкарате това, от което има нужда."
-#: ../../help.pm_.c:84
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"you are not supposed to know them all by heart.\n"
-"\n"
-"If you are performing a standard installation from a CD-ROM, you will first\n"
-"be asked to specify the CDs you currently have (in Expert mode only). Check\n"
-"the CD labels and highlight the boxes corresponding to the CDs you have\n"
-"available for installation. Click \"OK\" when you are ready to continue.\n"
-"\n"
-"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,\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"
+"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
+"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
+"detected and installed in the bootloader menu. If this is not the case, you\n"
+"can add an entry by hand in this screen. Be careful to choose the correct\n"
+"parameters.\n"
"\n"
-" * \"Server\": if your machine is intended to be a server, you will be able\n"
-"to select which of the most common services you wish to install on your\n"
-"machine;\n"
+"Yaboot's main options are:\n"
"\n"
-" * \"Graphical Environment\": finally, this is where you will choose your\n"
-"preferred graphical environment. At least one must be selected if you want\n"
-"to have a graphical workstation!\n"
+" * Init Message: a simple text message displayed before the boot prompt.\n"
"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you unselect all groups when performing a regular\n"
-"installation (by opposition to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information.\n"
"\n"
-" * \"With X\": install the fewest packages possible to have a working\n"
-"graphical desktop;\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
-" * \"With basic documentation\": installs the base system plus basic\n"
-"utilities and their documentation. This installation is suitable for\n"
-"setting up a server;\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second before your\n"
+"default kernel description is selected;\n"
"\n"
-" * \"Truly minimal install\": will install the strict minimum necessary to\n"
-"get a working Linux system, in command line only. This installation is\n"
-"about 65Mb large.\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt.\n"
"\n"
-"You can check the \"Individual package selection\" box, which is useful if\n"
-"you are familiar with the packages being offered or if you want to have\n"
-"total control over what will be installed.\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt.\n"
"\n"
-"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
-"groups to avoid installing any new package. This is useful to repair or\n"
-"update an existing system."
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-"Сега е моментът да определите кои програми искате да бъдат инсталирани на\n"
-"системата ви. В Mandrake Linux дистрибуцията има хиляди пакети, но не е\n"
-"задължително да ги знаете наизуст.\n"
-"\n"
-"Ако извършвате стандартна инстлация от CDROM, първо ще бъдете попитани кои\n"
-"CD-та имате (в Експертен режим). Проверете заглавията на CD-тата и посочете\n"
-"кутийките съответстващи на CD-тата, с които разполагате. Цъкнете \"OK\",\n"
-"когато сте готови да продължите.\n"
-"\n"
-"Пакетите са подредени в групи съответстващи на практическата употреба на\n"
-"машината ви. Групите, сами по себе си, са подредени в четири секции:\n"
-"\n"
-" * \"Работна станция\": ако смятате да използвате машината си като работна "
-"станция,\n"
-"изберете една или повече съответните групи.\n"
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"You can add additional entries in yaboot for other operating systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
"\n"
-" * \"Разработка\": ако машината ви ще бъде използване за програмиране, "
-"изберете\n"
-"желаната(ите) група(и).\n"
+"For other OSs, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
"\n"
-" * \"Сървър\": накрая, ако машината ви ще бъде използвана за сървър, ще\n"
-"можете да изберете кои от най-често използваните услуги искате да имате\n"
-"инсталирани на машината.\n"
+"For Linux, there are a few possible options:\n"
"\n"
-" * \"Графична среда\": тук можете да изберете предпочитаната графична "
-"среда.\n"
-"Поне една трябва да бъде избрана, ако искате да имате графична среда !\n"
+" * Label: this is the name you will have to type at the yaboot prompt to\n"
+"select this boot option.\n"
"\n"
-"Премествайки курсора на мишната над името на групата, ще видите кратък\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"
"\n"
-"Можете да цъкнете кутийката \"Индивидуален избор на пакети\", която е "
-"полезна,\n"
-"ако сте запознати с пакетите, които ще ви бъдат предложени или ако искате "
-"да\n"
-"имате пълен контрол над това, което да бъде инсталирано.\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
-"Ако сте започнали инсталацията в режим на \"Обновяване\", можете да "
-"изключите\n"
-"всички групи, за да избегнете инсталирането на нови пакети. Това е полезно\n"
-"при поправка или обновяване на съществуващата система."
-
-#: ../../help.pm_.c:135
-msgid ""
-"Finally, depending on whether or not you chose to be able to select\n"
-"individual packages, you will be presented a tree containing all packages\n"
-"classified by groups and subgroups. While browsing the tree, you can select\n"
-"entire groups, subgroups, or individual packages.\n"
+" * Append: on Apple hardware, the kernel append option is often used to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button\n"
+"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
+"The following are some examples:\n"
"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right. When your selection is finished, click the \"Install\" button which\n"
-"will then launch the installation process. Depending on the speed of your\n"
-"hardware and the number of packages that need to be installed, it may take\n"
-"a while to complete the process. An installation time estimate is displayed\n"
-"on the screen, to help you gauge if there is sufficient time to enjoy a cup\n"
-"of coffee.\n"
-"\n"
-"!! If a server package has been selected, either intentionally or because\n"
-"it was part of a whole group, you will be asked to confirm that you really\n"
-"want those servers to be installed. Under Mandrake Linux, any installed\n"
-"servers are started by default at boot time. Even if they are safe and have\n"
-"no known issues at the time the distribution was shipped, it may happen\n"
-"that security holes are discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"No\". Clicking \"Yes\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default. !!\n"
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+"hda=autotune\n"
"\n"
-"The \"Automatic dependencies\" option simply disables the warning dialog\n"
-"which appears whenever the installer automatically selects a package. This\n"
-"occurs because it has determined that it needs to satisfy a dependency with\n"
-"another package in order to successfully complete the installation.\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-"The tiny floppy disk icon at the bottom of the list allows to load the\n"
-"package list chosen during a previous installation. Clicking on this icon\n"
-"will ask you to insert a floppy disk previously created at the end of\n"
-"another installation. See the second tip of the previous step on how to\n"
-"create such a floppy disk."
-msgstr ""
-"Накрая, в зависимост от избора ви дали да избирате пакети един по един, ще\n"
-"ви бъде представено дърво съдържащо всички пакети подредени по групи и\n"
-"подргрупи. Докато обхождате дървото, можете да изберете цели групи, "
-"подгрупи\n"
-"или отделни пакети.\n"
+" * Initrd: this option can be used either to load initial modules before\n"
+"the boot device is available, or to load a ramdisk image for an emergency\n"
+"boot situation.\n"
"\n"
-"Когато посочите пакет от дървото, ще се появи описание вдясно. Когато\n"
-"изборът е приключен, цъкнете бутона \"Инсталирай\", който ще пусне процеса\n"
-"на инсталация. В зависимост от скоростта на хардуера ви и броя на пакетите,\n"
-"които искате да бъдат инсталирани, процесът може да отнеме известно време.\n"
-"Очакваното време за приключване на процеса, че бъде показано на екрата, за\n"
-"да ви помогне да прецените дали имате достатъчно време да се насладите на\n"
-"чаша кафе.\n"
+" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
+"need to allocate a large ramdisk, this option can be used to specify a\n"
+"ramdisk larger than the default.\n"
"\n"
-"!! Ако е избран сървърен пакет, било то умишлено или защото е част от цяла\n"
-"група, ще бъдете помолени за потвърждение, че наистина искате този сървър\n"
-"да бъде инсталиран. В Mandrake Linux, всички сървъри тръгват по "
-"подразбиране\n"
-"при зареждане.Даже ако са сигурни и нямат известни проблеми, когато\n"
-"дистрибуцията се разпространява, може да се случи така, че да се появят\n"
-"дупки в сигурността, след като версията на Mandrake Linux е завършена. Ако\n"
-"не знаете за какво служи определена услуга или защо е инсталирана, цъкнете\n"
-"\"Не\". С цъкане на \"Да\" ще инсталирате изброени услуги и те ще бъдат\n"
-"стартирани автоматично по подразбиране. !!\n"
+" * Read-write: normally the \"root\" partition is initially mounted as\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"You can override the default with this option.\n"
"\n"
-"Опцията \"Автоматични зависимости\" изключва предупредителните диалози,\n"
-"когато инсталаторът авоматично реши избере пакет. Това се случва, защото\n"
-"е решил, че се нуждае да задоволи зависимост с друг пакет, за да приключи\n"
-"успешно инсталацията.\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support.\n"
"\n"
-"Малката иконка на дискетка в дъното на списъка позволява да заредите списък\n"
-"с пакети от предишна инсталация. Ако цъкнете на тази иконка, ще бъдете\n"
-"помолени да вкарате дискета създадена преди това в края на друга "
-"инсталация.\n"
-"Вижте втората подсказка по време на последната стъпка, за това как да\n"
-"създадете такава дискета."
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
+"highlighted with a ``*'' if you press [Tab] to see the boot selections."
+msgstr ""
-#: ../../help.pm_.c:171
-#, fuzzy
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You are now able to set up your Internet/network connection. If you wish to\n"
-"connect your computer to the Internet or to a local network, click \"OK\".\n"
-"The autodetection of network devices and modem will be launched. If this\n"
-"detection fails, uncheck the \"Use auto-detection\" box next time. You may\n"
-"also choose not to configure the network, or do it later; in that case,\n"
-"simply click the \"Cancel\" button.\n"
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Available connections are: traditional modem, ISDN modem, ADSL connection,\n"
-"cable modem, and finally a simple LAN connection (Ethernet).\n"
+"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
+"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
+"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
+"your machine. If you're not sure, you can check the list of hardware\n"
+"detected in your machine by selecting \"See hardware info \" and clicking\n"
+"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
+"->\" button to return to the SCSI interface question.\n"
"\n"
-"Here, we will not detail each configuration. Simply make sure that you have\n"
-"all the parameters from your Internet Service Provider or system\n"
-"administrator.\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
"\n"
-"You can consult the ``Starter Guide'' chapter about Internet connections\n"
-"for details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection.\n"
-"\n"
-"If you wish to configure the network later after installation, or if you\n"
-"are finished configuring your network connection, click \"Cancel\"."
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
msgstr ""
-"Ако искате да свържете компютъра си към Интернет или към локална мрежа, "
-"моля\n"
-"изберете подходящата опция. Моля, включете устройството си преди да "
-"изберете\n"
-"опцията, за да дадете възможност на DrakX да го засече.\n"
-"\n"
-"Mandrake Linux извършва настройката на Интернет връзката по време на\n"
-"инсталация. Достъпните връзки: обикновен модем, ISDN модем, ADSL връзка,\n"
-"кабелен модем и накрая обикновена LAN връзка (Ethernet).\n"
-"\n"
-"Тук няма подробно да разглеждаме всяка настройка. Просто бъдете сигурни, че\n"
-"имате достатъчно данни от Интернет доставчика си или системния\n"
-"админситратор.\n"
-"\n"
-"Можете да се консултирате с главата в ръководството за Интернет връзките за\n"
-"подробности за настройката или просто изчакайте системата ви да бъде\n"
-"инсталирана и използвайте програмата описана там, за да настроите връзката.\n"
-"\n"
-"Ако искате да настроите мрежата по-късно след инсталация или ако сте "
-"свършили\n"
-"с настройката на мрежата, цъкнете \"Отказ\"."
-#: ../../help.pm_.c:193
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You may now choose which services you wish to start at boot time.\n"
-"\n"
-"Here are listed all the services available with the current installation.\n"
-"Review them carefully and uncheck those which are not always needed at boot\n"
-"time.\n"
+"Now, it's time to select a printing system for your computer. Other OSs may\n"
+"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
+"is best for a particular type of configuration.\n"
+"\n"
+" * \"pdq\" -- which is an acronym for ``print, don't queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
+"\" will handle only very simple network cases and is somewhat slow when\n"
+"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"first experience with GNU/Linux.\n"
+"\n"
+" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
+"printing to your local printer or to one halfway around the planet. It is\n"
+"simple to configure and can act as a server or a client for the ancient\n"
+"\"lpd \" printing system, so it compatible with older operating systems\n"
+"that may still need print services. While quite powerful, the basic setup\n"
+"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
+"sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
+"front-ends for printing or choosing printer options and for managing the\n"
+"printer.\n"
+"\n"
+"If you make a choice now, and later find that you don't like your printing\n"
+"system you may change it by running PrinterDrake from the Mandrake Control\n"
+"Center and clicking the expert button."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. DrakX will analyze the disk boot sector and act according to\n"
+"what it finds there:\n"
"\n"
-"You can get a short explanatory text about a service by selecting a\n"
-"specific service. However, if you are not sure whether a service is useful\n"
-"or not, it is safer to leave the default behavior.\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. This way you will be able to load either GNU/Linux or another\n"
+"OS.\n"
"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services which you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
-msgstr ""
-"Сега можете да изберете кои услуги да се пускат при стартиране.\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
"\n"
-"Тук са представени всички услуги, достъпни с настоящата инсталация.\n"
-"Прегледайте ги внимателно и изключете тези, които не ви трябват винаги при "
-"стартиране.\n"
+"If it cannot make a determination, DrakX will ask you where to place the\n"
+"bootloader.\n"
"\n"
-"Можете видите кратък обяснителен текст за услугата, като поставите курора на "
-"мишката си\n"
-"над името на услугата. Ако не сте сигурни, дали услугата е полезна или не, "
-"по-добре\n"
-"е да оставите избора по подразбиране.\n"
+"\"Boot device\": in most cases, you will not change the default (\"First\n"
+"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
+"(\"On Floppy\").\n"
"\n"
-"Внимавайте с тази стъпка, ако смятате да използвате машината си като "
-"сървър:\n"
-"сигурно не бихте искали да пускате услуги, от които не се нуждаете. Моля,\n"
-"запомнете, че някои услуги могат да бъдат опасни, ако са включени на "
-"сървъра.\n"
-"По принцип, избирайте само услугите, от които наистина се нуждаете."
-
-#: ../../help.pm_.c:210
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-"local time according to the time zone you selected. It is however possible\n"
-"to deactivate this by unselecting \"Hardware clock set to GMT\" so that the\n"
-"hardware clock is the same as the system clock. This is useful when the\n"
-"machine is hosting another operating system like Windows.\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
"\n"
-"The \"Automatic time synchronization\" option will automatically regulate\n"
-"the clock by connecting to a remote time server on the Internet. In the\n"
-"list that is presented, choose a server located near you. Of course you\n"
-"must have a working Internet connection for this feature to work. It will\n"
-"actually install on your machine a time server which can be optionally used\n"
-"by other machines on your local network."
-msgstr ""
-
-#: ../../help.pm_.c:224
-#, fuzzy
-msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely.\n"
-"\n"
-"You will be presented the list of available resolutions and color depth\n"
-"available for your hardware. Choose the one that best suit your needs (you\n"
-"will be able to change that after installation though). When you are\n"
-"satisfied with the sample shown in the monitor, click \"OK\". A window will\n"
-"then appear and ask you if you can see it.\n"
-"\n"
-"If you are doing an \"Expert\" installation, you will enter the X\n"
-"configuration wizard. See the corresponding section of the manual for more\n"
-"information about this wizard.\n"
-"\n"
-"If you can see the message during the test, and answer \"Yes\", then DrakX\n"
-"will proceed to the next step. If you cannot see the message, it simply\n"
-"means that the configuration was wrong and the test will automatically end\n"
-"after 10 seconds, restoring the screen. Refer then to the video\n"
-"configuration section of the user guide for more information on how to\n"
-"configure your display."
-msgstr ""
-"X (ор X Window System) е сърцето на GNU/Linux графичния интерфейс, на който\n"
-"се осланят графичните среди (KDE, Gnome, AfterStep, WindowMaker...) "
-"свързани\n"
-"с Mandrake Linux. В тази секция, DrakX ще се автоматично да настрои X.\n"
-"\n"
-"Изключително рядко се случва да се провали, освен ако хардуерът не е много\n"
-"стар (или прекалено нов). Ако успее, ще стартира X автоматично с най-"
-"добрата\n"
-"разделителна способност в зависимост от големината на монитора ви. Ще се\n"
-"появи прозорец, за да ви попита дали го виждате.\n"
-"\n"
-"Ако извършвате \"Експертна\" инсталация, ще бъдете въведени в магьосника за\n"
-"настройка на X. Вижте съответната секция на ръководството за повече\n"
-"информация за магьосника.\n"
-"\n"
-"Ако видите съобщението, натиснете \"Да\", след което DrakX ще продължи със\n"
-"следващата стъпка. Ако не видите съобщението, това означава, че настройката\n"
-"е сгрешена и тестът автоматично ще бъде приключен след 10 секунди,\n"
-"възстановявайки екрана."
-
-#: ../../help.pm_.c:246
-msgid ""
-"Finally, you will be asked whether you want to see the graphical interface\n"
-"at boot. Note this question will be asked even if you chose not to test the\n"
-"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
-"act as a server, or if you were not successful in getting the display\n"
-"configured."
-msgstr ""
-"Накрая, ще бъдете попитани дали искате да виждате графичния интерфейс при\n"
-"зареждане. Отбележете, че този въпрос ще ви бъде зададен даже ако изберете,\n"
-"да не тествате настройката. Очевидно, бихте отговорили с \"Не\", ако "
-"машината\n"
-"ще работи като сървър или ако няма успешно настроен дисплей."
-
-#: ../../help.pm_.c:253
-#, fuzzy
-msgid ""
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (\n"
-"MBR) of your main disk (unless you are using another boot manager), to\n"
-"allow you to start up with either Windows or GNU/Linux (assuming you have\n"
-"Windows in your system). If you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector, and then you will not be able\n"
-"to start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to enter a disk inside the drive. The\n"
-"floppy disk you will insert must be empty or contain data which you do not\n"
-"need. You will not have to format it since DrakX will rewrite the whole\n"
-"disk."
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
"Mandrake Linux CDROM-ът има вграден спасителен режим. Можете да го\n"
"достигнете, като стартирате от CDROM-а, натиснете клавиша >>F1<< и напишете\n"
@@ -3193,349 +1563,334 @@ msgstr ""
"данни, от които не се нуждаете. Няма нужда да я форматирате, тъй като DrakX\n"
"ще презапише цялата дискета."
-#: ../../help.pm_.c:277
-#, fuzzy
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"You now need to choose where you want to install the Mandrake Linux\n"
-"operating system on your hard drive. If your hard drive is empty or if an\n"
-"existing operating system is using all the available space, you will need\n"
-"to partition it. Basically, partitioning a hard drive consists of logically\n"
-"dividing it to create space to install your new Mandrake Linux system.\n"
-"\n"
-"Because the partitioning process' effects are usually irreversible,\n"
-"partitioning can be intimidating and stressful if you are an inexperienced\n"
-"user. Fortunately, there is a wizard which simplifies this process. Before\n"
-"beginning, please consult the manual and take your time.\n"
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options that will be available at boot time will be displayed.\n"
"\n"
-"If you are running the installation in Expert mode, you will enter\n"
-"DiskDrake, the Mandrake Linux partitioning tool, which allows you to\n"
-"fine-tune your partitions. See the DiskDrake section in the ``Starter\n"
-"Guide''. From the installation interface, you can use the wizards as\n"
-"described here by clicking the dialog's \"Wizard\" button.\n"
+"If there are other operating systems installed on your machine they will\n"
+"automatically be added to the boot menu. You can fine-tune the existing\n"
+"options by clicking \"Add\" to create a new entry; selecting an entry and\n"
+"clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" validates\n"
+"your changes.\n"
"\n"
-"If partitions have already been defined, either from a previous\n"
-"installation or from another partitioning tool, simply select those to\n"
-"install your Linux system.\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone who goes to the console and reboots the machine. You can delete the\n"
+"corresponding entries for the operating systems to remove them from the\n"
+"bootloader menu, but you will need a boot disk in order to boot those other\n"
+"operating systems!"
+msgstr ""
+"LILO (или LInux LOader) и Grub са bootloader-и: те мога да стартират\n"
+"GNU/Linux или коя да е друга операционна система съществуваща на компютъра "
+"ви.\n"
+"Обикновенно, тези други операционни система се засичат и инсталират\n"
+"правилно. Ако това не става при вас, можете да добавяте записи на ръка в\n"
+"този екран. Гледайте да изберете верни параметри.\n"
"\n"
-"If partitions are not defined, you will need to create them using the\n"
-"wizard. Depending on your hard drive configuration, several options are\n"
-"available.\n"
"\n"
-" * \"Use free space\": this option will simply lead to an automatic\n"
-"partitioning of your blank drive(s). You will not be prompted further;\n"
+"Може да не искате да давате достъп до тези операционни системи на никой,\n"
+"в който случай можете да изтриете съответните записи. Но в такъв случай,\n"
+"ще се нуждаете от boot-дискета, за да ги стартирате !"
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"This dialog allows to finely tune your bootloader:\n"
"\n"
-" * \"Use existing partition\": the wizard has detected one or more existing\n"
-"Linux partitions on your hard drive. If you want to use them, choose this\n"
-"option. You will then be asked to choose the mount points associated to\n"
-"each of the partitions. The legacy mount points are selected by default,\n"
-"and you should generally keep them.\n"
+" * \"Bootloader to use\": there are three choices for your bootloader:\n"
"\n"
-" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see ``Erase entire disk'' 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"
-"Microsoft Windows on the same computer.\n"
+" * \"GRUB\": if you prefer grub (text menu).\n"
"\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"
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
+"interface.\n"
"\n"
-" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
-"present on your hard drive and replace them with your new Mandrake Linux\n"
-"system, choose this option. Be careful with this solution because you will\n"
-"not be able to revert your choice after you confirm;\n"
+" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
+"interface.\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+" * \"Boot device\": in most cases, you will not change the default\n"
+"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
+"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
-" * \"Remove Windows\": this will simply erase everything on the drive and\n"
-"begin fresh, partitioning everything from scratch. All data on your disk\n"
-"will be lost;\n"
+" * \"Delay before booting the default image\": after a boot or a reboot of\n"
+"the computer, this is the delay given to the user at the console to select\n"
+"a boot entry other than the default.\n"
"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"Skip\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"system! Be sure you know what you do before changing any of the options. !!\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 option. You\n"
-"can very easily lose all your data. Hence, do not choose this unless you\n"
-"know what you are doing. To know how to use the DiskDrake utility used\n"
-"here, refer to the section ``Managing Your Partitions'' of the ````Starter\n"
-"Guide''''"
+"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
+"that are reserved for the expert user."
msgstr ""
-"В този момент трябва изберете къде на твърдия си диска да инсталирате "
-"вашата\n"
-"Mandrake Linux операционна система. Ако твърдият ви диск е празен или друга\n"
-"операционна система използва цялото пространство, ще трябва да го "
-"разделите.\n"
-"Казано простичко, разделянето на твърдия диск се състои в логическо "
-"разделяне\n"
-"цел да се създаде място за инсталация на новата Mandrake Linux система.\n"
-"\n"
-"Тъй като процесът на разделяне обикновено е необратим, разделянето може да\n"
-"изглежда плашещ и стряскащ, ако сте неопитен потребител. Слава Богу, има\n"
-"магьосник, който опростява този процес. Преди да започнете, консултирайте "
-"се\n"
-"с ръководството и не бързайте.\n"
-"\n"
-"Ако пускате инсталацията в Експертен режим, ще бъдете въведени в DiskDrake,\n"
-"разделящия инструмент на Mandrake Linux, който ви позволява да донастроите\n"
-"дяловете си. Вижте главата DiskDrake от ръководството. От инсталационния\n"
-"интерфейс можете да използвате магьосниците, като натиснете бутона\n"
-"\"Магьосник\" на диалога.\n"
-"\n"
-"Ако дяловете са вече определени, дали от предишна инсталация или от друг\n"
-"иструмент за разделяне, просто изберете на кой да инсталирате Linux\n"
-"системата.\n"
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you have to enter the \"root\" password. \"Root\" is the system\n"
+"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 the password that you chose too easy. As you\n"
+"can see, you are not forced to enter a password, but we strongly advise you\n"
+"against. GNU/Linux is as prone to operator error as any other operating\n"
+"system. Since \"root\" can overcome all limitations and unintentionally\n"
+"erase all data on partitions by carelessly accessing the partitions\n"
+"themselves, it is important that it be difficult to become \"root\".\n"
"\n"
-"Ако дяловете не са определени, ще трябва да създадете такива използвайки\n"
-"магьосника. В зависимост от настройката на твърдия диск, са възможни "
-"няколко\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"
+"easy to compromise a system.\n"
"\n"
-" * \"Използвай свободното пространство\": тази опция просто ще доведе то\n"
-"автоматично поделяне на празното пространство на твърдия ви диск. Няма да\n"
-"бъдете питани за това.\n"
+"One caveat -- do not make the password too long or complicated because you\n"
+"must be able to remember it!\n"
"\n"
-" * \"Използвай съществуващ дял\": магьосникът е засякъл един или повече\n"
-"съществуващи Linux дялове на твърдия ви диск. Ако искате да ги използвате,\n"
-"изберете тази опция.\n"
+"The password will not be displayed on screen as you type it in. To reduce\n"
+"the chance of a blind typing error you will need to enter the password\n"
+"twice. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
-" * \"Използвай свободното пространство на Windows дял\": ако имате "
-"инсталиран\n"
-"Microsoft Windows на твърдия си диск и той заема цялото достъпно\n"
-"пространство на него, трябва да освободите място за Linux данни. За да\n"
-"направитетова, можете да изтриете Microsoft Windows дяла и данните (вижте\n"
-"решенията \"Изтрий целия диск\" или \"Екпертен режим\") или да промените\n"
-"големината на Microsoft Windows дяла. Промяната на големината може да бъде\n"
-"извършена без загуба на данни. Това решение се препоръчва, ако искате\n"
-"едновременно Mandrake Linux и Microsoft Windows на един и същи компютър.\n"
+"If you wish access to this computer to be controlled by an authentication\n"
+"server, clisk the \"Advanced\" button.\n"
"\n"
-" Преди да изберете тази опция, моля, разберете, че след тази процедура,\n"
-"големината на Microsoft Windows дяла ще бъде по-малка, отколкото преди "
-"това.\n"
-"Ще имате по-малко място под Microsoft Windows за съхраняване на данни или "
-"за\n"
-"инсталира на нов софтуер.\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one as \"authentication\". If you do not\n"
+"know which to use, ask your network administrator.\n"
"\n"
-" * \"Изтрий целия диск\": ако искате да изтриете всички данни и дялове, "
-"които\n"
-"съществуват на вашия твърд диск и да ги замените с новата Mandrake Linux\n"
-"система, изберете тази опция. Бъдете внимателни с това решения, защото няма\n"
-"да можете да върнете обратно избора си, след като потвърдите.\n"
+"If you happen to have problems with reminding passwords, you can choose to\n"
+"have \"No password\", if your computer won't be connected to the Internet,\n"
+"and if you trust anybody having access to it."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
+msgstr ""
+"Моля, изберете верния порт. Например, портът COM1 под Windows под GNU/Linux\n"
+"се нарича ttyS0."
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
"\n"
-" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
-"загубени !!\n"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the provided list.\n"
"\n"
-" * \"Изтрий Windows\": Това просто ще изтрие всичко на диска и ще започне "
-"на\n"
-"чисто, разделяне от раз. Всякакви данни на диска ви ще бъдат загубени.\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and to\n"
+"go back to the list of choices.\n"
+"\n"
+"Wheel mice are occasionally not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"Next ->\" button, a mouse image is displayed on-screen.\n"
+"Scroll the mouse wheel to ensure that it is activated correctly. Once you\n"
+"see the on-screen scroll wheel moving as you scroll your mouse wheel, test\n"
+"the buttons and check that the mouse pointer moves on-screen as you move\n"
+"your mouse."
+msgstr ""
+"По подразбиране, DrakX предполага че имате двубутонна мишка и ще включи\n"
+"симулиране на три бутона. DrakX автоматично разбира дали е PS/2, серийна "
+"или\n"
+"USB мишка.\n"
"\n"
-" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
-"загубени !!\n"
+"Ако искате да определите друг тип на мишката, изберете подходящ от списъка,\n"
+"който ще ви бъде представен.\n"
"\n"
-" * \"Експертен режим\": изберете тази опция, ако искате ръчно да разделите\n"
-"твърдия си диск. Бъдете внимателни - това е мощен, но опасен избор. Можете\n"
-"много лесно да загубите всички данни. Така че не избирайте това, ако не\n"
-"знаете какво правите."
+"Ако изберете мишка различна от тази по подразбиране, ще ви бъде предоставен\n"
+"екран за проба. Използвайте бутоните и колелцето, за да проверите, че\n"
+"настройката е дора. Ако мишката не работи, както трябва, натиснете интервал\n"
+"или СЕ ВЪРНЕТЕ към \"Отказ\" и изберете пак."
-#: ../../help.pm_.c:347
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"There you are. Installation is now completed and your GNU/Linux system is\n"
-"ready to use. Just click \"OK\" to reboot the system. You can start\n"
-"GNU/Linux or Windows, whichever you prefer (if you are dual-booting), as\n"
-"soon as the computer has booted up again.\n"
+"Your choice of preferred language will affect the language of the\n"
+"documentation, the installer and the system in general. Select first the\n"
+"region you are located in, and then the language you speak.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"Clicking on the \"Advanced\" button will allow you to select other\n"
+"languages to be installed on your workstation, thereby installing the\n"
+"language-specific files for system documentation and applications. For\n"
+"example, if you will host users from Spain on your machine, select English\n"
+"as the default language in the tree view and \"Espanol\" in the Advanced\n"
+"section.\n"
"\n"
-" * \"generate auto-install floppy\": to create an installation floppy disk\n"
-"which will automatically perform a whole installation without the help of\n"
-"an operator, similar to the installation you just configured.\n"
+"Note that you're not limited to choosing a single additional language. Once\n"
+"you have selected additional locales, click the \"Next ->\" button to\n"
+"continue.\n"
"\n"
-" Note that two different options are available after clicking the button:\n"
+"To switch between the various languages installed on the system, you can\n"
+"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+"language used by the entire system. Running the command as a regular user\n"
+"will only change the language settings for that particular user."
+msgstr ""
+"Моля, цъкнете на предпочитания език на инсталация и системна употреба.\n"
"\n"
-" * \"Replay\". This is a partially automated installation as the\n"
-"partitioning step (and only this one) remains interactive;\n"
+"Цъкането на бутона \"Напредничав\" ще ви позволи да изберете други езици\n"
+"да бъдат инсталирани на работната ви станция. Избирането на други езици\n"
+"ще инсталира файлове специвични за езиците за системна документация и\n"
+"приложения. Например, ако имате потребители от Изпания на машината си,\n"
+"изберете английски като главен език в дървовидната форма и в секция\n"
+"\"Напредничав\" цъкнете на сивата звезда съответстваща на\n"
+"\"Испански|Испания\".\n"
+"Отбележете, че могат да бъдат инсталирани няколко езика. Веднъж избран\n"
+"някакъв локал, цъкнете бутона \"OK\", за да продължите."
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Depending on the default language you chose in Section , DrakX will\n"
+"automatically select a particular type of keyboard configuration. However,\n"
+"you might not have a keyboard that corresponds exactly to your language:\n"
+"for example, if you are an English speaking Swiss person, you may have a\n"
+"Swiss keyboard. Or if you speak English but are located in Quebec, you may\n"
+"find yourself in the same situation where your native language and keyboard\n"
+"do not match. In either case, this installation step will allow you to\n"
+"select an appropriate keyboard from a list.\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is\n"
-"completely rewritten, all data is lost.\n"
+"Click on the \"More \" button to be presented with the complete list of\n"
+"supported keyboards.\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"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding that will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
+msgstr ""
+"Обикновено, DrakX би трябвало да избере правилната за вас клавиатура (в "
+"зависимост\n"
+"от езика, който сте избрали) и няма да се наложи да видите тази стъпка. "
+"Обаче може да\n"
+"нямате клавиатура съответстваща точно на вашия език: например, ако сте "
+"англоговорящ швед,\n"
+"може би ще искате клавиатурата ви да бъде шведска. Или ако говорите "
+"aнглийски, но сте\n"
+"в Квебек, може би ще сте в същата ситуация. И в двата случая, ще трябва да "
+"се върнете\n"
+"към тази инсталационна стъпка и да изберете правилната клавиатура от "
+"списъка.\n"
"\n"
-" * \"Save packages selection\"(*): saves the package selection as done\n"
-"previously. Then, when doing another installation, insert the floppy inside\n"
-"the drive and run the installation going to the help screen by pressing on\n"
-"the [F1] key, and by issuing >>linux defcfg=\"floppy\"<<.\n"
+"Всичко, което трябва да направите, е да посочите предпочитаната клавиатурна "
+"наредба\n"
+"от списъка, който ще се появи пред вас.\n"
"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
-msgstr ""
-"А така ! Инсталацията е завършена и GNU/Linux системата ви е готова за\n"
-"употреба. Просто цъкнете \"OK\", за да рестартирате системата. Можете да\n"
-"стартирате GNU/Linux или Windows, което предпочитате (ако имате две "
-"системи),\n"
-"веднага след като компютърът стартира отново.\n"
+"Ако имате клавиатура от език различен от този използван по подразбиране, "
+"цъкнете\n"
+"на бутона \"Напредничав\". Ще ви бъде предоставен пълен списък с "
+"поддържаните клавиатури."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"This step is activated only if an old GNU/Linux partition has been found on\n"
+"your machine.\n"
"\n"
-"Бутона \"Напредничав\" (само в \"Експертен\") показва още два бутона за:\n"
+"DrakX now needs to know if you want to perform a new install or an upgrade\n"
+"of an existing Mandrake Linux system:\n"
"\n"
-" * \"генериране на дискета за автоматична инсталация\": за да създадете\n"
-"инсталационна дискета, която след това автоматично да изчършва цялата\n"
-"инсталация без помощта на оператор, приличаща на инсталацията, която току-"
-"що\n"
-"сте извършили.\n"
+" * \"Install\": For the most part, this completely wipes out the old\n"
+"system. If you wish to change how your hard drives are partitioned, or\n"
+"change the file system, you should use this option. However, depending on\n"
+"your partitioning scheme, you can prevent some of your existing data from\n"
+"being over- written.\n"
"\n"
-" Отбележете, че две различни опции са достъни, чрез цъкане на бутона:\n"
+" * \"Upgrade\": this installation class allows you to update the packages\n"
+"currently installed on your Mandrake Linux system. Your current\n"
+"partitioning scheme and user data is not altered. Most of other\n"
+"configuration steps remain available, similar to a standard installation.\n"
"\n"
-" * \"Преиграй\". Това е частично автоматизирана инсталация като стъпките\n"
-"по разделяне на дялове остават интерактивни.\n"
+"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
+"to Mandrake Linux version \"8.1\" is not recommended."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"\"Country\": check the current country selection. If you are not in this\n"
+"country, click on the button and choose another one."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose the one you want to resize in order to install your new\n"
+"Mandrake Linux operating system.\n"
"\n"
-" * \"Автоматична\". Напълно автоматична инсталация: твърдият диск се\n"
-"презаписва напълно, всякакви данни се загубват.\n"
+"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
+"\"Capacity\".\n"
"\n"
-" Тази особеност е много удобна, когато инсталирате голям брой подобно\n"
-"машини. Вижте секцията за автоматична инсталация на нашия web-сайт.\n"
+"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" * \"Запази избора на пакети\"(*): запазва избора на пакети, така както "
-"е\n"
-"направен преди. Когато правите друга инсталация, вкарайте дискетата в\n"
-"устройството и пуснете инсталацията да върви чрез помощния екран, като\n"
-"натиснете клавиша [F1] и като напишете >>linux defcfg=\"floppy\"<<.\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"(*) Трябва ви FAT-форматирана дискета (за да създадете таква под GNU/Linux,\n"
-"напишете \"mformat a:\")"
-
-#: ../../help.pm_.c:378
-msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a filesystem on it).\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
+"hard drives:\n"
"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"it.\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-"Click on \"OK\" when you are ready to format partitions.\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"Click on \"Cancel\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc.\n"
"\n"
-"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
-"for bad blocks on the disk."
+"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
+"disk or partition is called \"C:\")."
msgstr ""
-"Всички новодефинирани дялове трябва да бъдат форматирани, за да се "
-"използват\n"
-"(форматиране означава създаване на файлова система).\n"
+"Беше засечен повече от един Microsoft Windows дял\n"
+"на твърдия ви диска. Изберете този, чиято дължина искате да промените, за "
+"да\n"
+"инсталирате Mandrake Linux операционна система.\n"
"\n"
-"В този момента може би искате да преформатирате някои съществуващи дялове, "
-"за\n"
-"да изтриете всякакви данни, които съдържат. Ако искате да го направите, "
-"моля\n"
-"изберете тях.\n"
"\n"
-"Моля, отбележете, че не е необходимо да преформатирате всички дялове\n"
-"съществуващи отпреди. Трябва да преформатирате дяловете съдържащи\n"
-"операционната система (като \"/\", \"/usr\" или \"/var\"), но това не е\n"
-"задължително за дялове съдържащи данни, които искате да запазите "
-"(обикновено\n"
-"\"/home\").\n"
+"За информация, всеки дял е изброен както следва: \"Linux име\", \"Windows име"
+"\", \"Капацитет\".\n"
"\n"
-"Моля, бъдете внимателни, когато избирате дяловете. След форматиране всички\n"
-"данни на посочените дялове ще бъдат изтрити и няма да можете да ги\n"
-"възстановите.\n"
+"\"Linux името\" се кодира както следва: \"тип на диска\", \"номер на диска"
+"\",\n"
+"\"номер на дял\" (например, \"hda1\").\n"
"\n"
-"Цъкнете \"OK\", когато сте готови да форматирате далове.\n"
"\n"
-"Цъкнете \"Отказ\", ако искате да изберете други дялове за инсталация на "
-"новата\n"
-"си Mandrake Linux операционна система.\n"
+"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
+"е\n"
+"SCSI твърд диск.\n"
"\n"
-"Цъкнете \"Напредничав\", ако искате да изберете дялове, които да бъдат\n"
-"проверени за лоши блокове от диска."
-
-#: ../../help.pm_.c:404
-msgid ""
-"Your new Mandrake Linux operating system is currently being installed.\n"
-"Depending on the number of packages you will be installing and the speed of\n"
-"your computer, this operation could take from a few minutes to a\n"
-"significant amount of time.\n"
"\n"
-"Please be patient."
-msgstr ""
-"Новата ви Mandrake Linux операционна система в момента се инсталира. Тази\n"
-"операция би трябвало да отнеме няколко минути (зависи от избраната големина "
-"на\n"
-"инсталацията и от скоростта на компютъра ви).\n"
+"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
+"дискове:\n"
"\n"
-"Моля, бъдете търпеливи."
-
-#: ../../help.pm_.c:412
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Some bugs may have\n"
-"been fixed, and security issues solved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+" * \"a\" означава \"master диск на първия IDE контролер\",\n"
+" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
+" * \"c\" означава \"master диск на втория IDE контролер\",\n"
+" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
-"retrieved. Choose the one nearest you. Then a package-selection tree\n"
-"appears: review the selection, and press \"Install\" to retrieve and\n"
-"install the selected package(s), or \"Cancel\" to abort."
-msgstr ""
-
-#: ../../help.pm_.c:425
-msgid ""
-"Before continuing, you should read carefully the terms of the license. It\n"
-"covers the whole Mandrake Linux distribution, and if you do not agree with\n"
-"all the terms included in it, click on the \"Refuse\" button which will\n"
-"immediately terminate the installation. To continue with the installation,\n"
-"click on the \"Accept\" button."
-msgstr ""
-"Преди да продължите, трябва внимателно да прочетете условията на лиценза. "
-"Той\n"
-"покрива цялата Mandrake Linux дистрибуция, и, ако не сте съгласни с всички "
-"условия\n"
-"в него, цъкнете на бутона Отказ. Това незабавно ще приключи инсталацията. За "
-"да\n"
-"продължите с инсталацията, цъкнете на бутона Приеми."
-
-#: ../../help.pm_.c:432
-msgid ""
-"At this point, it is time to choose the security level desired for the\n"
-"machine. As a rule of thumb, the more exposed the machine is, and the more\n"
-"the data stored in it is crucial, the higher the security level should be.\n"
-"However, a higher security level is generally obtained at the expense of\n"
-"ease of use. Refer to the \"msec\" chapter of the ``Reference Manual'' to\n"
-"get more information about the meaning of these levels.\n"
"\n"
-"If you do not know what to choose, keep the default option."
-msgstr ""
-"В този момент, трябва да изберете нивото на сигурност, което искате за\n"
-"машината. По правило, колкото повече машината ви е достъпна и колкото "
-"повече\n"
-"данни се съхраняват на нея, толкова по-високо трябва да е нивото на "
-"сигурност.\n"
-"Въпреки това, високата сигурност е за сметка на лекотата на работа.\n"
-"Обърнете се към главата MSEC на Reference Manual, за да получите повече "
-"информация\n"
-"за значението на тези нива.\n"
+"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
+"\"втори твърд диск\" и т.н..\n"
"\n"
-"Ако не знаете както да изберете, изберете опцията по подразбиране."
+"\"Windows името\" е буквата на твърдия ви диск под Windows (първият диск "
+"или\n"
+"дял се нарича \"C:\")."
-#: ../../help.pm_.c:442
-#, fuzzy
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3550,59 +1905,63 @@ msgid ""
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
-"drive;\n"
+"drive\n"
"\n"
-" * \"Auto allocate\": this option enables to automatically create ext3 and\n"
-"swap partitions on your hard drive's free space;\n"
+" * \"Auto allocate\": this option enables you to automatically create ext3\n"
+"and swap partitions in free space of your hard drive\n"
"\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\n"
-"recommended to perform this step;\n"
+"recommended that you perform this step.\n"
"\n"
-" * \"Restore partition table\": allows to restore a previously saved\n"
-"partition table from a floppy disk;\n"
+" * \"Restore partition table\": allows you to restore a previously saved\n"
+"partition table from a 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"
+"doesn't always work.\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and reloads the\n"
+"partition table that was originally on the hard drive.\n"
"\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\n"
-"your hard drive. This is recommended if you do not have a good knowledge of\n"
-"partitioning;\n"
+"your hard drive. This is recommended if you do not have a good\n"
+"understanding of partitioning.\n"
"\n"
-" * \"Undo\": use this option to cancel your changes;\n"
+" * \"Undo\": use this option to cancel your changes.\n"
"\n"
" * \"Toggle to normal/expert mode\": allows additional actions on\n"
-"partitions (type, options, format) and gives more information;\n"
+"partitions (type, options, format) and gives more information about the\n"
+"hard drive.\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and [Up/Down] arrows.\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected);\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-" * Ctrl-d to delete a partition;\n"
+" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point.\n"
+" * Ctrl-m to set the mount point\n"
"\n"
-"To get information about the different filesystem types available, please\n"
+"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB, which will be used by the yaboot\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
@@ -3674,641 +2033,955 @@ msgstr ""
"намерите за полезно място, където да съхранявате някое ядро или image на\n"
"ramdisk в случай на извънредни ситуации."
-#: ../../help.pm_.c:513
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose the one you want to resize in order to install your new\n"
-"Mandrake Linux operating system.\n"
+"At this point, DrakX will allow you to choose the security level desired\n"
+"for the machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine will contain crucial data, or if it will be a machine\n"
+"directly exposed to the Internet. The trade-off of a higher security level\n"
+"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
+"chapter of the ``Command Line Manual'' to get more information about the\n"
+"meaning of these levels.\n"
"\n"
-"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
-"\"Capacity\".\n"
-"\n"
-"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
+"If you do not know what to choose, keep the default option."
+msgstr ""
+"В този момент, трябва да изберете нивото на сигурност, което искате за\n"
+"машината. По правило, колкото повече машината ви е достъпна и колкото "
+"повече\n"
+"данни се съхраняват на нея, толкова по-високо трябва да е нивото на "
+"сигурност.\n"
+"Въпреки това, високата сигурност е за сметка на лекотата на работа.\n"
+"Обърнете се към главата MSEC на Reference Manual, за да получите повече "
+"информация\n"
+"за значението на тези нива.\n"
"\n"
-"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
+"Ако не знаете както да изберете, изберете опцията по подразбиране."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Bugs may have been\n"
+"fixed, security issues resolved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Choose\n"
+"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
+"to install updated packages later.\n"
"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
-"hard drives:\n"
+"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"retrieved. Choose the one nearest you. A package-selection tree will\n"
+"appear: review the selection, and press \"Install\" to retrieve and install\n"
+"the selected package( s), or \"Cancel\" to abort."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a file system).\n"
"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"At this time, you may wish to reformat some already existing partitions to\n"
+"erase any data they contain. If you wish to do that, please select those\n"
+"partitions as well.\n"
"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"Please note that it is not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
+"reformat partitions containing data that you wish to keep (typically\n"
+"\"/home\").\n"
"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"Please be careful when selecting partitions. After formatting, all data on\n"
+"the selected partitions will be deleted and you will not be able to recover\n"
+"it.\n"
"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"Click on \"Next ->\" when you are ready to format partitions.\n"
"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc.\n"
+"Click on \"<- Previous\" if you want to choose another partition for your\n"
+"new Mandrake Linux operating system installation.\n"
"\n"
-"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
-"disk or partition is called \"C:\")."
+"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
+"for bad blocks on the disk."
msgstr ""
-"Беше засечен повече от един Microsoft Windows дял\n"
-"на твърдия ви диска. Изберете този, чиято дължина искате да промените, за "
-"да\n"
-"инсталирате Mandrake Linux операционна система.\n"
+"Всички новодефинирани дялове трябва да бъдат форматирани, за да се "
+"използват\n"
+"(форматиране означава създаване на файлова система).\n"
"\n"
+"В този момента може би искате да преформатирате някои съществуващи дялове, "
+"за\n"
+"да изтриете всякакви данни, които съдържат. Ако искате да го направите, "
+"моля\n"
+"изберете тях.\n"
"\n"
-"За информация, всеки дял е изброен както следва: \"Linux име\", \"Windows име"
-"\", \"Капацитет\".\n"
+"Моля, отбележете, че не е необходимо да преформатирате всички дялове\n"
+"съществуващи отпреди. Трябва да преформатирате дяловете съдържащи\n"
+"операционната система (като \"/\", \"/usr\" или \"/var\"), но това не е\n"
+"задължително за дялове съдържащи данни, които искате да запазите "
+"(обикновено\n"
+"\"/home\").\n"
"\n"
-"\"Linux името\" се кодира както следва: \"тип на диска\", \"номер на диска"
-"\",\n"
-"\"номер на дял\" (например, \"hda1\").\n"
+"Моля, бъдете внимателни, когато избирате дяловете. След форматиране всички\n"
+"данни на посочените дялове ще бъдат изтрити и няма да можете да ги\n"
+"възстановите.\n"
"\n"
+"Цъкнете \"OK\", когато сте готови да форматирате далове.\n"
"\n"
-"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
-"е\n"
-"SCSI твърд диск.\n"
+"Цъкнете \"Отказ\", ако искате да изберете други дялове за инсталация на "
+"новата\n"
+"си Mandrake Linux операционна система.\n"
"\n"
+"Цъкнете \"Напредничав\", ако искате да изберете дялове, които да бъдат\n"
+"проверени за лоши блокове от диска."
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
+"you should see after your computer has finished doing its hardware tests is\n"
+"the bootloader menu, giving you the choice of which operating system to\n"
+"start.\n"
"\n"
-"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
-"дискове:\n"
+"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
-" * \"a\" означава \"master диск на първия IDE контролер\",\n"
-" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
-" * \"c\" означава \"master диск на втория IDE контролер\",\n"
-" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
+" * \"generate auto-install floppy\": to create an installation floppy disk\n"
+"that will automatically perform a whole installation without the help of an\n"
+"operator, similar to the installation you just configured.\n"
"\n"
+" Note that two different options are available after clicking the button:\n"
"\n"
-"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
-"\"втори твърд диск\" и т.н..\n"
+" * \"Replay\". This is a partially automated installation. The\n"
+"partitioning step is the only interactive procedure.\n"
"\n"
-"\"Windows името\" е буквата на твърдия ви диск под Windows (първият диск "
-"или\n"
-"дял се нарича \"C:\")."
-
-#: ../../help.pm_.c:544
-msgid "Please be patient. This operation can take several minutes."
-msgstr "Моля, бъдете търпеливи. Тази операция може да отнеме няколко минути."
-
-#: ../../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\") over your\n"
-"installation. You can also choose to do a new installation or upgrade your\n"
-"existing Mandrake Linux system:\n"
-"\n"
-" * \"Install\": completely wipes out the old system. However, depending on\n"
-"what is currently installed on your machine, you may be able to keep some\n"
-"old partitions (Linux or otherwise) unchanged;\n"
-"\n"
-" * \"Upgrade\": this installation class allows to simply update the\n"
-"packages currently installed on your Mandrake Linux system. It keeps your\n"
-"hard drives' current partitions as well as user configurations. All other\n"
-"configuration steps remain available, similar to a normal installation;\n"
-"\n"
-" * \"Upgrade Packages Only\": this new installation class allows you to\n"
-"upgrade an existing Mandrake Linux system while keeping all system\n"
-"configurations unchanged. Adding new packages to the current installation\n"
-"is also possible.\n"
-"\n"
-"Upgrades should work fine on Mandrake Linux systems using version \"8.1\"\n"
-"or later.\n"
-"\n"
-"Depending on your GNU/Linux knowledge, select one of the following choices:\n"
-"\n"
-" * Recommended: choose this if you have never installed a GNU/Linux\n"
-"operating system. The installation will be very easy and you will only be\n"
-"asked a few questions;\n"
-"\n"
-" * Expert: if you have a good GNU/Linux understanding, you may wish to\n"
-"perform a highly customized installation. Some of the decisions you will\n"
-"have to make may be difficult if you do not have good GNU/Linux knowledge,\n"
-"so it is not recommended that those without a fair amount of experience\n"
-"select this installation class."
-msgstr ""
-"DrakX сега трябва да проведе инсталация по подразбиране (\"Препоръчителна"
-"\")\n"
-"или такава, където имате по-голям контрол (\"Експертна\"). Вие също така\n"
-"можете да изберете да извършите нова инсталация или надграждане на\n"
-"съществуваща Mandrake Linux система. Цъкайки на \"Инсталирай\" ще затрие\n"
-"напълно старата система. Изберете \"Надгради\", ако надграждате или\n"
-"поправите съществуваща система\n"
-"\n"
-"Моля, изберете \"Инсталирай\", ако нямате инсталирана предишна верси на\n"
-"Mandrake Linux или ако искате да избирате между операционни системи.\n"
-"\n"
-"Моля, изберете \"Надгради\", ако искате да надградите или поправите вече\n"
-"инсталирана версия на Mandrake Linux.\n"
-"\n"
-"В зависимост от познанията ви по GNU/Linux, моля, изберете един от следните\n"
-"видове инсталация/надграждане на вашата Mandrake Linux операционн система:\n"
-"\n"
-" * Препоръчителна: изберете това, ако никога не сте иснталирали GNU/Linux\n"
-"операционна система. Инсталацията е много лесна и ще бъдете попитани само\n"
-"няколко въпроса.\n"
-"\n"
-" * Експертна:ако имате добри познания по GNU/Linux, можете да изберете този\n"
-"инсталационен клас. Експертната инсталация ще ви позволи да извършите много\n"
-"потребителска инсталация. Отговорите на някои въпроси може да са тръди, ако\n"
-"не познавате добре GNU/Linux, така че изберете това, освен ако не знаете\n"
-"какво правите."
-
-#: ../../help.pm_.c:582
-msgid ""
-"Normally, DrakX selects the right keyboard for you (depending on the\n"
-"language you have chosen). However, you might not have a keyboard that\n"
-"corresponds exactly to your language: for example, if you are an English\n"
-"speaking Swiss person, you may still want your keyboard to be a Swiss\n"
-"keyboard. Or if you speak English but are located in Quebec, you may find\n"
-"yourself in the same situation. In both cases, you will have to go back to\n"
-"this installation step and select an appropriate keyboard from the list.\n"
-"\n"
-"Click on the \"More\" button to be presented with the complete list of\n"
-"supported keyboards.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a number of similar machines.\n"
+"See the Auto install section on our web site for more information.\n"
"\n"
-"If you choose a keyboard layout based on a non-latin alphabet, you will be\n"
-"asked in the next dialog to choose the key binding that will switch the\n"
-"keyboard layout between the latin and non-latin layouts."
+" * \"Save packages selection\"(*): saves a list of the package selected in\n"
+"this installation. To use this selection with another installation, insert\n"
+"the floppy and start the installation. At the prompt, press the [F1] key\n"
+"and type >>linux defcfg=\"floppy\" <<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-"Обикновено, DrakX би трябвало да избере правилната за вас клавиатура (в "
-"зависимост\n"
-"от езика, който сте избрали) и няма да се наложи да видите тази стъпка. "
-"Обаче може да\n"
-"нямате клавиатура съответстваща точно на вашия език: например, ако сте "
-"англоговорящ швед,\n"
-"може би ще искате клавиатурата ви да бъде шведска. Или ако говорите "
-"aнглийски, но сте\n"
-"в Квебек, може би ще сте в същата ситуация. И в двата случая, ще трябва да "
-"се върнете\n"
-"към тази инсталационна стъпка и да изберете правилната клавиатура от "
-"списъка.\n"
+"А така ! Инсталацията е завършена и GNU/Linux системата ви е готова за\n"
+"употреба. Просто цъкнете \"OK\", за да рестартирате системата. Можете да\n"
+"стартирате GNU/Linux или Windows, което предпочитате (ако имате две "
+"системи),\n"
+"веднага след като компютърът стартира отново.\n"
"\n"
-"Всичко, което трябва да направите, е да посочите предпочитаната клавиатурна "
-"наредба\n"
-"от списъка, който ще се появи пред вас.\n"
+"Бутона \"Напредничав\" (само в \"Експертен\") показва още два бутона за:\n"
"\n"
-"Ако имате клавиатура от език различен от този използван по подразбиране, "
-"цъкнете\n"
-"на бутона \"Напредничав\". Ще ви бъде предоставен пълен списък с "
-"поддържаните клавиатури."
-
-#: ../../help.pm_.c:598
-msgid ""
-"The first step is to choose your preferred language.\n"
+" * \"генериране на дискета за автоматична инсталация\": за да създадете\n"
+"инсталационна дискета, която след това автоматично да изчършва цялата\n"
+"инсталация без помощта на оператор, приличаща на инсталацията, която току-"
+"що\n"
+"сте извършили.\n"
"\n"
-"Please choose your preferred language for installation and system usage.\n"
+" Отбележете, че две различни опции са достъни, чрез цъкане на бутона:\n"
"\n"
-"Clicking on the \"Advanced\" button will allow you to select other\n"
-"languages to be installed on your workstation. Selecting other languages\n"
-"will install the language-specific files for system documentation and\n"
-"applications. For example, if you host users from Spain on your machine,\n"
-"select English as the main language in the tree view and in the Advanced\n"
-"section, click on the box corresponding to \"Spanish|Spain\".\n"
+" * \"Преиграй\". Това е частично автоматизирана инсталация като стъпките\n"
+"по разделяне на дялове остават интерактивни.\n"
"\n"
-"Note that multiple languages may be installed. Once you have selected any\n"
-"additional locales, click the \"OK\" button to continue.\n"
+" * \"Автоматична\". Напълно автоматична инсталация: твърдият диск се\n"
+"презаписва напълно, всякакви данни се загубват.\n"
"\n"
-"To switch from one language to the other, you can launch the\n"
-"\"/usr/sbin/localedrake\" command as \"root\" to change the whole system\n"
-"language, or as a simple user to only change that user's default language."
-msgstr ""
-"Моля, цъкнете на предпочитания език на инсталация и системна употреба.\n"
+" Тази особеност е много удобна, когато инсталирате голям брой подобно\n"
+"машини. Вижте секцията за автоматична инсталация на нашия web-сайт.\n"
"\n"
-"Цъкането на бутона \"Напредничав\" ще ви позволи да изберете други езици\n"
-"да бъдат инсталирани на работната ви станция. Избирането на други езици\n"
-"ще инсталира файлове специвични за езиците за системна документация и\n"
-"приложения. Например, ако имате потребители от Изпания на машината си,\n"
-"изберете английски като главен език в дървовидната форма и в секция\n"
-"\"Напредничав\" цъкнете на сивата звезда съответстваща на\n"
-"\"Испански|Испания\".\n"
-"Отбележете, че могат да бъдат инсталирани няколко езика. Веднъж избран\n"
-"някакъв локал, цъкнете бутона \"OK\", за да продължите."
+" * \"Запази избора на пакети\"(*): запазва избора на пакети, така както "
+"е\n"
+"направен преди. Когато правите друга инсталация, вкарайте дискетата в\n"
+"устройството и пуснете инсталацията да върви чрез помощния екран, като\n"
+"натиснете клавиша [F1] и като напишете >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Трябва ви FAT-форматирана дискета (за да създадете таква под GNU/Linux,\n"
+"напишете \"mformat a:\")"
-#: ../../help.pm_.c:617
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"DrakX generally detects the number of buttons your mouse possesses. If not,\n"
-"it assumes you have a two-button mouse and will set it up for third-button\n"
-"emulation. DrakX will automatically know whether it is a PS/2, serial or\n"
-"USB mouse.\n"
+"At this point, you need to decide where you want to install the Mandrake\n"
+"Linux operating system on your hard drive. If your hard drive is empty or\n"
+"if an existing operating system is using all the available space you will\n"
+"have to partition the drive. Basically, partitioning a hard drive consists\n"
+"of logically dividing it to create the space needed to install your new\n"
+"Mandrake Linux system.\n"
"\n"
-"If you wish to specify a different type of mouse, select the appropriate\n"
-"type from the provided list.\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to lost data if there is an existing operating system already\n"
+"installed on the drive, partitioning can be intimidating and stressful if\n"
+"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct. If the mouse is not working well, press the space bar or [Return]\n"
-"to \"Cancel\" and choose again.\n"
+"Depending on your hard drive configuration, several options are available:\n"
"\n"
-"Sometimes, wheel mouses are not automatically detected. You will need to\n"
-"manually select it in the list. Be sure to select the one corresponding to\n"
-"the correct port it is attached to. After you have pressed the \"OK\"\n"
-"button, a mouse image will be displayed. You then need to move the wheel of\n"
-"your mouse to activate it correctly. Then test that all buttons and\n"
-"movements are correct."
-msgstr ""
-"По подразбиране, DrakX предполага че имате двубутонна мишка и ще включи\n"
-"симулиране на три бутона. DrakX автоматично разбира дали е PS/2, серийна "
-"или\n"
-"USB мишка.\n"
+" * \"Use free space\": this option will perform an automatic partitioning\n"
+"of your blank drive(s). If you use this option there will be no further\n"
+"prompts.\n"
"\n"
-"Ако искате да определите друг тип на мишката, изберете подходящ от списъка,\n"
-"който ще ви бъде представен.\n"
+" * \"Use existing partition\": the wizard has detected one or more existing\n"
+"Linux partitions on your hard drive. If you want to use them, choose this\n"
+"option. You will then be asked to choose the mount points associated with\n"
+"each of the partitions. The legacy mount points are selected by default,\n"
+"and for the most part it's a good idea to keep them.\n"
"\n"
-"Ако изберете мишка различна от тази по подразбиране, ще ви бъде предоставен\n"
-"екран за проба. Използвайте бутоните и колелцето, за да проверите, че\n"
-"настройката е дора. Ако мишката не работи, както трябва, натиснете интервал\n"
-"или СЕ ВЪРНЕТЕ към \"Отказ\" и изберете пак."
-
-#: ../../help.pm_.c:638
-msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
-msgstr ""
-"Моля, изберете верния порт. Например, портът COM1 под Windows под GNU/Linux\n"
-"се нарича ttyS0."
-
-#: ../../help.pm_.c:642
-msgid ""
-"This is the most crucial decision in regards with the security of your\n"
-"GNU/Linux system: you have to enter the \"root\" password. \"Root\" is the\n"
-"system administrator and is the only one authorized to make updates, add\n"
-"users, change the overall system configuration, and so on. In short,\n"
-"\"root\" can do everything! That is why you must choose a password that is\n"
-"difficult to guess -- DrakX will tell you if it is too easy. As you can\n"
-"see, you can choose not to enter a password, but we strongly advise you\n"
-"against this if only for one reason: do not think that because you booted\n"
-"GNU/Linux that your other operating systems are safe from mistakes. Since\n"
-"\"root\" can overcome all limitations and unintentionally erase all data on\n"
-"partitions by carelessly accessing the partitions themselves, it is\n"
-"important for it to be difficult to become \"root\".\n"
+" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
+"installed on your hard drive and takes all the space available on it, you\n"
+"have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
+"without the loss of any data, provided you previously defragment the\n"
+"Windows partition and that it uses the FAT format. Backing up your data is\n"
+"strongly recommended.. Using this option is recommended if you want to use\n"
+"both Mandrake Linux and Microsoft Windows on the same computer.\n"
"\n"
-"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"
-"easy to compromise a system.\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"then when you started. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software.\n"
"\n"
-"However, please do not make the password too long or complicated because\n"
-"you must be able to remember it without too much effort.\n"
+" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
+"present on your hard drive and replace them with your new Mandrake Linux\n"
+"system, choose this option. Be careful, because you will not be able to\n"
+"undo your choice after you confirm.\n"
"\n"
-"The password will not be displayed on screen as you type it in. Hence, you\n"
-"will have to type the password twice to reduce the chance of a typing\n"
-"error. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will have to be used the first time you connect.\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
-"In Expert mode, you will be asked if you will be connecting to an\n"
-"authentication server, like NIS or LDAP.\n"
+" * \"Remove Windows\": this will simply erase everything on the drive and\n"
+"begin fresh, partitioning everything from scratch. All data on your disk\n"
+"will be lost.\n"
"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one as \"authentication\". If you have no\n"
-"clue, ask your network administrator.\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-"If your computer is not connected to any administrated network, you will\n"
-"want to choose \"Local files\" for authentication."
+" * \"Custom disk partitionning\": choose this option if you want to\n"
+"manually partition your hard drive. Be careful -- it is a powerful but\n"
+"dangerous choice and you can very easily lose all your data. That's why\n"
+"this option is really only recommended if you have done something like this\n"
+"before and have some experience. For more instructions on how to use the\n"
+"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
+"the ``Starter Guide''."
msgstr ""
-
-#: ../../help.pm_.c:678
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
-"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
-"accordingly, depending on what it finds there:\n"
+"В този момент трябва изберете къде на твърдия си диска да инсталирате "
+"вашата\n"
+"Mandrake Linux операционна система. Ако твърдият ви диск е празен или друга\n"
+"операционна система използва цялото пространство, ще трябва да го "
+"разделите.\n"
+"Казано простичко, разделянето на твърдия диск се състои в логическо "
+"разделяне\n"
+"цел да се създаде място за инсталация на новата Mandrake Linux система.\n"
"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. Hence, you will be able to load either GNU/Linux or another\n"
-"OS;\n"
+"Тъй като процесът на разделяне обикновено е необратим, разделянето може да\n"
+"изглежда плашещ и стряскащ, ако сте неопитен потребител. Слава Богу, има\n"
+"магьосник, който опростява този процес. Преди да започнете, консултирайте "
+"се\n"
+"с ръководството и не бързайте.\n"
"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
+"Ако пускате инсталацията в Експертен режим, ще бъдете въведени в DiskDrake,\n"
+"разделящия инструмент на Mandrake Linux, който ви позволява да донастроите\n"
+"дяловете си. Вижте главата DiskDrake от ръководството. От инсталационния\n"
+"интерфейс можете да използвате магьосниците, като натиснете бутона\n"
+"\"Магьосник\" на диалога.\n"
"\n"
-"if in doubt, DrakX will display a dialog with various options.\n"
+"Ако дяловете са вече определени, дали от предишна инсталация или от друг\n"
+"иструмент за разделяне, просто изберете на кой да инсталирате Linux\n"
+"системата.\n"
"\n"
-" * \"Bootloader to use\": you have three choices:\n"
+"Ако дяловете не са определени, ще трябва да създадете такива използвайки\n"
+"магьосника. В зависимост от настройката на твърдия диск, са възможни "
+"няколко\n"
+"опции:\n"
"\n"
-" * \"GRUB\": if you prefer grub (text menu);\n"
+" * \"Използвай свободното пространство\": тази опция просто ще доведе то\n"
+"автоматично поделяне на празното пространство на твърдия ви диск. Няма да\n"
+"бъдете питани за това.\n"
"\n"
-" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
-"interface;\n"
+" * \"Използвай съществуващ дял\": магьосникът е засякъл един или повече\n"
+"съществуващи Linux дялове на твърдия ви диск. Ако искате да ги използвате,\n"
+"изберете тази опция.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
-"interface.\n"
+" * \"Използвай свободното пространство на Windows дял\": ако имате "
+"инсталиран\n"
+"Microsoft Windows на твърдия си диск и той заема цялото достъпно\n"
+"пространство на него, трябва да освободите място за Linux данни. За да\n"
+"направитетова, можете да изтриете Microsoft Windows дяла и данните (вижте\n"
+"решенията \"Изтрий целия диск\" или \"Екпертен режим\") или да промените\n"
+"големината на Microsoft Windows дяла. Промяната на големината може да бъде\n"
+"извършена без загуба на данни. Това решение се препоръчва, ако искате\n"
+"едновременно Mandrake Linux и Microsoft Windows на един и същи компютър.\n"
"\n"
-" * \"Boot device\": in most cases, you will not change the default\n"
-"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
-"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
+" Преди да изберете тази опция, моля, разберете, че след тази процедура,\n"
+"големината на Microsoft Windows дяла ще бъде по-малка, отколкото преди "
+"това.\n"
+"Ще имате по-малко място под Microsoft Windows за съхраняване на данни или "
+"за\n"
+"инсталира на нов софтуер.\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"
-"another boot entry than the default one.\n"
+" * \"Изтрий целия диск\": ако искате да изтриете всички данни и дялове, "
+"които\n"
+"съществуват на вашия твърд диск и да ги замените с новата Mandrake Linux\n"
+"система, изберете тази опция. Бъдете внимателни с това решения, защото няма\n"
+"да можете да върнете обратно избора си, след като потвърдите.\n"
"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"Cancel\" here), you must ensure that you have a way to boot your Mandrake\n"
-"Linux system! Also, be sure you know what you do before changing any of the\n"
-"options. !!\n"
+" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
+"загубени !!\n"
"\n"
-"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
-"options, which are reserved for the expert user."
-msgstr ""
+" * \"Изтрий Windows\": Това просто ще изтрие всичко на диска и ще започне "
+"на\n"
+"чисто, разделяне от раз. Всякакви данни на диска ви ще бъдат загубени.\n"
+"\n"
+" !! Ако изберете тази опция, всички данни на диска ви ще бъдат "
+"загубени !!\n"
+"\n"
+" * \"Експертен режим\": изберете тази опция, ако искате ръчно да разделите\n"
+"твърдия си диск. Бъдете внимателни - това е мощен, но опасен избор. Можете\n"
+"много лесно да загубите всички данни. Така че не избирайте това, ако не\n"
+"знаете какво правите."
-#: ../../help.pm_.c:718
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options which will be available at boot time will be displayed.\n"
+"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
+"handy.\n"
"\n"
-"If there is another operating system installed on your machine, it will\n"
-"automatically be added to the boot menu. Here, you can choose to fine-tune\n"
-"the existing options. Select an entry and click \"Modify\" to modify or\n"
-"remove it. \"Add\" creates a new entry. and \"Done\" goes on to the next\n"
-"installation step.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"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!"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
+"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
+"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
+"least two situations where having a boot floppy is critical:\n"
+"\n"
+" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
+"of your main disk (unless you are using another boot manager), to allow you\n"
+"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
+"your system). If at some point you need to reinstall Windows, the Microsoft\n"
+"install process will rewrite the boot sector and remove your ability to\n"
+"start GNU/Linux!\n"
+"\n"
+" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
+"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
+"fair number of system tools for restoring a system that has crashed due to\n"
+"a power failure, an unfortunate typing error, a forgotten root password, or\n"
+"any other reason.\n"
+"\n"
+"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+"floppy disk must be blank or have non-critical data on it - DrakX will\n"
+"format the floppy and will rewrite the whole disk."
msgstr ""
-"LILO (или LInux LOader) и Grub са bootloader-и: те мога да стартират\n"
-"GNU/Linux или коя да е друга операционна система съществуваща на компютъра "
-"ви.\n"
-"Обикновенно, тези други операционни система се засичат и инсталират\n"
-"правилно. Ако това не става при вас, можете да добавяте записи на ръка в\n"
-"този екран. Гледайте да изберете верни параметри.\n"
+"Mandrake Linux CDROM-ът има вграден спасителен режим. Можете да го\n"
+"достигнете, като стартирате от CDROM-а, натиснете клавиша >>F1<< и напишете\n"
+">>rescue<<. Но случай, че компютърът не може да стартира от CDROM, ще "
+"трябва\n"
+"да се върнете към тази стъпка за помощ в поне две ситуации:\n"
"\n"
+" * когато иснталирате boot loader, DrakX ще презапише стартовия сектор (MBR) "
+"на главния ви диск (освен ако не използвате друг стартов мениджър), така че\n"
+"да стартирате Windows или GNU/Linux (ако имате Windows в системата си). Ако\n"
+"се нуждаете да преинсталирате Windows, инсталационния процес на Microsoft\n"
+"ще презапише стартовия сектор и няма да можете да пуснете вашия GNU/Linux!\n"
"\n"
-"Може да не искате да давате достъп до тези операционни системи на никой,\n"
-"в който случай можете да изтриете съответните записи. Но в такъв случай,\n"
-"ще се нуждаете от boot-дискета, за да ги стартирате !"
+" * ако се появи проблем и не можете да пуснете GNU/Linux от твърдия си "
+"диск,\n"
+"тази дискета ще има за цел само да стартира GNU/Linux. Тя съдържа "
+"задоволителен\n"
+"брой системни инструменти за възстановяване на система, която е забила след\n"
+"срив в захранването, случайна грешка, грешка в паролата или някаква друга\n"
+"причина.\n"
+"\n"
+"Когато цъкнете на тази стъпка, ще бъдете помолени да поставите диск в\n"
+"устройството. Дискетата, която вкарате, трябва да бъде празна или да "
+"съдържа\n"
+"данни, от които не се нуждаете. Няма нужда да я форматирате, тъй като DrakX\n"
+"ще презапише цялата дискета."
-#: ../../help.pm_.c:732
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You must indicate where you wish to place the information required to boot\n"
-"GNU/Linux.\n"
-"\n"
-"Unless you know exactly what you are doing, choose \"First sector of drive\n"
-"(MBR)\"."
+"Finally, you will be asked whether you want to see the graphical interface\n"
+"at boot. Note this question will be asked even if you chose not to test the\n"
+"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
+"act as a server, or if you were not successful in getting the display\n"
+"configured."
msgstr ""
-"Трябва да посочите къде желаете да\n"
-"поставите информацията, необходима за стартирането на GNU/Linux.\n"
-"\n"
-"Ако не сте сигурни в това, което правите, изберете \"Първия сектор на\n"
-"устройството (MBR)\"."
+"Накрая, ще бъдете попитани дали искате да виждате графичния интерфейс при\n"
+"зареждане. Отбележете, че този въпрос ще ви бъде зададен даже ако изберете,\n"
+"да не тествате настройката. Очевидно, бихте отговорили с \"Не\", ако "
+"машината\n"
+"ще работи като сървър или ако няма успешно настроен дисплей."
-#: ../../help.pm_.c:739
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Here, we select a printing system for your computer. Other OSes may offer\n"
-"you one, but Mandrake Linux offers two.\n"
-"\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 first 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\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."
+"In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
msgstr ""
-#: ../../help.pm_.c:759
+#: ../../help.pm:1
+#, c-format
msgid ""
-"DrakX now detects any IDE device present in your computer. It will also\n"
-"scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
+"Resolution\n"
"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
-"have no SCSI hardware. If you are unsure, you can check the list of\n"
-"hardware detected in your machine by selecting \"See hardware info\" and\n"
-"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
-"button to return to the SCSI interface question.\n"
-"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Monitor\n"
"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to manually provide options to the driver."
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own."
msgstr ""
-#: ../../help.pm_.c:781
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
-"For other OSes, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
+"You will be presented the list of different parameters to change to get an\n"
+"optimal graphical display: Graphic Card\n"
"\n"
-"For Linux, there are a few possible options:\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs.\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"
"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
+"Monitor\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
+" The installer can normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is not the case, you can choose in\n"
+"this list the monitor you actually own.\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
+"Resolution\n"
"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a filesystem check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
+" You can choose here resolutions and color depth between those available\n"
+"for your hardware. Choose the one that best suit your needs (you will be\n"
+"able to change that after installation though). Asample of the chosen\n"
+"configuration is shown in the monitor.\n"
"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
-msgstr ""
-
-#: ../../help.pm_.c:828
-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"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
"\n"
-"Yaboot's main options are:\n"
+"Test\n"
"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"Yes\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
+"Options\n"
"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
+" You can here choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"No\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Graphic Card\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
+" The installer can normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose in this list the card you actually own.\n"
"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then proposed to choose the server that\n"
+"best suits your needs."
msgstr ""
-#: ../../help.pm_.c:860
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may (or may not), see the following entries:\n"
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
+"system clock and the hardware clock are in the same timezone. This is\n"
+"useful when the machine also hosts another operating system like Windows.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
+"The \"Automatic time synchronization \" option will automatically regulate\n"
+"the clock by connecting to a remote time server on the Internet. For this\n"
+"feature to work, you must have a working Internet connection. It is best to\n"
+"choose a time server located near you. This option actually installs a time\n"
+"server that can used by other machines on your local network."
+msgstr ""
+
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"This step is used to choose which services you wish to start at boot time.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
+"DrakX will list all the services available on the current installation.\n"
+"Review each one carefully and uncheck those which are not always needed at\n"
+"boot time.\n"
"\n"
-" * \"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"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you are not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard. Consult the correpsonding chapter of the ``Starter\n"
-"Guide'' for more information on how to setup a new printer. The interface\n"
-"presented there is similar to the one used at installation time;\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services that you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
+msgstr ""
+"Сега можете да изберете кои услуги да се пускат при стартиране.\n"
"\n"
-" * \"Sound card\": if a sound card is detected on your system, it will be\n"
-"displayed here.\n"
+"Тук са представени всички услуги, достъпни с настоящата инсталация.\n"
+"Прегледайте ги внимателно и изключете тези, които не ви трябват винаги при "
+"стартиране.\n"
"\n"
-" * \"TV card\": if a TV card is detected on your system, it will be\n"
-"displayed here.\n"
+"Можете видите кратък обяснителен текст за услугата, като поставите курора на "
+"мишката си\n"
+"над името на услугата. Ако не сте сигурни, дали услугата е полезна или не, "
+"по-добре\n"
+"е да оставите избора по подразбиране.\n"
"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
+"Внимавайте с тази стъпка, ако смятате да използвате машината си като "
+"сървър:\n"
+"сигурно не бихте искали да пускате услуги, от които не се нуждаете. Моля,\n"
+"запомнете, че някои услуги могат да бъдат опасни, ако са включени на "
+"сървъра.\n"
+"По принцип, избирайте само услугите, от които наистина се нуждаете."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm:1
+#, fuzzy, c-format
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!"
+"You will now set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"Next\n"
+"->\". Mandrake Linux will attempt to autodetect network devices and modems.\n"
+"If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
+"also choose not to configure the network, or to do it later, in which case\n"
+"clicking the \"Cancel\" button will take you to the next step.\n"
+"\n"
+"When configuring your network, the available connections options are:\n"
+"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
+"simple LAN connection (Ethernet).\n"
+"\n"
+"We will not detail each configuration option - just make sure that you have\n"
+"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
+"from your Internet Service Provider or system administrator.\n"
+"\n"
+"You can consult the ``Starter Guide'' chapter about Internet connections\n"
+"for details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection."
msgstr ""
-"Изберете твърдия диск, който искате да изтрете, за да\n"
-"инсталирам новия ви Mandrake Linux дял. Внимание, всички данни на него ще "
-"бъдат загубени\n"
-"и няма да могат да се възстановят."
+"Ако искате да свържете компютъра си към Интернет или към локална мрежа, "
+"моля\n"
+"изберете подходящата опция. Моля, включете устройството си преди да "
+"изберете\n"
+"опцията, за да дадете възможност на DrakX да го засече.\n"
+"\n"
+"Mandrake Linux извършва настройката на Интернет връзката по време на\n"
+"инсталация. Достъпните връзки: обикновен модем, ISDN модем, ADSL връзка,\n"
+"кабелен модем и накрая обикновена LAN връзка (Ethernet).\n"
+"\n"
+"Тук няма подробно да разглеждаме всяка настройка. Просто бъдете сигурни, че\n"
+"имате достатъчно данни от Интернет доставчика си или системния\n"
+"админситратор.\n"
+"\n"
+"Можете да се консултирате с главата в ръководството за Интернет връзките за\n"
+"подробности за настройката или просто изчакайте системата ви да бъде\n"
+"инсталирана и използвайте програмата описана там, за да настроите връзката.\n"
+"\n"
+"Ако искате да настроите мрежата по-късно след инсталация или ако сте "
+"свършили\n"
+"с настройката на мрежата, цъкнете \"Отказ\"."
-#: ../../help.pm_.c:896
+#: ../../help.pm:1
+#, fuzzy, c-format
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"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
"\n"
-"Click on \"Cancel\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes are discovered after this version of Mandrake Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
+"\n"
+"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
+"which appears whenever the installer automatically selects a package to\n"
+"resolve a dependency issue. Some packages have relationships between each\n"
+"other such that installation of a package requires that some other program\n"
+"is already installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
msgstr ""
-"Цъкнете \"OK\", ако искате да изтриете всички данни и\n"
-"дялове съществуващи на този твърд диск. Внимание, след цъкане на \"OK\", "
-"нямада можете да възстановите каквито и да било данни и дялове съществуващи "
-"на този твърд диск,\n"
-"включително каквито и да е Windows данни.\n"
+"Накрая, в зависимост от избора ви дали да избирате пакети един по един, ще\n"
+"ви бъде представено дърво съдържащо всички пакети подредени по групи и\n"
+"подргрупи. Докато обхождате дървото, можете да изберете цели групи, "
+"подгрупи\n"
+"или отделни пакети.\n"
"\n"
-"Цъкнете \"Отмяна\", за да отмените тази операция без загуба да данните и\n"
-"дяловете съществуващи на този твърд диск."
+"Когато посочите пакет от дървото, ще се появи описание вдясно. Когато\n"
+"изборът е приключен, цъкнете бутона \"Инсталирай\", който ще пусне процеса\n"
+"на инсталация. В зависимост от скоростта на хардуера ви и броя на пакетите,\n"
+"които искате да бъдат инсталирани, процесът може да отнеме известно време.\n"
+"Очакваното време за приключване на процеса, че бъде показано на екрата, за\n"
+"да ви помогне да прецените дали имате достатъчно време да се насладите на\n"
+"чаша кафе.\n"
+"\n"
+"!! Ако е избран сървърен пакет, било то умишлено или защото е част от цяла\n"
+"група, ще бъдете помолени за потвърждение, че наистина искате този сървър\n"
+"да бъде инсталиран. В Mandrake Linux, всички сървъри тръгват по "
+"подразбиране\n"
+"при зареждане.Даже ако са сигурни и нямат известни проблеми, когато\n"
+"дистрибуцията се разпространява, може да се случи така, че да се появят\n"
+"дупки в сигурността, след като версията на Mandrake Linux е завършена. Ако\n"
+"не знаете за какво служи определена услуга или защо е инсталирана, цъкнете\n"
+"\"Не\". С цъкане на \"Да\" ще инсталирате изброени услуги и те ще бъдат\n"
+"стартирани автоматично по подразбиране. !!\n"
+"\n"
+"Опцията \"Автоматични зависимости\" изключва предупредителните диалози,\n"
+"когато инсталаторът авоматично реши избере пакет. Това се случва, защото\n"
+"е решил, че се нуждае да задоволи зависимост с друг пакет, за да приключи\n"
+"успешно инсталацията.\n"
+"\n"
+"Малката иконка на дискетка в дъното на списъка позволява да заредите списък\n"
+"с пакети от предишна инсталация. Ако цъкнете на тази иконка, ще бъдете\n"
+"помолени да вкарате дискета създадена преди това в края на друга "
+"инсталация.\n"
+"Вижте втората подсказка по време на последната стъпка, за това как да\n"
+"създадете такава дискета."
-#: ../../install2.pm_.c:111
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"Can't access kernel modules corresponding to your kernel (file %s is "
-"missing), this generally means your boot floppy in not in sync with the "
-"Installation medium (please create a newer boot floppy)"
+"It is now time to specify which programs you wish to install on your\n"
+"system. There are thousands of packages available for Mandrake Linux, and\n"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
+"\n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various containers, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' container installed.\n"
+"\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the applications that are in the workstation\n"
+"container.\n"
+"\n"
+" * \"Development\": if plan on using your machine for programming, choose\n"
+"the appropriate packages from the container.\n"
+"\n"
+" * \"Server\": if your machine is intended to be a server, select which of\n"
+"the more common services you wish to install on your machine.\n"
+"\n"
+" * \"Graphical Environment\": this is where you will choose your preferred\n"
+"graphical environment. At least one must be selected if you want to have a\n"
+"graphical interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"With X\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server.\n"
+"\n"
+" * \"Truly minimal install\": will install the absolute minimum number of\n"
+"packages necessary to get a working Linux system. With this installation\n"
+"you will only have a command line interface. The total size of this\n"
+"installation is 65 megabytes.\n"
+"\n"
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
msgstr ""
+"Сега е моментът да определите кои програми искате да бъдат инсталирани на\n"
+"системата ви. В Mandrake Linux дистрибуцията има хиляди пакети, но не е\n"
+"задължително да ги знаете наизуст.\n"
+"\n"
+"Ако извършвате стандартна инстлация от CDROM, първо ще бъдете попитани кои\n"
+"CD-та имате (в Експертен режим). Проверете заглавията на CD-тата и посочете\n"
+"кутийките съответстващи на CD-тата, с които разполагате. Цъкнете \"OK\",\n"
+"когато сте готови да продължите.\n"
+"\n"
+"Пакетите са подредени в групи съответстващи на практическата употреба на\n"
+"машината ви. Групите, сами по себе си, са подредени в четири секции:\n"
+"\n"
+" * \"Работна станция\": ако смятате да използвате машината си като работна "
+"станция,\n"
+"изберете една или повече съответните групи.\n"
+"\n"
+" * \"Разработка\": ако машината ви ще бъде използване за програмиране, "
+"изберете\n"
+"желаната(ите) група(и).\n"
+"\n"
+" * \"Сървър\": накрая, ако машината ви ще бъде използвана за сървър, ще\n"
+"можете да изберете кои от най-често използваните услуги искате да имате\n"
+"инсталирани на машината.\n"
+"\n"
+" * \"Графична среда\": тук можете да изберете предпочитаната графична "
+"среда.\n"
+"Поне една трябва да бъде избрана, ако искате да имате графична среда !\n"
+"\n"
+"Премествайки курсора на мишната над името на групата, ще видите кратък\n"
+"обясненителен текст за нея.\n"
+"\n"
+"Можете да цъкнете кутийката \"Индивидуален избор на пакети\", която е "
+"полезна,\n"
+"ако сте запознати с пакетите, които ще ви бъдат предложени или ако искате "
+"да\n"
+"имате пълен контрол над това, което да бъде инсталирано.\n"
+"\n"
+"Ако сте започнали инсталацията в режим на \"Обновяване\", можете да "
+"изключите\n"
+"всички групи, за да избегнете инсталирането на нови пакети. Това е полезно\n"
+"при поправка или обновяване на съществуващата система."
-#: ../../install2.pm_.c:167
-#, c-format
-msgid "You must also format %s"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM so it will eject\n"
+"the current CD and ask you to insert the correct CD as required."
msgstr ""
+"Инсталацията на Mandrake Linux е разположена на няколко CDROM-а. DrakX\n"
+"знае дали избран пакет не се намира на друг CDROM или ще извади текущото\n"
+"CD и ще ви остави да вкарате това, от което има нужда."
-#: ../../install_any.pm_.c:423
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"You have selected the following server(s): %s\n"
+"Here are Listed the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-"These servers are activated by default. They don't have any known security\n"
-"issues, but some new could be found. In that case, you must make sure to "
-"upgrade\n"
-"as soon as possible.\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-"Do you really want to install these servers?\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-"Избрали сте следния(те) сървър(и): %s\n"
+"По-горе са изброени засечените Linux дялове съществуващи\n"
+"на твърдия ви диск. Можете да запазите избора направен от магьосника, те са\n"
+"добри за обща употреба. Ако ги промените, трябва да поне да определите\n"
+"root дял (\"/\"). Не избирайте прекалено малки дялове, защото няма да "
+"можете\n"
+"да инсталирате достатъчно софтуер. Ако искате да съхранявате данните си на\n"
+"отделен дял, трябва да изберете \"/home\" (възможно е само, ако имате "
+"повече\n"
+"от един Linux дял).\n"
"\n"
"\n"
-"Тези сървъри се активират по подразбиране. Те нямат известни проблеми със\n"
-"сигурността, но може да се намерят нови. В този случай, ще трябва да сте\n"
-"сигурни, че ще надграждате възможно най-бързо.\n"
+"За информация, всеки дял е показан, както следва: \"Име\", \"Капацитет\".\n"
"\n"
"\n"
-"Наистина ли искате да инсталирате тези сървъри ?\n"
+"\"Името\" се кодира както следва: \"тип на диска\", \"номер на диска\",\n"
+"\"номер на дял\" (например, \"hda1\").\n"
+"\n"
+"\n"
+"\"Типът на диска\" може да е \"hd\", ако е IDE твърд диск, или \"sd\", ако "
+"е\n"
+"SCSI твърд диск.\n"
+"\n"
+"\n"
+"\"Номерът на диска\" винаги е буквата след \"hd\" или \"sd\". При IDE "
+"дискове:\n"
+"\n"
+" * \"a\" означава \"master диск на първия IDE контролер\",\n"
+" * \"b\" означава \"slave диск на първия IDE контролер\",\n"
+" * \"c\" означава \"master диск на втория IDE контролер\",\n"
+" * \"d\" означава \"slave диск на втория IDE контролер\".\n"
+"\n"
+"\n"
+"При SCSI устройства, \"a\" означава \"първи твърд диск\", \"b\" означава "
+"\"втори твърд диск\" и т.н.."
-#: ../../install_any.pm_.c:441
-#, c-format
+#: ../../help.pm:1
+#, fuzzy, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
+"GNU/Linux is a multi-user system, meaning each user can have their own\n"
+"preferences, their own files and so on. You can read the ``Starter Guide''\n"
+"to learn more about multi-user systems. But unlike \"root\", which is the\n"
+"system administrator, the users you add at this point will not be\n"
+"authorized to change anything except their own files and their own\n"
+"configuration, protecting the system from unintentional or malicious\n"
+"changes that impact the system as a whole. You will have to create at least\n"
+"one regular user for yourself -- this is the account which you should use\n"
+"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
+"to do anything and everything, it may also be very dangerous! A mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, the worst that will happen is that you will lose\n"
+"some information, but not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you typed in and copy it to the \"User name\" field, which is the name this\n"
+"user will enter to log onto the system. If you like, you may override the\n"
+"default and change the username. The next step is to enter a password. From\n"
+"a security point of view, a non-privileged (regular) user password is not\n"
+"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
+"making it blank or too simple: after all, your files could be the ones at\n"
+"risk.\n"
+"\n"
+"Once you click on \"Accept user\", you can add other users. Add a user for\n"
+"each one of your friends: your father or your sister, for example. Click\n"
+"\"Next ->\" when you have finished adding users.\n"
"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
"\n"
-"Do you really want to remove these packages?\n"
+"When you are finished adding all users, you will be asked to choose a user\n"
+"that can automatically log into the system when the computer boots up. If\n"
+"you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Next\n"
+"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
+"to use this feature?\" box."
msgstr ""
+"GNU/Linux е многопотребителска система, която означава, че всеки потребител "
+"може\n"
+"да има свои предпочетания, файлове и т.н.. можете да прочетете Ръковоството "
+"на\n"
+"Потребителя, за да научите повече.\n"
+"За разлика от Root, който е администраторът, потребителите, които ще "
+"добавите тук\n"
+"няма да могат да променят нищо освен собствените си файлове и техните "
+"настройки.\n"
+"Ще трябва да създадете поне един обикновен потребител за себе си.\n"
+"С този акаунт ще трябва да влизате за рутинна дейност. Въпреки това "
+"практиката\n"
+"да влизате като root ежедневно, може да бъде много опасна ! И най-"
+"малкатагрешка\n"
+"може да означава, че системата ви няма да работи повече. Ако направите някоя "
+"сериозна\n"
+"грешка като потребител, това може са да доведе до загуба на част от "
+"информацията,\n"
+"но не и на цялата система.\n"
+"\n"
+"Първо, трябва да си въведете името. Това не е задължително, разбира се, "
+"всъщност\n"
+"можете да въведете каквото и да е. DrakX след това ще избере първата "
+"въведена\n"
+"в кутийката дума и ще го изкара като потребителско име. Това е името, с "
+"което\n"
+"всъщност определеният потребител ще влиза в системата. Можете да го "
+"промените.\n"
+"Трябва да въведете и парола тук. Паролата на непревилегирован (обикновен) "
+"потребител\n"
+"не е толкова фатална като тази на Root от гледна точка на сигурността, но "
+"все\n"
+"пак няма причина да я подценявата, тъй като рискувате файловете си.\n"
+"\n"
+"След като цъкнете на \"Приеми потребител\", можете да добавите колкото си "
+"искате.\n"
+"Добавете по един потребител за всеки от приятелите си: баща си, сестра си, "
+"например.\n"
+"Когато сте добавили всички потребители, които искате, цъкнете Готово.\n"
+"\n"
+"Цъкнете на бутона \"Напредничав\", за да промените обвивката по подразбиране "
+"на\n"
+"потребителя (bash по подразбиране)."
-#: ../../install_any.pm_.c:471
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Не можете да използвате broadcast без NIS домейн"
+#: ../../help.pm:1
+#, fuzzy, c-format
+msgid ""
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
+"computer."
+msgstr ""
+"Преди да продължите, трябва внимателно да прочетете условията на лиценза. "
+"Той\n"
+"покрива цялата Mandrake Linux дистрибуция, и, ако не сте съгласни с всички "
+"условия\n"
+"в него, цъкнете на бутона Отказ. Това незабавно ще приключи инсталацията. За "
+"да\n"
+"продължите с инсталацията, цъкнете на бутона Приеми."
-#: ../../install_any.pm_.c:879
+#: ../../install2.pm:1
#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
-msgstr "Сложете FAT форматирана дискета в устройство %s"
-
-#: ../../install_any.pm_.c:883
-msgid "This floppy is not FAT formatted"
-msgstr "Тази дискета не е форматирана на FAT"
+msgid "You must also format %s"
+msgstr ""
-#: ../../install_any.pm_.c:895
+#: ../../install2.pm:1
+#, c-format
msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+"Can't access kernel modules corresponding to your kernel (file %s is "
+"missing), this generally means your boot floppy in not in sync with the "
+"Installation medium (please create a newer boot floppy)"
msgstr ""
-"За да използвате запазен избор на пакети, стартирайте инсталацията с ``linux "
-"defcfg=floppy''"
-#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
+#: ../../install_any.pm:1
#, c-format
-msgid "Error reading file %s"
-msgstr "Грешка при четенето на файла %s"
-
-#: ../../install_any.pm_.c:1040
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"
@@ -4317,111 +2990,187 @@ msgstr ""
"създадени нови файлови системи. Моля проверете твърдия си диск си за "
"причината за този проблем"
-#: ../../install_interactive.pm_.c:21
+#: ../../install_any.pm:1 ../../partition_table.pm:1
+#, c-format
+msgid "Error reading file %s"
+msgstr "Грешка при четенето на файла %s"
+
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
-"Част от хардуера на компютъра ви се нуждае от ``собствените си'' драйвери, "
-"за да работи.\n"
-"Можете да намерите повече информация за това на: %s"
+"За да използвате запазен избор на пакети, стартирайте инсталацията с ``linux "
+"defcfg=floppy''"
+
+#: ../../install_any.pm:1
+#, c-format
+msgid "This floppy is not FAT formatted"
+msgstr "Тази дискета не е форматирана на FAT"
-#: ../../install_interactive.pm_.c:56
+#: ../../install_any.pm:1
+#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Сложете FAT форматирана дискета в устройство %s"
+
+#: ../../install_any.pm:1
+#, c-format
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Не можете да използвате broadcast без NIS домейн"
+
+#: ../../install_any.pm:1
+#, c-format
msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
-"Трябва да имате root-дял.\n"
-"Затова създайте дял (или цъкнете на съществуващ).\n"
-"Тогава изберете действие ``Място на монтиране'' и го сложете `/'"
-#: ../../install_interactive.pm_.c:61
-msgid "You must have a swap partition"
-msgstr "Трябва да имате swap-дял"
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
+#, c-format
+msgid "No"
+msgstr "Не"
-#: ../../install_interactive.pm_.c:62
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Yes"
+msgstr "Да"
+
+#: ../../install_any.pm:1
+#, fuzzy, c-format
msgid ""
-"You don't have a swap partition.\n"
+"You have selected the following server(s): %s\n"
"\n"
-"Continue anyway?"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
-"Нямате swap-дял\n"
+"Избрали сте следния(те) сървър(и): %s\n"
"\n"
-"Да продължа ли все пак ?"
+"\n"
+"Тези сървъри се активират по подразбиране. Те нямат известни проблеми със\n"
+"сигурността, но може да се намерят нови. В този случай, ще трябва да сте\n"
+"сигурни, че ще надграждате възможно най-бързо.\n"
+"\n"
+"\n"
+"Наистина ли искате да инсталирате тези сървъри ?\n"
-#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Трябва да имате FAT дял монтиран в /boot/efi"
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System configuration"
+msgstr "Настройка на цветове"
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "Използвай свободното място"
+#: ../../install_gtk.pm:1
+#, fuzzy, c-format
+msgid "System installation"
+msgstr "SILO инсталация"
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr "Няма достатъчно място за създаване на нов дял"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing down the network"
+msgstr "Изключване на мрежата"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partitions"
-msgstr "Изпозване на съществуващ дял"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing up the network"
+msgstr "Включвам мрежата"
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
-msgstr "Няма дял, който мога да използвам"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Неуспешно разделяне на: %s"
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr "Използвай за Windows дялът за loopback"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:"
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr "Кой дял искате да използвате за Linux4Win ?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "I can't find any room for installing"
+msgstr "Не мога да намеря никакво място за инсталация"
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr "Изберете големините"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Сега можете да разделите %s.\n"
+"Когато сте готови, не забравяйте да запишете използвайки `w'"
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr "Големина на root-дяла в MB: "
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use fdisk"
+msgstr "Използвай fdisk"
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr "Големина на swap-дяла в MB: "
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "Клиентско разделяне на диска"
-#: ../../install_interactive.pm_.c:126
-msgid "Use the free space on the Windows partition"
-msgstr "Използвай свободното място на Windows дяла"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "ВСИЧКИ съществуващи дялове и даннитe върху тях на %s ще бъдат загубени"
-#: ../../install_interactive.pm_.c:129
-msgid "Which partition do you want to resize?"
-msgstr "Кой дял желаете да промените?"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "имате повече от един твърди дискове, кой да използвам за инсталацията?"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Erase entire disk"
+msgstr "Изтрий целия диск"
+
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Remove Windows(TM)"
+msgstr "Премахни Windows(TM)"
+
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+"Няма FAT дялове за смяна на големината или за използване като loopback (или "
+"няма достатъчно място на диска)"
+
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Неуспешно преразделяне на FAT: %s"
+
+#: ../../install_interactive.pm:1
+#, c-format
msgid "Resizing Windows partition"
msgstr "Изчислявам границите на Windows файловата система"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
-"Не възможност за работа с вашия FAT дял, \n"
-"поради получената грешка: %s"
+msgid "Resizing"
+msgstr "Промяна на големината"
-#: ../../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:1
+#, c-format
+msgid "partition %s"
+msgstr "дял %s"
+
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which size do you want to keep for Windows on"
+msgstr "Колко искате да оставите за windows?"
-#: ../../install_interactive.pm_.c:138
-#, fuzzy
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
@@ -4441,318 +3190,167 @@ msgstr ""
"повторете инсталациаята. Би било добре да направите архив на данните си.\n"
"Когато сте сигурни, натиснете ОК."
-#: ../../install_interactive.pm_.c:148
-msgid "Which size do you want to keep for Windows on"
-msgstr "Колко искате да оставите за windows?"
-
-#: ../../install_interactive.pm_.c:149
-#, c-format
-msgid "partition %s"
-msgstr "дял %s"
-
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm:1
#, c-format
-msgid "FAT resizing failed: %s"
-msgstr "Неуспешно преразделяне на FAT: %s"
-
-#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partition to resize or to use as loopback (or not enough "
-"space left)"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-"Няма FAT дялове за смяна на големината или за използване като loopback (или "
-"няма достатъчно място на диска)"
-
-#: ../../install_interactive.pm_.c:177
-msgid "Erase entire disk"
-msgstr "Изтрий целия диск"
-
-#: ../../install_interactive.pm_.c:177
-msgid "Remove Windows(TM)"
-msgstr "Премахни Windows(TM)"
-
-#: ../../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:183
-#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "ВСИЧКИ съществуващи дялове и даннитe върху тях на %s ще бъдат загубени"
-
-#: ../../install_interactive.pm_.c:191
-msgid "Custom disk partitioning"
-msgstr "Клиентско разделяне на диска"
+"Вашият Windows дял е много фрагментиран, моля първо стартирайте ''defrag''"
-#: ../../install_interactive.pm_.c:195
-msgid "Use fdisk"
-msgstr "Използвай fdisk"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "Computing the size of the Windows partition"
+msgstr "Използвай свободното място на Windows дяла"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"Сега можете да разделите %s.\n"
-"Когато сте готови, не забравяйте да запишете използвайки `w'"
-
-#: ../../install_interactive.pm_.c:227
-msgid "You don't have enough free space on your Windows partition"
-msgstr "Няма достатъчно свободно място на дяла"
-
-#: ../../install_interactive.pm_.c:243
-msgid "I can't find any room for installing"
-msgstr "Не мога да намеря никакво място за инсталация"
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:"
+"Не възможност за работа с вашия FAT дял, \n"
+"поради получената грешка: %s"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Partitioning failed: %s"
-msgstr "Неуспешно разделяне на: %s"
-
-#: ../../install_interactive.pm_.c:260
-msgid "Bringing up the network"
-msgstr "Включвам мрежата"
-
-#: ../../install_interactive.pm_.c:265
-msgid "Bringing down the network"
-msgstr "Изключване на мрежата"
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Появи се грешка, но не знам как да се справя с нея деликатно.\n"
-"Можете да продължите на свой риск."
+msgid "Which partition do you want to resize?"
+msgstr "Кой дял желаете да промените?"
-#: ../../install_steps.pm_.c:211
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Дублирай точката на монтиране %s"
+msgid "Use the free space on the Windows partition"
+msgstr "Използвай свободното място на Windows дяла"
-#: ../../install_steps.pm_.c:380
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
+#: ../../install_interactive.pm:1
+#, fuzzy, c-format
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
-"Някои важни пакети не се инсталираха както трябва.\n"
-"Или CDROM устройството ви или компакт диска ви е дефектен.\n"
-"Проверете компакт диска на инсталирания компютър използвайки \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"Няма FAT дялове за смяна на големината или за използване като loopback (или "
+"няма достатъчно място на диска)"
-#: ../../install_steps.pm_.c:450
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Welcome to %s"
-msgstr "Добре дошли в %s"
-
-#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
-msgid "No floppy drive available"
-msgstr "Няма флопи устройство"
+msgid "Swap partition size in MB: "
+msgstr "Големина на swap-дяла в MB: "
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Навлизам в етап `%s'\n"
-
-#: ../../install_steps_gtk.pm_.c:146
-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 "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-"Вашата система е с малки ресурси. Може да имате проблеми с инсталирането\n"
-"на Mandrake Linux. Ако се появи проблем опитайте с текстовата инсалация. "
-"Зацелта,\n"
-"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'."
-
-#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
-msgid "Install Class"
-msgstr "Клас инсталация"
-
-#: ../../install_steps_gtk.pm_.c:160
-#, fuzzy
-msgid "Please choose one of the following classes of installation:"
-msgstr "Моля, изберете един от следните класове на инсталация:"
+msgid "Root partition size in MB: "
+msgstr "Големина на root-дяла в MB: "
-#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
-msgid "Package Group Selection"
-msgstr "Избор на група пакети"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Choose the sizes"
+msgstr "Изберете големините"
-#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
-msgid "Individual package selection"
-msgstr "Избиране на пакети един по един"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Кой дял искате да използвате за Linux4Win ?"
-#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Total size: %d / %d MB"
-msgstr "Обща големина: %d / %d MB"
+msgid "Use the Windows partition for loopback"
+msgstr "Използвай за Windows дялът за loopback"
-#: ../../install_steps_gtk.pm_.c:334
-msgid "Bad package"
-msgstr "Лош пакет"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "There is no existing partition to use"
+msgstr "Няма дял, който мога да използвам"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Name: %s\n"
-msgstr "Име: %s\n"
+msgid "Use existing partitions"
+msgstr "Изпозване на съществуващ дял"
-#: ../../install_steps_gtk.pm_.c:336
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Version: %s\n"
-msgstr "Версия: %s\n"
+msgid "Not enough free space to allocate new partitions"
+msgstr "Няма достатъчно място за създаване на нов дял"
-#: ../../install_steps_gtk.pm_.c:337
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Големина: %d KB\n"
+msgid "Use free space"
+msgstr "Използвай свободното място"
-#: ../../install_steps_gtk.pm_.c:338
+#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
-msgid "Importance: %s\n"
-msgstr "Важност: %s\n"
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "Трябва да имате FAT дял монтиран в /boot/efi"
-#: ../../install_steps_gtk.pm_.c:360
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"You can't select this package as there is not enough space left to install it"
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Не можете да оставите пакета немаркиран, защото нямате място да го "
-"инсталирате"
-
-#: ../../install_steps_gtk.pm_.c:365
-msgid "The following packages are going to be installed"
-msgstr "Следните пакети ще бъдат инсталирани"
-
-#: ../../install_steps_gtk.pm_.c:366
-msgid "The following packages are going to be removed"
-msgstr "Следните пакети ще бъдат премахнати"
-
-#: ../../install_steps_gtk.pm_.c:378
-msgid "You can't select/unselect this package"
-msgstr "Не можете да отбележете/деотбележете този пакет"
-
-#: ../../install_steps_gtk.pm_.c:390
-msgid "This is a mandatory package, it can't be unselected"
-msgstr "Това е нужен пакет, не може да бъде немаркиран"
-
-#: ../../install_steps_gtk.pm_.c:392
-msgid "You can't unselect this package. It is already installed"
-msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
+"Нямате swap-дял\n"
+"\n"
+"Да продължа ли все пак ?"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-"Този пакет трябва да бъде обновен\n"
-"Сигурни ли сте, че искате да го изключите ?"
-
-#: ../../install_steps_gtk.pm_.c:398
-msgid "You can't unselect this package. It must be upgraded"
-msgstr "Не можете да изключите този пакет. Той трябва да бъде обновен"
-
-#: ../../install_steps_gtk.pm_.c:403
-msgid "Show automatically selected packages"
-msgstr "Покажи автоматично отбелязаните пакети"
-
-#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#: ../../standalone/drakbackup_.c:4211
-msgid "Install"
-msgstr "Инсталирай"
-
-#: ../../install_steps_gtk.pm_.c:407
-msgid "Load/Save on floppy"
-msgstr "Зареди/Запази на дискета"
-
-#: ../../install_steps_gtk.pm_.c:408
-msgid "Updating package selection"
-msgstr "Обновяване на избора на пакети"
-
-#: ../../install_steps_gtk.pm_.c:413
-msgid "Minimal install"
-msgstr "Миминална инсталация"
-
-#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
-msgid "Choose the packages you want to install"
-msgstr "Изберете пакетите, които искате да инсталирате"
-
-#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
-msgid "Installing"
-msgstr "Инсталирам"
-
-#: ../../install_steps_gtk.pm_.c:450
-msgid "Estimating"
-msgstr "Пресмятане"
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "Time remaining "
-msgstr "Оставащо време "
-
-#: ../../install_steps_gtk.pm_.c:469
-msgid "Please wait, preparing installation..."
-msgstr "Моля, изчакайте, подготвяне на инсталацията"
-
-#: ../../install_steps_gtk.pm_.c:551
-#, c-format
-msgid "%d packages"
-msgstr "%d пакета"
+"Трябва да имате root-дял.\n"
+"Затова създайте дял (или цъкнете на съществуващ).\n"
+"Тогава изберете действие ``Място на монтиране'' и го сложете `/'"
-#: ../../install_steps_gtk.pm_.c:556
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Installing package %s"
-msgstr "Инсталиране на пакета %s"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-#: ../../standalone/drakautoinst_.c:197
-msgid "Accept"
-msgstr "Приеми"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-msgid "Refuse"
-msgstr "Откажи"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Част от хардуера на компютъра ви се нуждае от ``собствените си'' драйвери, "
+"за да работи.\n"
+"Можете да намерите повече информация за това на: %s"
-#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
+#: ../../install_messages.pm:1
#, c-format
msgid ""
-"Change your Cd-Rom!\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+"\n"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"Сменете CD-ROM !\n"
+"Поздравления, инсталацията е преключена.\n"
+"Премахнете стартовото устройство и натисене Enter за да рестартирайте.\n"
"\n"
-"Моля, сложете CD-ROM озаглавен \"%s\" в устройството и натиснете Ok, когато "
-"сте готови.\n"
-"Ако го нямате, натиснете Отмяна, за да избегнете инсталирането от този CD-"
-"ROM."
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
-#: ../../install_steps_interactive.pm_.c:804
-#: ../../install_steps_interactive.pm_.c:808
-msgid "Go on anyway?"
-msgstr "Да продължа ли все пак ?"
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
-msgid "There was an error ordering packages:"
-msgstr "Появи се грешка при поръчването на пакетите:"
+"\n"
+"За информация относно поправки, на тази версия на Mandrake Linux,\n"
+"се консултирайте с Errata, на адрес : \n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Информация за настройване на системата ви можете да намерите в\n"
+"слединсталационната глава от Official Mandrake Linux User's Guide."
-#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
-msgid "There was an error installing packages:"
-msgstr "Появи се грешка при инсталиране на пакетите:"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:10
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"\n"
"Warning\n"
@@ -4813,20 +3411,8 @@ msgstr ""
"съответните им автори и са защитени като интелектуална собственост от\n"
"законите за авторски права приложими за софтуерните програми.\n"
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr "Появи се грешка"
-
-#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
-msgid "Do you really want to leave the installation?"
-msgstr "Наистина ли искате да премахнете принтера \"%s\" ?"
-
-#: ../../install_steps_interactive.pm_.c:112
-msgid "License agreement"
-msgstr "Лицензионен договор"
-
-#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"Introduction\n"
"\n"
@@ -5065,3498 +3651,7311 @@ msgstr ""
"неговия оригинал на\n"
"английски.\n"
-#: ../../install_steps_interactive.pm_.c:197
-msgid "Are you sure you refuse the licence?"
+#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Навлизам в етап `%s'\n"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Go on anyway?"
+msgstr "Да продължа ли все пак ?"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error installing packages:"
+msgstr "Появи се грешка при инсталиране на пакетите:"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "Появи се грешка при поръчването на пакетите:"
+
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
+"Сменете CD-ROM !\n"
+"\n"
+"Моля, сложете CD-ROM озаглавен \"%s\" в устройството и натиснете Ok, когато "
+"сте готови.\n"
+"Ако го нямате, натиснете Отмяна, за да избегнете инсталирането от този CD-"
+"ROM."
-#: ../../install_steps_interactive.pm_.c:217
-#: ../../install_steps_interactive.pm_.c:995
-#: ../../standalone/keyboarddrake_.c:25
-msgid "Keyboard"
-msgstr "Клавиатура"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Refuse"
+msgstr "Откажи"
-#: ../../install_steps_interactive.pm_.c:218
-#, fuzzy
-msgid "Please choose your keyboard layout."
-msgstr "Моля, изберете подреждане на клавиатурата."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Accept"
+msgstr "Приеми"
-#: ../../install_steps_interactive.pm_.c:219
-msgid "Here is the full list of keyboards available"
-msgstr "Ето пълен списък на достръпните клавиатури"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Installing package %s"
+msgstr "Инсталиране на пакета %s"
-#: ../../install_steps_interactive.pm_.c:237
-msgid "Which installation class do you want?"
-msgstr "Какъв клас инсталация желаете ?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "%d packages"
+msgstr "%d пакета"
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Install/Update"
-msgstr "Инсталирай/Обнови"
+#: ../../install_steps_gtk.pm:1
+#, fuzzy, c-format
+msgid "No details"
+msgstr "Подробности"
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Is this an install or an update?"
-msgstr "Това нова инсталация ли е или обновяване ?"
+#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Details"
+msgstr "Подробности"
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Recommended"
-msgstr "Препоръчителна"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Please wait, preparing installation..."
+msgstr "Моля, изчакайте, подготвяне на инсталацията"
-#: ../../install_steps_interactive.pm_.c:253
-#: ../../install_steps_interactive.pm_.c:256
-msgid "Expert"
-msgstr "Експертна"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Time remaining "
+msgstr "Оставащо време "
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade"
-msgstr "Обновяване"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Estimating"
+msgstr "Пресмятане"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#, fuzzy
-msgid "Upgrade packages only"
-msgstr "Обновяване на избора на пакети"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing"
+msgstr "Инсталирам"
-#: ../../install_steps_interactive.pm_.c:282
-#, fuzzy
-msgid "Please choose the type of your mouse."
-msgstr "Моля, изберете тип на мишката."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "Изберете пакетите, които искате да инсталирате"
-#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
-msgid "Mouse Port"
-msgstr "Порт на мишката"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Minimal install"
+msgstr "Миминална инсталация"
-#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Моля, изберете към кой сериен порт е свързана мишката ви."
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Updating package selection"
+msgstr "Обновяване на избора на пакети"
-#: ../../install_steps_interactive.pm_.c:297
-msgid "Buttons emulation"
-msgstr "Имитация на бутони"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Load/Save on floppy"
+msgstr "Зареди/Запази на дискета"
-#: ../../install_steps_interactive.pm_.c:299
-msgid "Button 2 Emulation"
-msgstr "Имитация на 2 бутона"
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "<- Previous"
+msgstr "<- Предишен"
-#: ../../install_steps_interactive.pm_.c:300
-msgid "Button 3 Emulation"
-msgstr "Имитация на 3 бутона"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Install"
+msgstr "Инсталирай"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "Configuring PCMCIA cards..."
-msgstr "Настройка на PCMCIA картите ..."
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "Покажи автоматично отбелязаните пакети"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "Не можете да изключите този пакет. Той трябва да бъде обновен"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "Configuring IDE"
-msgstr "Настройка на IDE"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
+msgstr ""
+"Този пакет трябва да бъде обновен\n"
+"Сигурни ли сте, че искате да го изключите ?"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "IDE"
-msgstr "IDE"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It is already installed"
+msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
-#: ../../install_steps_interactive.pm_.c:345
-msgid "No partition available"
-msgstr "няма дялове на разположение"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "Това е нужен пакет, не може да бъде немаркиран"
-#: ../../install_steps_interactive.pm_.c:348
-msgid "Scanning partitions to find mount points"
-msgstr "Претърсване на дяловете за намиране на точки на монтиране"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't select/unselect this package"
+msgstr "Не можете да отбележете/деотбележете този пакет"
-#: ../../install_steps_interactive.pm_.c:356
-msgid "Choose the mount points"
-msgstr "Изберете места за монтиране"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "Следните пакети ще бъдат премахнати"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "Следните пакети ще бъдат инсталирани"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_gtk.pm:1
+#, c-format
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"
+"You can't select this package as there is not enough space left to install it"
msgstr ""
-"Няма свободно място за 1 МБ стартиращо поле ! Инсталацията ще продължи, но, "
-"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
-"DiskDrake"
+"Не можете да оставите пакета немаркиран, защото нямате място да го "
+"инсталирате"
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr "Не е намерен главен дял за надграждане"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Importance: %s\n"
+msgstr "Важност: %s\n"
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr "Root дял"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Големина: %d KB\n"
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr "Кой е root-дялът (/) на системата ви ?"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Version: %s\n"
+msgstr "Версия: %s\n"
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr "Налага се ра рестартирате, преди модификациите да предизвикат ефект"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Name: %s\n"
+msgstr "Име: %s\n"
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr "Изберете дяловете, които искате да форматирате"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Bad package"
+msgstr "Лош пакет"
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr "Проверка за лоши сектори ?"
+#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Other"
+msgstr "Друга"
-#: ../../install_steps_interactive.pm_.c:463
-msgid "Formatting partitions"
-msgstr "Форматиране на дялowe"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "Обща големина: %d / %d MB"
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Creating and formatting file %s"
-msgstr "Създаване и форматиране на файла %s"
+msgid "Next ->"
+msgstr "Следващ ->"
-#: ../../install_steps_interactive.pm_.c:470
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
+msgid "Individual package selection"
+msgstr "Избиране на пакети един по един"
-#: ../../install_steps_interactive.pm_.c:472
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
-"Няма достатъчно swap за приключване на инсталацията, моля добавете малко"
+#: ../../install_steps_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Help"
+msgstr "/_Помощ"
-#: ../../install_steps_interactive.pm_.c:479
-#, fuzzy
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "Търся налични пакети"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package Group Selection"
+msgstr "Избор на група пакети"
-#: ../../install_steps_interactive.pm_.c:480
-msgid "Looking for available packages..."
-msgstr "Търся налични пакети"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+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 "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Вашата система е с малки ресурси. Може да имате проблеми с инсталирането\n"
+"на Mandrake Linux. Ако се появи проблем опитайте с текстовата инсалация. "
+"Зацелта,\n"
+"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'."
-#: ../../install_steps_interactive.pm_.c:483
-#, fuzzy
-msgid "Looking at packages already installed..."
-msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save packages selection"
+msgstr "Запази избор на пакети"
-#: ../../install_steps_interactive.pm_.c:487
-msgid "Finding packages to upgrade..."
-msgstr "Търся пакети за обновяване"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automated"
+msgstr "Автоматизиран"
-#: ../../install_steps_interactive.pm_.c:505
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Replay"
+msgstr "Повтори"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
msgstr ""
-"Системата ви няма достатъчно място за инсталация или обновяване (%d > %d)"
+"Автоматичната инсталация може да бъде напълно автоматизирана,\n"
+"в такъв случай ще превземе твърдия ви диск !!!\n"
+"(това е за предназначено за инсталиране на друга машина).\n"
+"\n"
+"Може би искате да повторите инсталацията.\n"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "Подготви дискета за автоматична инсталация"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Reboot"
+msgstr "Главен"
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-"Може изберете зареждане или запис на избора на пакети на флопи.\n"
-"Форматът е същият като auto_install генерираните дискети."
+"Някои етапи не са завършени.\n"
+"\n"
+"Наистина ли искате да излезете сега ?"
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Load from floppy"
-msgstr "Зареди от дискета"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "Подготвям дискета с автоматична инсталация"
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Save on floppy"
-msgstr "Запази на дискета"
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "Сложете празна дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:547
-msgid "Loading from floppy"
-msgstr "Зареждане от дискета"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
+"Може би се нуждаете да промените Open Firmware стартовото устройство,\n"
+" за да пуснете зареждащата програма. Ако не виждате подсказката и при\n"
+" рестартиране, задръжте Command-Option-O-F при рестартиране и въведете:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" След което напишете: shut-down\n"
+"При следващото рестартиране би трябвало да видете подсказката."
-#: ../../install_steps_interactive.pm_.c:547
-msgid "Package selection"
-msgstr "Избор на пакети"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Инсталацията на bootloader провалена. Появи се следната грешка:"
-#: ../../install_steps_interactive.pm_.c:552
-msgid "Insert a floppy containing package selection"
-msgstr "Сложете дискета съдържаща избор на пакети"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing bootloader"
+msgstr "Инсталиране на bootloader"
-#: ../../install_steps_interactive.pm_.c:634
-msgid "Selected size is larger than available space"
-msgstr "Избраната големина е по-голяма от достъпното пространство"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
+msgstr ""
+"Грешка при инсталиране на aboot, \n"
+"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
-#: ../../install_steps_interactive.pm_.c:649
-#, fuzzy
-msgid "Type of install"
-msgstr "Изберете пакети за инсталиране"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "Искате ли да използвате aboot ?"
-#: ../../install_steps_interactive.pm_.c:650
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
msgstr ""
+"Изглежда имате старовремска или неизвестна\n"
+"машина, на която yaboot няма да проработи.\n"
+"Инсталацията ще продължи, но ще трябва\n"
+"да иползвате BootX, за да стартирате машината си"
-#: ../../install_steps_interactive.pm_.c:653
-#, fuzzy
-msgid "With X"
-msgstr "Един момент"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "Подготовка на bootloader"
-#: ../../install_steps_interactive.pm_.c:655
-msgid "With basic documentation (recommended!)"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:656
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Domain Admin User Name"
+msgstr "Име на домейна"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Windows Domain"
+msgstr "NIS домейн"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Authentication Windows Domain"
+msgstr "LDAP ауторизация"
-#: ../../install_steps_interactive.pm_.c:741
+#: ../../install_steps_interactive.pm:1
+#, c-format
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."
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
-"Ако имате всички CD-та от списъка по-горе, натиснете Ok.\n"
-"Ако нямате нито едно от тези CD-та, натиснете Отмяна.\n"
-"Ако ви липсват някои CD-та, махнете ги, и натиснете Ok. "
-#: ../../install_steps_interactive.pm_.c:746
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM озаглавен \"%s\""
+msgid "NIS Server"
+msgstr "NIS сървър"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Preparing installation"
-msgstr "Подготвям инсталацията"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Domain"
+msgstr "NIS домейн"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
-"Инсталирам пакет %s\n"
-"%d%%"
+msgid "Authentication NIS"
+msgstr "NIS ауторизация"
-#: ../../install_steps_interactive.pm_.c:822
-msgid "Post-install configuration"
-msgstr "След инсталационна настройка"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS"
+msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Сложете стартиращата дискета в устройство %s"
+msgid "LDAP Server"
+msgstr "LDAP сървър"
-#: ../../install_steps_interactive.pm_.c:834
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Сложете дискета за обновяване на модули в устройство %s"
+msgid "LDAP Base dn"
+msgstr "LDAP Базов dn"
-#: ../../install_steps_interactive.pm_.c:861
-msgid ""
-"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"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Authentication LDAP"
+msgstr "LDAP ауторизация"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP"
+msgstr "LDAP"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Local files"
+msgstr "Локални файлове"
+
+#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#, c-format
+msgid "Authentication"
+msgstr "Идентификация"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No password"
+msgstr "Без парола"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Set root password"
+msgstr "Въведете парола за root"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:876
-#, fuzzy
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "Услуги: %d активирани от %d регистрирани"
-#: ../../install_steps_interactive.pm_.c:881
-msgid "Choose a mirror from which to get the packages"
-msgstr "Изберете огледален сървър,от който да получите пакетите"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services"
+msgstr "Услуги"
-#: ../../install_steps_interactive.pm_.c:890
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "System"
+msgstr "Система"
-#: ../../install_steps_interactive.pm_.c:918
-msgid "Which is your timezone?"
-msgstr "Коя е времевата ви зона ?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Bootloader"
+msgstr "Използвана зареждащата програма"
-#: ../../install_steps_interactive.pm_.c:923
-msgid "Hardware clock set to GMT"
-msgstr "Хадруерният ви часовник е настроен по GMT"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Boot"
+msgstr "Главен"
-#: ../../install_steps_interactive.pm_.c:924
-msgid "Automatic time synchronization (using NTP)"
-msgstr "Автоматична синхронизация на времето (използва NTP)"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "disabled"
+msgstr "изключи"
-#: ../../install_steps_interactive.pm_.c:931
-msgid "NTP Server"
-msgstr "NTP сървър"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "activated"
+msgstr "активирай сега"
-#: ../../install_steps_interactive.pm_.c:965
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Remote CUPS server"
-msgstr "Отдалечен CUPS сървър"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Firewall"
+msgstr "Сървър, Firewall/Рутер"
-#: ../../install_steps_interactive.pm_.c:966
-msgid "No printer"
-msgstr "Няма принтер"
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Security"
+msgstr "Сигурност"
-#: ../../install_steps_interactive.pm_.c:982
-#, fuzzy
-msgid "Do you have an ISA sound card?"
-msgstr "Имате ли друг(и) ?"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Security Level"
+msgstr "Ниво на сигурност"
-#: ../../install_steps_interactive.pm_.c:984
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "not configured"
+msgstr "пренастройка"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Network"
+msgstr "Мрежов интерфейс"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Network & Internet"
+msgstr "Мрежов интерфейс"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Graphical interface"
+msgstr "X при стартиране на системата"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:986
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "TV card"
+msgstr "TV карта"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr "Обобщение"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:994
-msgid "Mouse"
-msgstr "Мишка"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "Имате ли друг(и) ?"
-#: ../../install_steps_interactive.pm_.c:996
-msgid "Timezone"
-msgstr "Часова зона"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Sound card"
+msgstr "Звукова карта"
-#: ../../install_steps_interactive.pm_.c:997
-#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Remote CUPS server"
+msgstr "Отдалечен CUPS сървър"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No printer"
+msgstr "Няма принтер"
+
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid "Printer"
msgstr "Принтер"
-#: ../../install_steps_interactive.pm_.c:999
-msgid "ISDN card"
-msgstr "ISDN карта"
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#, c-format
+msgid "Mouse"
+msgstr "Мишка"
-#: ../../install_steps_interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:1009
-msgid "Sound card"
-msgstr "Звукова карта"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Timezone"
+msgstr "Часова зона"
-#: ../../install_steps_interactive.pm_.c:1012
-msgid "TV card"
-msgstr "TV карта"
+#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Keyboard"
+msgstr "Клавиатура"
-#: ../../install_steps_interactive.pm_.c:1055
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1084
-msgid "LDAP"
-msgstr "LDAP"
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Summary"
+msgstr "Обобщение"
-#: ../../install_steps_interactive.pm_.c:1056
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1093
-msgid "NIS"
-msgstr "NIS"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NTP Server"
+msgstr "NTP сървър"
-#: ../../install_steps_interactive.pm_.c:1057
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1107
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS домейн"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "Автоматична синхронизация на времето (използва NTP)"
-#: ../../install_steps_interactive.pm_.c:1058
-#: ../../install_steps_interactive.pm_.c:1080
-msgid "Local files"
-msgstr "Локални файлове"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware clock set to GMT"
+msgstr "Хадруерният ви часовник е настроен по GMT"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
-msgid "Set root password"
-msgstr "Въведете парола за root"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Which is your timezone?"
+msgstr "Коя е времевата ви зона ?"
-#: ../../install_steps_interactive.pm_.c:1069
-msgid "No password"
-msgstr "Без парола"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
+msgid "Choose a mirror from which to get the packages"
+msgstr "Изберете огледален сървър,от който да получите пакетите"
-#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
-#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
-msgid "Authentication"
-msgstr "Идентификация"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: ../../install_steps_interactive.pm_.c:1088
-msgid "Authentication LDAP"
-msgstr "LDAP ауторизация"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\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:1089
-msgid "LDAP Base dn"
-msgstr "LDAP Базов dn"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "Сложете дискета за обновяване на модули в устройство %s"
-#: ../../install_steps_interactive.pm_.c:1090
-msgid "LDAP Server"
-msgstr "LDAP сървър"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "Сложете стартиращата дискета в устройство %s"
-#: ../../install_steps_interactive.pm_.c:1096
-msgid "Authentication NIS"
-msgstr "NIS ауторизация"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Post-install configuration"
+msgstr "След инсталационна настройка"
-#: ../../install_steps_interactive.pm_.c:1097
-msgid "NIS Domain"
-msgstr "NIS домейн"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Installing package %s\n"
+"%d%%"
+msgstr ""
+"Инсталирам пакет %s\n"
+"%d%%"
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "NIS Server"
-msgstr "NIS сървър"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing installation"
+msgstr "Подготвям инсталацията"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "CD-ROM озаглавен \"%s\""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
+"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 ""
+"Ако имате всички CD-та от списъка по-горе, натиснете Ok.\n"
+"Ако нямате нито едно от тези CD-та, натиснете Отмяна.\n"
+"Ако ви липсват някои CD-та, махнете ги, и натиснете Ok. "
-#: ../../install_steps_interactive.pm_.c:1106
-#, fuzzy
-msgid "Authentication Windows Domain"
-msgstr "LDAP ауторизация"
-
-#: ../../install_steps_interactive.pm_.c:1108
-#, fuzzy
-msgid "Domain Admin User Name"
-msgstr "Име на домейна"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1109
-msgid "Domain Admin Password"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1144
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "With X"
+msgstr "Един момент"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-"Клиентскят bootdisk е необходим за стартиране в Linux системата ви "
-"независимо\n"
-"от обикновения bootloader. Това е полезно, ако не искате да инсталирате\n"
-"SILO на системата си, ако някоя друга операционна система махне SILO\n"
-"или ако SILO не работи с хардуерната ви настройка. Клиентският bootdisk\n"
-"може да бъде използван със\n"
-"спасителният образ на Mandrake, улесняваки възстановяването при редки\n"
-"случаи на срив.\n"
-"\n"
-"Ако искате да създадете bootdisk за вашата система, поставете дискета в\n"
-"първото устройство и натиснете \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "First floppy drive"
-msgstr "Първо флопи устройство"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Type of install"
+msgstr "Изберете пакети за инсталиране"
-#: ../../install_steps_interactive.pm_.c:1161
-msgid "Second floppy drive"
-msgstr "Второ флопи устройство"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "Избраната големина е по-голяма от достъпното пространство"
-#: ../../install_steps_interactive.pm_.c:1162
-#: ../../printer/printerdrake.pm_.c:2397
-msgid "Skip"
-msgstr "Прескочи"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Insert a floppy containing package selection"
+msgstr "Сложете дискета съдържаща избор на пакети"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Loading from floppy"
+msgstr "Зареждане от дискета"
-#: ../../install_steps_interactive.pm_.c:1167
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package selection"
+msgstr "Избор на пакети"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save on floppy"
+msgstr "Запази на дискета"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Load from floppy"
+msgstr "Зареди от дискета"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-"Клиентски bootdisk е необходим за стартиране в Linux системата ви "
-"независимо\n"
-"от обикновената зареждаща програма. Това е полезно, ако не искате да "
-"инсталирате\n"
-"LILO (или GRUB) на системата си или ако някоя друга операционна система "
-"махне LILO или LILO не\n"
-"работи с хардуерната ви настройка. Bootdisk-ът може да бъде използван със\n"
-"спасителната дискета на Mandrake, улесняваща възстановяването при редки\n"
-"случаи на срив. Искате ли да създам bootdisk за системата ви ?\n"
-"%s"
+"Може изберете зареждане или запис на избора на пакети на флопи.\n"
+"Форматът е същият като auto_install генерираните дискети."
-#: ../../install_steps_interactive.pm_.c:1173
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
+"Системата ви няма достатъчно място за инсталация или обновяване (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Sorry, no floppy drive available"
-msgstr "Съжалявам няма флопи"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Изберете флопи драйв,където да направите стартираща дискета"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "Търся пакети за обновяване"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
-msgid "Insert a floppy in %s"
-msgstr "Сложете дискета в устройство %s"
+msgid "Looking at packages already installed..."
+msgstr "Не можете да оставите този пакет немаркиран. Той вече е инсталиран"
-#: ../../install_steps_interactive.pm_.c:1192
-msgid "Creating bootdisk..."
-msgstr "Създаване на стартираща дискета"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Looking for available packages..."
+msgstr "Търся налични пакети"
-#: ../../install_steps_interactive.pm_.c:1199
-msgid "Preparing bootloader..."
-msgstr "Подготовка на bootloader"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Търся налични пакети"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+"Няма достатъчно swap за приключване на инсталацията, моля добавете малко"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-"Изглежда имате старовремска или неизвестна\n"
-"машина, на която yaboot няма да проработи.\n"
-"Инсталацията ще продължи, но ще трябва\n"
-"да иползвате BootX, за да стартирате машината си"
-#: ../../install_steps_interactive.pm_.c:1216
-msgid "Do you want to use aboot?"
-msgstr "Искате ли да използвате aboot ?"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Check bad blocks?"
+msgstr "Проверка за лоши сектори ?"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "Изберете дяловете, които искате да форматирате"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Налага се ра рестартирате, преди модификациите да предизвикат ефект"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"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 ""
-"Грешка при инсталиране на aboot, \n"
-"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
+"Няма свободно място за 1 МБ стартиращо поле ! Инсталацията ще продължи, но, "
+"за да стартирате системата си, ще трябва да създадете стартиращо поле в "
+"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Installing bootloader"
-msgstr "Инсталиране на bootloader"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the mount points"
+msgstr "Изберете места за монтиране"
-#: ../../install_steps_interactive.pm_.c:1232
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Инсталацията на bootloader провалена. Появи се следната грешка:"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "Претърсване на дяловете за намиране на точки на монтиране"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "няма дялове на разположение"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring IDE"
+msgstr "Настройка на IDE"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "IDE"
+msgstr "IDE"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring PCMCIA cards..."
+msgstr "Настройка на PCMCIA картите ..."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 3 Emulation"
+msgstr "Имитация на 3 бутона"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 2 Emulation"
+msgstr "Имитация на 2 бутона"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Buttons emulation"
+msgstr "Имитация на бутони"
+
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose which serial port your mouse is connected to."
+msgstr "Моля, изберете към кой сериен порт е свързана мишката ви."
-#: ../../install_steps_interactive.pm_.c:1240
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Mouse Port"
+msgstr "Порт на мишката"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your type of mouse."
+msgstr "Моля, изберете тип на мишката."
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade"
+msgstr "Обновяване"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Upgrade %s"
+msgstr "Обновяване"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "Това нова инсталация ли е или обновяване ?"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Install/Upgrade"
+msgstr "Инсталирай/Обнови"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Here is the full list of keyboards available"
+msgstr "Ето пълен списък на достръпните клавиатури"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Please choose your keyboard layout."
+msgstr "Моля, изберете подреждане на клавиатурата."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "License agreement"
+msgstr "Лицензионен договор"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "default:LTR"
+msgstr "по подрабиране"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "An error occurred"
+msgstr "Появи се грешка"
+
+#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-"Може би се нуждаете да промените Open Firmware стартовото устройство,\n"
-" за да пуснете зареждащата програма. Ако не виждате подсказката и при\n"
-" рестартиране, задръжте Command-Option-O-F при рестартиране и въведете:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" След което напишете: shut-down\n"
-"При следващото рестартиране би трябвало да видете подсказката."
+" <Tab>/<Alt-Tab> между елементите | <Space> избира | <F12> следващ екран"
-#: ../../install_steps_interactive.pm_.c:1274
-#: ../../standalone/drakautoinst_.c:76
+#: ../../install_steps_newt.pm:1
#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr "Сложете празна дискета в устройство %s"
+msgid "Mandrake Linux Installation %s"
+msgstr "Инсталация на Mandrake Linux %s"
-#: ../../install_steps_interactive.pm_.c:1278
-msgid "Creating auto install floppy..."
-msgstr "Подготвям дискета с автоматична инсталация"
+#: ../../install_steps.pm:1
+#, c-format
+msgid "No floppy drive available"
+msgstr "Няма флопи устройство"
+
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Welcome to %s"
+msgstr "Добре дошли в %s"
-#: ../../install_steps_interactive.pm_.c:1289
+#: ../../install_steps.pm:1
+#, c-format
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
+"\"\n"
msgstr ""
-"Някои етапи не са завършени.\n"
-"\n"
-"Наистина ли искате да излезете сега ?"
+"Някои важни пакети не се инсталираха както трябва.\n"
+"Или CDROM устройството ви или компакт диска ви е дефектен.\n"
+"Проверете компакт диска на инсталирания компютър използвайки \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_interactive.pm_.c:1300
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Дублирай точката на монтиране %s"
+
+#: ../../install_steps.pm:1
#, c-format
msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"Поздравления, инсталацията е преключена.\n"
-"Премахнете стартовото устройство и натисене Enter за да рестартирайте.\n"
-"\n"
-"\n"
-"За информация относно поправки, на тази версия на Mandrake Linux,\n"
-"се консултирайте с Errata, на адрес : \n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Информация за настройване на системата ви можете да намерите в\n"
-"слединсталационната глава от Official Mandrake Linux User's Guide."
+"Появи се грешка, но не знам как да се справя с нея деликатно.\n"
+"Можете да продължите на свой риск."
+
+#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Please wait"
+msgstr "Моля изчакайте"
+
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
+#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
+#, c-format
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive/newt.pm:1
+#, c-format
+msgid "Finish"
+msgstr "Завърши"
-#: ../../install_steps_interactive.pm_.c:1313
-msgid "http://www.mandrakelinux.com/en/90errata.php3"
+#: ../../interactive.pm:1 ../../standalone/draksec:1
+#, c-format
+msgid "Basic"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1318
-msgid "Generate auto install floppy"
-msgstr "Подготви дискета за автоматична инсталация"
+#: ../../interactive.pm:1
+#, c-format
+msgid "Advanced"
+msgstr "Напредничав"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, fuzzy, c-format
+msgid "Remove"
+msgstr "Премахване на принтера"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, c-format
+msgid "Modify"
+msgstr "Модифицирай"
+
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "Add"
+msgstr "Добави"
-#: ../../install_steps_interactive.pm_.c:1320
+#: ../../interactive.pm:1
+#, c-format
+msgid "Choose a file"
+msgstr "Изберете файл"
+
+#: ../../keyboard.pm:1
+#, c-format
msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-"Автоматичната инсталация може да бъде напълно автоматизирана,\n"
-"в такъв случай ще превземе твърдия ви диск !!!\n"
-"(това е за предназначено за инсталиране на друга машина).\n"
-"\n"
-"Може би искате да повторите инсталацията.\n"
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Automated"
-msgstr "Автоматизиран"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Replay"
-msgstr "Повтори"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Left \"Windows\" key"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1328
-msgid "Save packages selection"
-msgstr "Запази избор на пакети"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "\"Menu\" key"
+msgstr ""
-#: ../../install_steps_newt.pm_.c:20
+#: ../../keyboard.pm:1
#, c-format
-msgid "Mandrake Linux Installation %s"
-msgstr "Инсталация на Mandrake Linux %s"
+msgid "Alt and Shift keys simultaneously"
+msgstr ""
-#. -PO This string must fit in a 80-char wide text screen
-#: ../../install_steps_newt.pm_.c:33
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-" <Tab>/<Alt-Tab> между елементите | <Space> избира | <F12> следващ екран"
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "липсва kdesu"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "CapsLock key"
+msgstr ""
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "Изберете файл"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Both Shift keys simultaneously"
+msgstr ""
-#: ../../interactive.pm_.c:318
-msgid "Advanced"
-msgstr "Напредничав"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right Alt key"
+msgstr ""
-#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
-msgid "Basic"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Yugoslavian (latin)"
+msgstr "Югославска (латиница)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Виетнамска \"числова редица\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard (international)"
+msgstr "US клавиатура (международна)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard"
+msgstr "US клавиатура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "UK keyboard"
+msgstr "UК клавиатура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ukrainian"
+msgstr "Украинска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (modern \"Q\" model)"
+msgstr "Турска (модерен \"Q\" модел)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (traditional \"F\" model)"
+msgstr "Турска (традиционен \"F\" модел)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tajik keyboard"
+msgstr "Таджикистанска клавиатура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Thai keyboard"
+msgstr "Тайванска клавиатура"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Tamil (Typewriter-layout)"
+msgstr "Арменска (пишеща машина)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tamil (ISCII-layout)"
msgstr ""
-#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
-#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
-msgid "<- Previous"
-msgstr "<- Предишен"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Serbian (cyrillic)"
+msgstr "Сръбска (кирилица)"
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
-#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
-#, fuzzy
-msgid "Next"
-msgstr "Текст"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTY)"
+msgstr "Словашка (QWERTY)"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
-msgid "Bad choice, try again\n"
-msgstr "Лош избор, опитайте отново\n"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTZ)"
+msgstr "Словашка (QWERTZ)"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
+#: ../../keyboard.pm:1
#, c-format
-msgid "Your choice? (default %s) "
-msgstr "Вашият избор ? (по подразбиране е %s)"
+msgid "Slovenian"
+msgstr "Словенска"
-#: ../../interactive/stdio.pm_.c:54
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+msgid "Swedish"
+msgstr "Шведска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian (Yawerty)"
+msgstr "Руска (Yawerty)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian"
+msgstr "Руска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Romanian (qwerty)"
+msgstr "Румънска (qwerty)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Romanian (qwertz)"
+msgstr "Румънска (qwertz)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Canadian (Quebec)"
+msgstr "Канадска (Квебек)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Portuguese"
+msgstr "Португалска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwertz layout)"
+msgstr "Полска (QWERTZ наредба)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwerty layout)"
+msgstr "Полска (QWERTY наредба)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Norwegian"
+msgstr "Норвежка"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dutch"
+msgstr "Холандска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (US)"
msgstr ""
-#: ../../interactive/stdio.pm_.c:70
-#, fuzzy, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr "Вашият избор ? (по подразбиране е %s)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (UK)"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:95
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Button `%s': %s"
-msgstr "Опции: %s"
+msgid "Mongolian (cyrillic)"
+msgstr "Сръбска (кирилица)"
-#: ../../interactive/stdio.pm_.c:96
-#, fuzzy
-msgid "Do you want to click on this button?"
-msgstr "Искате ли да използвате aboot ?"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Myanmar (Burmese)"
+msgstr ""
-#: ../../interactive/stdio.pm_.c:105
-msgid " enter `void' for void entry"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Macedonian"
+msgstr "Македонска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Malayalam"
msgstr ""
-#: ../../interactive/stdio.pm_.c:105
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Latvian"
+msgstr "Латвийска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "Литвийска \"фонетичен\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "Литвийска \"числова редица\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (new)"
+msgstr "Литвийска AZERTY (нова)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (old)"
+msgstr "Литвийска AZERTY (стара)"
+
+#: ../../keyboard.pm:1
#, fuzzy, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "Вашият избор ? (по подразбиране е %s)"
+msgid "Laotian"
+msgstr "Латвийска"
-#: ../../interactive/stdio.pm_.c:123
+#: ../../keyboard.pm:1
#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
+msgid "Latin American"
+msgstr "Латиноамериканска"
-#: ../../interactive/stdio.pm_.c:126
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Korean keyboard"
+msgstr "Корейска клавиатура"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Japanese 106 keys"
+msgstr "Японска 106 клавиша"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Inuktitut"
msgstr ""
-#: ../../interactive/stdio.pm_.c:139
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+msgid "Italian"
+msgstr "Италианска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Icelandic"
+msgstr "Исландска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Iranian"
+msgstr "Иранска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli (Phonetic)"
+msgstr "Израелска (фонетична)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli"
+msgstr "Израелска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Croatian"
+msgstr "Хърватска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Hungarian"
+msgstr "Унгарска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gurmukhi"
msgstr ""
-#: ../../interactive/stdio.pm_.c:146
-msgid "Re-submit"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gujarati"
msgstr ""
-#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
-msgid "Czech (QWERTZ)"
-msgstr "Чешка (QWERTZ)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Greek"
+msgstr "Гръцка"
-#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
-msgid "German"
-msgstr "Немска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Latin\" layout)"
+msgstr "Грузинска (\"Латинска\" наредба)"
-#: ../../keyboard.pm_.c:155
-msgid "Dvorak"
-msgstr "Дворак"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Russian\" layout)"
+msgstr "Грузинска (\"Руска\" наредба)"
-#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
-msgid "Spanish"
-msgstr "Испанска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "French"
+msgstr "Френска"
-#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
+#: ../../keyboard.pm:1
+#, c-format
msgid "Finnish"
msgstr "Финландска"
-#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
-msgid "French"
-msgstr "Френска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Spanish"
+msgstr "Испанска"
-#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
-msgid "Norwegian"
-msgstr "Норвежка"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Estonian"
+msgstr "Естонска"
-#: ../../keyboard.pm_.c:160
-msgid "Polish"
-msgstr "Полска"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Dvorak (Swedish)"
+msgstr "Дворак (US)"
-#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
-msgid "Russian"
-msgstr "Руска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (Norwegian)"
+msgstr "Дворак (Норвежка)"
-#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
-msgid "Swedish"
-msgstr "Шведска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (US)"
+msgstr "Дворак (US)"
-#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
-msgid "UK keyboard"
-msgstr "UК клавиатура"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Danish"
+msgstr "Датска"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
-msgid "US keyboard"
-msgstr "US клавиатура"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Devanagari"
+msgstr ""
-#: ../../keyboard.pm_.c:167
-msgid "Albanian"
-msgstr "Албанска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German (no dead keys)"
+msgstr "Немска (без неработещи клавиши)"
-#: ../../keyboard.pm_.c:168
-msgid "Armenian (old)"
-msgstr "Арменска (стара)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German"
+msgstr "Немска"
-#: ../../keyboard.pm_.c:169
-msgid "Armenian (typewriter)"
-msgstr "Арменска (пишеща машина)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTY)"
+msgstr "Чешка (QWERTY)"
-#: ../../keyboard.pm_.c:170
-msgid "Armenian (phonetic)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTZ)"
+msgstr "Чешка (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (French layout)"
+msgstr "Швейцарска (френски наредба)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (German layout)"
+msgstr "Швейцарска (немска наредба)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belarusian"
+msgstr "Беларуска"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bosnian"
+msgstr "Естонска"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Brazilian (ABNT-2)"
+msgstr "Бразилска (ABNT-2)"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (BDS)"
+msgstr "Българска"
+
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bulgarian (phonetic)"
msgstr "Арменска (фонетичен)"
-#: ../../keyboard.pm_.c:175
-msgid "Azerbaidjani (latin)"
-msgstr "Азербайджанска (латиница)"
+#: ../../keyboard.pm:1
+#, fuzzy, c-format
+msgid "Bengali"
+msgstr "включи"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm:1
+#, c-format
msgid "Belgian"
msgstr "Белгийска"
-#: ../../keyboard.pm_.c:178
-#, fuzzy
-msgid "Bengali"
-msgstr "включи"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Azerbaidjani (latin)"
+msgstr "Азербайджанска (латиница)"
-#: ../../keyboard.pm_.c:179
-#, fuzzy
-msgid "Bulgarian (phonetic)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (phonetic)"
msgstr "Арменска (фонетичен)"
-#: ../../keyboard.pm_.c:180
-#, fuzzy
-msgid "Bulgarian (BDS)"
-msgstr "Българска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (typewriter)"
+msgstr "Арменска (пишеща машина)"
-#: ../../keyboard.pm_.c:181
-msgid "Brazilian (ABNT-2)"
-msgstr "Бразилска (ABNT-2)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (old)"
+msgstr "Арменска (стара)"
-#: ../../keyboard.pm_.c:184
-#, fuzzy
-msgid "Bosnian"
-msgstr "Естонска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Albanian"
+msgstr "Албанска"
-#: ../../keyboard.pm_.c:185
-msgid "Belarusian"
-msgstr "Беларуска"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish"
+msgstr "Полска"
-#: ../../keyboard.pm_.c:186
-msgid "Swiss (German layout)"
-msgstr "Швейцарска (немска наредба)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak"
+msgstr "Дворак"
-#: ../../keyboard.pm_.c:187
-msgid "Swiss (French layout)"
-msgstr "Швейцарска (френски наредба)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zimbabwe"
+msgstr "Зимбабве"
-#: ../../keyboard.pm_.c:189
-msgid "Czech (QWERTY)"
-msgstr "Чешка (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zambia"
+msgstr "Замбия"
-#: ../../keyboard.pm_.c:191
-msgid "German (no dead keys)"
-msgstr "Немска (без неработещи клавиши)"
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "South Africa"
+msgstr "Южна Африка"
-#: ../../keyboard.pm_.c:192
-msgid "Devanagari"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Serbia"
+msgstr "серийна"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mayotte"
+msgstr "Майот"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Yemen"
+msgstr "Йемен"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Samoa"
+msgstr "Самоа"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Wallis and Futuna"
+msgstr "Уолис и Футуна Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Vanuatu"
+msgstr "Вануату"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Vietnam"
+msgstr "Виетнам"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (U.S.)"
+msgstr "Вирджински Острови (САЩ)"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (British)"
+msgstr "Вирджински Острови (Британски)"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Venezuela"
+msgstr "Венецуела"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Vincent and the Grenadines"
+msgstr "Свети Винсент и Гренадин"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Vatican"
+msgstr "Латвийска"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uzbekistan"
+msgstr "Узбекистан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uruguay"
+msgstr "Уругвай"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "United States Minor Outlying Islands"
+msgstr "Малки Острови по крайбрежието на САЩ"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Uganda"
+msgstr "Уганда"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ukraine"
+msgstr "Украйна"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tanzania"
msgstr ""
-#: ../../keyboard.pm_.c:193
-msgid "Danish"
-msgstr "Датска"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Taiwan"
+msgstr "Тайланд"
-#: ../../keyboard.pm_.c:194
-msgid "Dvorak (US)"
-msgstr "Дворак (US)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tuvalu"
+msgstr "Тувалу"
-#: ../../keyboard.pm_.c:195
-msgid "Dvorak (Norwegian)"
-msgstr "Дворак (Норвежка)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Trinidad and Tobago"
+msgstr "Тринидад и Тобаго"
-#: ../../keyboard.pm_.c:196
-#, fuzzy
-msgid "Dvorak (Swedish)"
-msgstr "Дворак (US)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkey"
+msgstr "Турция"
-#: ../../keyboard.pm_.c:197
-msgid "Estonian"
-msgstr "Естонска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tonga"
+msgstr "Тонга"
-#: ../../keyboard.pm_.c:201
-msgid "Georgian (\"Russian\" layout)"
-msgstr "Грузинска (\"Руска\" наредба)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tunisia"
+msgstr "Тунис"
-#: ../../keyboard.pm_.c:202
-msgid "Georgian (\"Latin\" layout)"
-msgstr "Грузинска (\"Латинска\" наредба)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkmenistan"
+msgstr "Туркменистан"
-#: ../../keyboard.pm_.c:203
-msgid "Greek"
-msgstr "Гръцка"
+#: ../../lang.pm:1
+#, c-format
+msgid "East Timor"
+msgstr "Източен Тимор"
-#: ../../keyboard.pm_.c:204
-msgid "Gujarati"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tokelau"
+msgstr "Токелау"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Tajikistan"
+msgstr "Таджикистан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Thailand"
+msgstr "Тайланд"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Togo"
+msgstr "Того"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Southern Territories"
+msgstr "Франция Южни Територии"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Chad"
+msgstr "Чад"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Turks and Caicos Islands"
+msgstr "Тюрк и Кайкос Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Swaziland"
+msgstr "Свазиленд"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Syria"
+msgstr "Суринам"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "El Salvador"
+msgstr "Ел Салвадор"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sao Tome and Principe"
+msgstr "Сао Томе и Принсипи"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Suriname"
+msgstr "Суринам"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Somalia"
+msgstr "Сомалия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Senegal"
+msgstr "Сенегал"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "San Marino"
+msgstr "Сан Марино"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sierra Leone"
+msgstr "Сиера Леоне"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovakia"
+msgstr "Словакия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Svalbard and Jan Mayen Islands"
+msgstr "Свалбард и Ян Майен Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovenia"
+msgstr "Словения"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Helena"
+msgstr "Света Елена"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Singapore"
+msgstr "Сингапур"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sudan"
+msgstr "Судан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Seychelles"
+msgstr "Сейшели"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Solomon Islands"
+msgstr "Соломонови Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saudi Arabia"
+msgstr "Саудитска Арабия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Rwanda"
+msgstr "Руанда"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Russia"
+msgstr "Руска"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Romania"
+msgstr "Румъния"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Reunion"
+msgstr "Риюниън"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Qatar"
+msgstr "Катар"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Palau"
+msgstr "Палау"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Paraguay"
+msgstr "Парагвай"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Portugal"
+msgstr "Португалия"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Palestine"
+msgstr "Запази избор на пакети"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Puerto Rico"
+msgstr "Пуерто Рико"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Pitcairn"
+msgstr "Питкеърн"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Pierre and Miquelon"
+msgstr "Свети Пиер и Микелон"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Poland"
+msgstr "Полша"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Pakistan"
+msgstr "Пакистан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Philippines"
+msgstr "Филипини"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Papua New Guinea"
+msgstr "Папуа Нова Гвинея"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Polynesia"
+msgstr "Френска Полинезия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Peru"
+msgstr "Перу"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Panama"
+msgstr "Панама"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Oman"
+msgstr "Оман"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "New Zealand"
+msgstr "Нова Зеландия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Niue"
+msgstr "Нию"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nauru"
+msgstr "Науру"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nepal"
+msgstr "Непал"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nicaragua"
+msgstr "Никарагуа"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nigeria"
+msgstr "Нигерия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Norfolk Island"
+msgstr "Норфолк Остров"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Niger"
+msgstr "Нигер"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "New Caledonia"
+msgstr "Нова Каледония"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Namibia"
+msgstr "Намибия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mozambique"
+msgstr "Мозамбик"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malaysia"
+msgstr "Малайзия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mexico"
+msgstr "Мексико"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malawi"
+msgstr "Малави"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Maldives"
+msgstr "Малдиви"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritius"
+msgstr "Мавриций"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malta"
+msgstr "Малта"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Montserrat"
+msgstr "Монсерат"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritania"
+msgstr "Мавритания"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Martinique"
+msgstr "Мартиника"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Northern Mariana Islands"
+msgstr "Северни Марианови Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mongolia"
+msgstr "Монголия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Myanmar"
+msgstr "Мианмар"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mali"
+msgstr "Мали"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Macedonia"
+msgstr "Македония"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Marshall Islands"
+msgstr "Маршалови Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Madagascar"
+msgstr "Мадагаскар"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Moldova"
+msgstr "Молдова"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Monaco"
+msgstr "Монако"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Morocco"
+msgstr "Мароко"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Libya"
+msgstr "Либерия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Latvia"
+msgstr "Латвия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Luxembourg"
+msgstr "Люксембург"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lithuania"
+msgstr "Литва"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lesotho"
+msgstr "Лесото"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liberia"
+msgstr "Либерия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sri Lanka"
+msgstr "Шри Ланка"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liechtenstein"
+msgstr "Лихтенщайн"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Lucia"
+msgstr "Санта Лучия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lebanon"
+msgstr "Ливан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Laos"
msgstr ""
-#: ../../keyboard.pm_.c:205
-msgid "Gurmukhi"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kazakhstan"
+msgstr "Казахстан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cayman Islands"
+msgstr "Кайманови Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kuwait"
+msgstr "Кувейт"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Korea"
+msgstr "Още"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Korea (North)"
msgstr ""
-#: ../../keyboard.pm_.c:206
-msgid "Hungarian"
-msgstr "Унгарска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Kitts and Nevis"
+msgstr "Свети Китс и Невис"
-#: ../../keyboard.pm_.c:207
-msgid "Croatian"
-msgstr "Хърватска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Comoros"
+msgstr "Комори"
-#: ../../keyboard.pm_.c:208
-msgid "Israeli"
-msgstr "Израелска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kiribati"
+msgstr "Кирибати"
-#: ../../keyboard.pm_.c:209
-msgid "Israeli (Phonetic)"
-msgstr "Израелска (фонетична)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Cambodia"
+msgstr "Камбоджа"
-#: ../../keyboard.pm_.c:210
-msgid "Iranian"
-msgstr "Иранска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kyrgyzstan"
+msgstr "Киргизтан"
-#: ../../keyboard.pm_.c:211
-msgid "Icelandic"
+#: ../../lang.pm:1
+#, c-format
+msgid "Kenya"
+msgstr "Кения"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Japan"
+msgstr "Япония"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Jordan"
+msgstr "Йордания"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jamaica"
+msgstr "Ямайка"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iceland"
+msgstr "Исландия"
+
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Iran"
+msgstr "Ирак"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iraq"
+msgstr "Ирак"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "British Indian Ocean Territory"
+msgstr "Английски територии в Индийския океан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "India"
+msgstr "Индия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Israel"
+msgstr "Израел"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Ireland"
msgstr "Исландска"
-#: ../../keyboard.pm_.c:212
-msgid "Italian"
-msgstr "Италианска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Indonesia"
+msgstr "Индонезия"
-#: ../../keyboard.pm_.c:213
-msgid "Inuktitut"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Hungary"
+msgstr "Унгария"
-#: ../../keyboard.pm_.c:214
-msgid "Japanese 106 keys"
-msgstr "Японска 106 клавиша"
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr "Хаити"
-#: ../../keyboard.pm_.c:217
-msgid "Korean keyboard"
-msgstr "Корейска клавиатура"
+#: ../../lang.pm:1
+#, c-format
+msgid "Croatia"
+msgstr "Хърватия"
-#: ../../keyboard.pm_.c:218
-msgid "Latin American"
-msgstr "Латиноамериканска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Honduras"
+msgstr "Хондурас"
-#: ../../keyboard.pm_.c:219
-#, fuzzy
-msgid "Laotian"
-msgstr "Латвийска"
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "Heard and McDonald Islands"
+msgstr "Хърд и МакДоналд Острови"
-#: ../../keyboard.pm_.c:220
-msgid "Lithuanian AZERTY (old)"
-msgstr "Литвийска AZERTY (стара)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Hong Kong"
+msgstr "Хонг Конг"
-#: ../../keyboard.pm_.c:222
-msgid "Lithuanian AZERTY (new)"
-msgstr "Литвийска AZERTY (нова)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr "Гияна"
-#: ../../keyboard.pm_.c:223
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Литвийска \"числова редица\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea-Bissau"
+msgstr "Гвинея-Бисау"
-#: ../../keyboard.pm_.c:224
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Литвийска \"фонетичен\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guam"
+msgstr "Гуам"
-#: ../../keyboard.pm_.c:225
-msgid "Latvian"
-msgstr "Латвийска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guatemala"
+msgstr "Гватемала"
-#: ../../keyboard.pm_.c:226
-msgid "Malayalam"
-msgstr ""
+#: ../../lang.pm:1
+#, fuzzy, c-format
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Южни Сандвичеви Острови"
-#: ../../keyboard.pm_.c:227
-msgid "Macedonian"
-msgstr "Македонска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Equatorial Guinea"
+msgstr "Екваториална Гвинея"
-#: ../../keyboard.pm_.c:228
-msgid "Myanmar (Burmese)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Guadeloupe"
+msgstr "Гваделупа"
-#: ../../keyboard.pm_.c:229
-#, fuzzy
-msgid "Mongolian (cyrillic)"
-msgstr "Сръбска (кирилица)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea"
+msgstr "Гвинея"
-#: ../../keyboard.pm_.c:230
-msgid "Maltese (UK)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Gambia"
+msgstr "Гамбия"
-#: ../../keyboard.pm_.c:231
-msgid "Maltese (US)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Greenland"
+msgstr "Гренландия"
-#: ../../keyboard.pm_.c:232
-msgid "Dutch"
-msgstr "Холандска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gibraltar"
+msgstr "Гибралтар"
-#: ../../keyboard.pm_.c:234
-msgid "Polish (qwerty layout)"
-msgstr "Полска (QWERTY наредба)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ghana"
+msgstr "Гана"
-#: ../../keyboard.pm_.c:235
-msgid "Polish (qwertz layout)"
-msgstr "Полска (QWERTZ наредба)"
+#: ../../lang.pm:1
+#, c-format
+msgid "French Guiana"
+msgstr "Френска Гвиана"
-#: ../../keyboard.pm_.c:236
-msgid "Portuguese"
-msgstr "Португалска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Georgia"
+msgstr "Грузия"
-#: ../../keyboard.pm_.c:237
-msgid "Canadian (Quebec)"
-msgstr "Канадска (Квебек)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Grenada"
+msgstr "Гренада"
-#: ../../keyboard.pm_.c:239
-msgid "Romanian (qwertz)"
-msgstr "Румънска (qwertz)"
+#: ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "United Kingdom"
+msgstr "Англия"
-#: ../../keyboard.pm_.c:240
-msgid "Romanian (qwerty)"
-msgstr "Румънска (qwerty)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Gabon"
+msgstr "Габон"
-#: ../../keyboard.pm_.c:242
-msgid "Russian (Yawerty)"
-msgstr "Руска (Yawerty)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Faroe Islands"
+msgstr "Острови Фаро"
-#: ../../keyboard.pm_.c:244
-msgid "Slovenian"
-msgstr "Словенска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Micronesia"
+msgstr "Микронезия"
-#: ../../keyboard.pm_.c:245
-msgid "Slovakian (QWERTZ)"
-msgstr "Словашка (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Falkland Islands (Malvinas)"
+msgstr "Фолклендски Острови (Малвини)"
-#: ../../keyboard.pm_.c:246
-msgid "Slovakian (QWERTY)"
-msgstr "Словашка (QWERTY)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Fiji"
+msgstr "Фиджи"
-#: ../../keyboard.pm_.c:248
-msgid "Serbian (cyrillic)"
-msgstr "Сръбска (кирилица)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Finland"
+msgstr "Финландия"
-#: ../../keyboard.pm_.c:250
-msgid "Tamil (Unicode)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Ethiopia"
+msgstr "Етиопия"
-#: ../../keyboard.pm_.c:251
-msgid "Tamil (TSCII)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Spain"
+msgstr "Испания"
-#: ../../keyboard.pm_.c:252
-msgid "Thai keyboard"
-msgstr "Тайванска клавиатура"
+#: ../../lang.pm:1
+#, c-format
+msgid "Eritrea"
+msgstr "Еритрея"
-#: ../../keyboard.pm_.c:254
-msgid "Tajik keyboard"
-msgstr "Таджикистанска клавиатура"
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
+msgstr "Западна Сахара"
-#: ../../keyboard.pm_.c:255
-msgid "Turkish (traditional \"F\" model)"
-msgstr "Турска (традиционен \"F\" модел)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Egypt"
+msgstr "Египет"
-#: ../../keyboard.pm_.c:256
-msgid "Turkish (modern \"Q\" model)"
-msgstr "Турска (модерен \"Q\" модел)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Estonia"
+msgstr "Естония"
-#: ../../keyboard.pm_.c:258
-msgid "Ukrainian"
-msgstr "Украинска"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ecuador"
+msgstr "Еквадор"
-#: ../../keyboard.pm_.c:261
-msgid "US keyboard (international)"
-msgstr "US клавиатура (международна)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Algeria"
+msgstr "Алжир"
-#: ../../keyboard.pm_.c:262
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Виетнамска \"числова редица\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
+msgstr "Доминиканска Република"
-#: ../../keyboard.pm_.c:263
-msgid "Yugoslavian (latin)"
-msgstr "Югославска (латиница)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominica"
+msgstr "Доминика"
-#: ../../keyboard.pm_.c:270
-msgid "Right Alt key"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Denmark"
+msgstr "Дания"
-#: ../../keyboard.pm_.c:271
-msgid "Both Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Djibouti"
+msgstr "Джибути"
-#: ../../keyboard.pm_.c:272
-msgid "Control and Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cyprus"
+msgstr "Кипър"
-#: ../../keyboard.pm_.c:273
-msgid "CapsLock key"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Christmas Island"
+msgstr "Коледни Острови"
-#: ../../keyboard.pm_.c:274
-msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cape Verde"
+msgstr "Капо Верде"
-#: ../../keyboard.pm_.c:275
-msgid "Alt and Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Cuba"
+msgstr "Куба"
-#: ../../keyboard.pm_.c:276
-msgid "\"Menu\" key"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Colombia"
+msgstr "Колумбия"
-#: ../../keyboard.pm_.c:277
-msgid "Left \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "China"
+msgstr "Китай"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cameroon"
+msgstr "Камерун"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Chile"
+msgstr "Чили"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr "Острови Кук"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr "Кот д'ивоар"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Switzerland"
+msgstr "Швейцария"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Brazzaville)"
msgstr ""
-#: ../../keyboard.pm_.c:278
-msgid "Right \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Central African Republic"
+msgstr "Централноафриканска Република"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Kinshasa)"
msgstr ""
-#: ../../loopback.pm_.c:32
+#: ../../lang.pm:1
+#, c-format
+msgid "Cocos (Keeling) Islands"
+msgstr "Кокосови Острови"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Canada"
+msgstr "Канада"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Belize"
+msgstr "Белиз"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Belarus"
+msgstr "Беларус"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Botswana"
+msgstr "Ботсвана"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bouvet Island"
+msgstr "Остров Бувет"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bhutan"
+msgstr "Бутан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahamas"
+msgstr "Бахами"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Brazil"
+msgstr "Бразилия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bolivia"
+msgstr "Боливия"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Brunei Darussalam"
+msgstr "Бруней"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bermuda"
+msgstr "Бермуда"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Benin"
+msgstr "Бенин"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
+msgstr "Бурунди"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahrain"
+msgstr "Бахрейн"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bulgaria"
+msgstr "България"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burkina Faso"
+msgstr "Буркина Фасо"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bangladesh"
+msgstr "Бангладеш"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr "Барбадос"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bosnia and Herzegovina"
+msgstr "Босна и Херцеговина"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Azerbaijan"
+msgstr "Азербайджан"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Aruba"
+msgstr "Аруба"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, fuzzy, c-format
+msgid "Australia"
+msgstr "серийна"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "American Samoa"
+msgstr "Американска Самоа"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Argentina"
+msgstr "Аржентина"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
+msgstr "Антарктика"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Angola"
+msgstr "Ангола"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
+msgstr "Холандски Антили"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Armenia"
+msgstr "Армения"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Albania"
+msgstr "Албания"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Anguilla"
+msgstr "Ангила"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Antigua and Barbuda"
+msgstr "Антигуа и Барбуда"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
+msgstr "Обединени Арабски Емирства"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Andorra"
+msgstr "Андора"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Afghanistan"
+msgstr "Афганистан"
+
+#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "\"Омагьосан кръг\" от монтирания: %s\n"
-#: ../../lvm.pm_.c:103
+#: ../../lvm.pm:1
+#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Първо премахни логичните дялово\n"
-#: ../../modules.pm_.c:290
+#: ../../modules.pm:1
+#, c-format
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../modules/interactive.pm_.c:16
-msgid "You can configure each parameter of the module here."
-msgstr ""
-
-#: ../../modules/parameters.pm_.c:18
-#, fuzzy
-msgid "modinfo is not available"
-msgstr "Няма флопи устройство"
-
-#: ../../modules/parameters.pm_.c:50
-#, fuzzy
-msgid "a number"
-msgstr "Телефонен номер"
+#: ../../mouse.pm:1
+#, c-format
+msgid "MOVE YOUR WHEEL!"
+msgstr "БУТНЕТЕ ТОПЧЕТО !"
-#: ../../modules/parameters.pm_.c:52
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+msgid "To activate the mouse,"
+msgstr "За да активирате мишката си,"
-#: ../../modules/parameters.pm_.c:52
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+msgid "Please test the mouse"
+msgstr "Моля, пробвайте мишката си"
-#: ../../modules/parameters.pm_.c:54
-msgid "comma separated numbers"
-msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "Без мишка"
-#: ../../modules/parameters.pm_.c:54
-#, fuzzy
-msgid "comma separated strings"
-msgstr "Форматиране на дялове"
+#: ../../mouse.pm:1
+#, c-format
+msgid "none"
+msgstr "няма"
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Мишка на Sun"
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons"
+msgstr "3 бутона"
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "2 buttons"
+msgstr "2 бутона"
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Обикновенна PS2 мишка"
+#: ../../mouse.pm:1
+#, c-format
+msgid "1 button"
+msgstr "1 бутон"
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
+#: ../../mouse.pm:1
+#, c-format
+msgid "busmouse"
+msgstr "BUS мишка"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+#: ../../mouse.pm:1
+#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington THinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (серийна, от стария тип C7)"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Genius NetMouse"
msgstr "Genuis NetMouse"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
-msgid "Microsoft Explorer"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
-msgid "1 button"
-msgstr "1 бутон"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Обикновенна 3-бутонна мишка"
-#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+#: ../../mouse.pm:1
+#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Обикновенна 2-бутонна мишка"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm:1
+#, c-format
+msgid "serial"
+msgstr "серийна"
+
+#: ../../mouse.pm:1
+#, fuzzy, c-format
+msgid "Microsoft Explorer"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Wheel"
msgstr "Wheel"
-#: ../../mouse.pm_.c:51
-msgid "serial"
-msgstr "серийна"
+#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Generic"
+msgstr "Общ"
-#: ../../mouse.pm_.c:54
-msgid "Generic 3 Button Mouse"
-msgstr "Обикновенна 3-бутонна мишка"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:55
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../mouse.pm_.c:56
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Обикновенна PS2 мишка"
-#: ../../mouse.pm_.c:57
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../mouse.pm_.c:59
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
+#: ../../mouse.pm:1 ../../security/level.pm:1
+#, c-format
+msgid "Standard"
+msgstr "Стандартна"
-#: ../../mouse.pm_.c:60
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Sun - Mouse"
+msgstr "Мишка на Sun"
-#: ../../mouse.pm_.c:62
-msgid "MM Series"
-msgstr "MM Series"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Toggle between flat and group sorted"
+msgstr "Превключване между нормално и сортиране по групи"
-#: ../../mouse.pm_.c:63
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Collapse Tree"
+msgstr "Изчисти дървото"
-#: ../../mouse.pm_.c:64
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (серийна, от стария тип C7)"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Expand Tree"
+msgstr "Разшири дървото"
-#: ../../mouse.pm_.c:68
-msgid "busmouse"
-msgstr "BUS мишка"
+#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Info"
+msgstr "Информация"
-#: ../../mouse.pm_.c:71
-msgid "2 buttons"
-msgstr "2 бутона"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Is this correct?"
+msgstr "Всичко правилно ли е ?"
-#: ../../mouse.pm_.c:72
-msgid "3 buttons"
-msgstr "3 бутона"
+#: ../../my_gtk.pm:1
+#, fuzzy, c-format
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../mouse.pm_.c:75
-msgid "none"
-msgstr "няма"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Error writing to file %s"
+msgstr "Грешка при запис във файла %s"
-#: ../../mouse.pm_.c:77
-msgid "No mouse"
-msgstr "Без мишка"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Bad backup file"
+msgstr "Лош backup-файл"
-#: ../../mouse.pm_.c:490
-msgid "Please test the mouse"
-msgstr "Моля, пробвайте мишката си"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Restoring from file %s failed: %s"
+msgstr "Възстановяването от файла %s не успя: %s"
-#: ../../mouse.pm_.c:491
-msgid "To activate the mouse,"
-msgstr "За да активирате мишката си,"
+#: ../../partition_table.pm:1
+#, c-format
+msgid ""
+"You have a hole in your partition table but I can't use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
+msgstr ""
+"Имате празнина в таблицата с дяловете, но не мога да я използвам.\n"
+"Единственият начин е да преместите главните си дялове, за да имате празно "
+"място след extended-дяловете"
-#: ../../mouse.pm_.c:492
-msgid "MOVE YOUR WHEEL!"
-msgstr "БУТНЕТЕ ТОПЧЕТО !"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Extended partition not supported on this platform"
+msgstr "Разширени дялове не се поддържат на тази платформа"
-#: ../../my_gtk.pm_.c:65
-#, fuzzy
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "mount failed: "
+msgstr "монтирането не успя: "
-#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
-msgid "Finish"
-msgstr "Завърши"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "maybe"
+msgstr "става"
-#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
-#: ../../ugtk2.pm_.c:435
-msgid "Next ->"
-msgstr "Следващ ->"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "nice"
+msgstr "добър"
-#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
-msgid "Is this correct?"
-msgstr "Всичко правилно ли е ?"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "very nice"
+msgstr "много добър"
-#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
-msgid "Info"
-msgstr "Информация"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "important"
+msgstr "важен"
-#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
-msgid "Expand Tree"
-msgstr "Разшири дървото"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "must have"
+msgstr "нужен"
-#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
-msgid "Collapse Tree"
-msgstr "Изчисти дървото"
+#: ../../raid.pm:1
+#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "Няма достатъчно дялове за RAID ниво %d\n"
-#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
-msgid "Toggle between flat and group sorted"
-msgstr "Превключване между нормално и сортиране по групи"
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed"
+msgstr "mkraid пропадна"
-#: ../../network/adsl.pm_.c:23
-msgid "use pppoe"
-msgstr "използвай PPPOE"
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "mkraid пропадна (може би raidtools липсват ?)"
-#: ../../network/adsl.pm_.c:24
-msgid "use pptp"
-msgstr "използвай PPPTP"
+#: ../../raid.pm:1
+#, c-format
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "Не мога да прибавя дял към _форматиран_ RAID md%d"
-#: ../../network/adsl.pm_.c:25
-msgid "use dhcp"
-msgstr "използвай DHCP"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Stop"
+msgstr "Сектор"
-#: ../../network/adsl.pm_.c:26
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch USB"
+#: ../../services.pm:1
+#, fuzzy, c-format
+msgid "Start"
+msgstr "Състояние"
-#: ../../network/adsl.pm_.c:27
-msgid "Sagem (using pppoe) usb"
+#: ../../services.pm:1
+#, c-format
+msgid "On boot"
+msgstr "При зареждане"
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"No additional information\n"
+"about this service, sorry."
msgstr ""
+"Няма допълнителна информация\n"
+"за тази услуга, съжелявам."
-#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "Свържи се към Интернет"
+#: ../../services.pm:1
+#, c-format
+msgid "Services and deamons"
+msgstr "Услуиги и демони"
+
+#: ../../services.pm:1
+#, c-format
+msgid "stopped"
+msgstr "спряна"
+
+#: ../../services.pm:1
+#, c-format
+msgid "running"
+msgstr "стартиране"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "Избира услугите, които трябва да се пуснат при пускане на машината"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Database Server"
+msgstr "Сървър Бази-данни"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Remote Administration"
+msgstr "Отдалечена администрация"
+
+#: ../../services.pm:1
+#, c-format
+msgid "File sharing"
+msgstr "Поделяне на файлове"
-#: ../../network/adsl.pm_.c:30
+#: ../../services.pm:1
+#, c-format
+msgid "Internet"
+msgstr "Интернет"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Printing"
+msgstr "Печатане"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "Стартира X Font Server (това е задължително, за да тръгне XFree)."
+
+#: ../../services.pm:1
+#, c-format
+msgid "Load the drivers for your usb devices."
+msgstr "Зареждане драйвери за вашите USB устройства."
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few ones use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
-"Най-честия начин за свързване чрез ADSL е PPPOE.\n"
-"Някои връзки използват PPTP, а maлко използват DHCP.\n"
-"Ако не знаете, изберете 'използвай PPPOE'."
+"Syslog е програма която много демони използват да запазват съобщения в\n"
+"различни системни файлове (логове). Добре е постоянно да я имате работеща."
-#: ../../network/adsl.pm_.c:166
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the sound system on your machine"
+msgstr "Пуснкане звуковата система на машината ви"
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
+"rwho протокола позволява на отдалечени потребители да се сдобият със списък\n"
+"на всички потребители влезли на машина с работещ rwho демон (подобен на "
+"finger)."
-#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "Сървър"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
+msgstr ""
+"rusers протокола позволява на мрежовите потребители да проверяват кой е\n"
+"влязъл на друга отговарящата машина."
-#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Име на домейна"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
+msgstr ""
+"rstat протокола позволява на мрежовите потребители да извличат\n"
+"параметрите на възможностите за всяка машина на мрежата."
-#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
-msgstr "Сървър Бази-данни"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
+msgstr ""
+"touted демона позволява таблица за IP рутиране автоматично обновявана чрез\n"
+"RIP протокола. Докато RIP е широко използвана за малки мрежи, за по-сложни\n"
+"протоколи за рутиране са нужни за сложни мрежи. "
-#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "LDAP сървър"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+"Свържи чисти драйвери с блокови устройства (като дялове\n"
+"на твърдия диск), за употребята от приложения като Oracle"
-#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "не е открита мрежова карта"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
+msgstr ""
+"Запазва и възстановята потока на системна ентропия за по-голямо качество\n"
+"на произволно генериране на числа."
-#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
+#: ../../services.pm:1
+#, fuzzy, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
-"Настройчик за малка защитна стена\n"
-"\n"
-"Това настройва персонална защитна стена за тази Mandrake Linux машина.\n"
-"За мощно постветено на защитата решение, моле, погледнете специализираната\n"
-"MandrakeSecurity Firewall дистрибуция."
+"Postfix е Main Transport Agent (MTA), който е програма която пренася\n"
+"поша от машина на машина."
-#: ../../network/drakfirewall.pm_.c:135
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
+"portmapper се справя с RPC връзки, които се използват от протоколи като\n"
+"NFS и NIS. portmap сървъра трябва да е пуснат на машини, които работят като\n"
+"сървър за протоколи, които се нуждаят да използват RPC механизъм."
-#: ../../network/drakfirewall.pm_.c:152
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
msgstr ""
+"PCMCIA поддържката обикновенно поддържа неща като ethernet и модеми в\n"
+"laptop-и. Това няма да се стартира преди да бъде настроен, така че е\n"
+"по-добре да я имате инсталирана на машини, които не се нуждаят от нея."
+
+#: ../../services.pm:1
+#, c-format
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "Поддръжка на OKI 4w и съвместими win-принтери."
-#: ../../network/drakfirewall.pm_.c:153
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
+"Автоматично включване на numlock клавиша под конзола и\n"
+"XFree при стартитане."
-#: ../../network/drakfirewall.pm_.c:159
+#: ../../services.pm:1
#, c-format
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS е популярен протокол за обмен на файлове по TCP/IP мрежи.\n"
+"Тази услуга осигурява функционалността на заключването на NFS файловете."
-#: ../../network/drakfirewall.pm_.c:167
-msgid "Everything (no firewall)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
msgstr ""
+"NFS е популярен протокол за обмен на файлове по TCP/IP мрежи.\n"
+"Тази услуга осигурява функционалността на NFS сървъра, който се настройва\n"
+"чрез файла /etc/exports."
-#: ../../network/drakfirewall.pm_.c:169
-#, fuzzy
-msgid "Other ports"
-msgstr "Тестване портовете"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"Активира/деактивира всички мрежови интерфейси, настроени да се пускат\n"
+"при стартиране на машината."
-#: ../../network/ethernet.pm_.c:37
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcp-client"
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"Какъв DHCP клиент искате да използвате ?\n"
-"По подразбиране е dhcp-client ?"
+"Монтира и демонтира всякакви Network File System (NFS), SMB (LAN\n"
+"Manager/Windows), и NCP (NetWare)."
-#: ../../network/ethernet.pm_.c:88
+#: ../../services.pm:1
+#, fuzzy, c-format
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
-"Не беше намерен мрежов адаптер в системата ви.\n"
-"Не можете да настроите такъв вид връзка."
+"named (BIND) е Domain Name Server (DNS), който се използва да превърне\n"
+"името на хоста до IP адрес."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
-msgid "Choose the network interface"
-msgstr "Изберете мрежов интерфейс"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+"Linux Virtual Server се използва за изграждане на високопроизводителен\n"
+"и добре достъпен сървър."
-#: ../../network/ethernet.pm_.c:93
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Моля, изберете кой мрежов адаптер да използвам за връзка към Интернет"
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
+msgstr ""
+"lpd е демона за печат необходим на lpr да работи нормално. Той просто е\n"
+"сървър, който определя работите за печат на принтер(а/ите)."
-#: ../../network/ethernet.pm_.c:176
-msgid "no network card found"
-msgstr "не е открита мрежова карта"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf понякога урежда извършването на различни задачи\n"
+"при стартиране за поддръжка на системната настройка."
-#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
-msgid "Configuring network"
-msgstr "Настойка на мрежата"
+#: ../../services.pm:1
+#, c-format
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "Автоматично засичане и настройка на хардуера при стартиране."
-#: ../../network/ethernet.pm_.c:201
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please enter your host name if you know it.\n"
-"Some DHCP servers require the hostname to work.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''."
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-"Моля, въведете име на хост ако го знаете.\n"
-"Някой DHCP сървъри изискват това за да работят.\n"
-"Host името трябва да буде напълно квалифицирано име,\n"
-"като ``mybox.mylab.myco.com''."
-
-#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
-msgid "Host name"
-msgstr "Име на хост:"
+"Автоматично регенериране на header-ите на адрото, в /boot за\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
-#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
-#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
-#: ../../network/netconnect.pm_.c:253
-msgid "Network Configuration Wizard"
-msgstr "Магьосник за настройка на мрежата"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
+msgstr ""
+"Този пакет зарежда маркираната клавиатурна наредба в /etc/sysconfig/"
+"keyboard.\n"
+"Тя може да бъде избрана с инструмента kbdconfig. Трябва да оставите "
+"товавключено за повечето машини."
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "Външен ISDN модем"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+"Включи филтрирането на пакети за Linux ядра серия 2.2, за\n"
+"настрока на защитната стена, s cel защитава на машината ви от\n"
+"мрежови атаки."
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Вътрешна ISDN карта"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
+msgstr ""
+"Internet superserver daemon (често наричан inetd) пуска различни други\n"
+"Интернет услуги. Той отговаря за пускането на много услуги от рода на\n"
+"telnet, ftp, rsh и rlogin. Изключването на inetd изключва всички услуги,\n"
+"за които отговаря."
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
-msgstr "Какъв е типът на ISDN връзката ?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache е World Wide Web (WWW) сървър. Той служи да обработва на HTML "
+"файлове\n"
+"и CGI."
-#: ../../network/isdn.pm_.c:45
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerful\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-"Коя ISDN настройка предпочитате ?\n"
-"\n"
-"* Старата настройка използва isdn4net. Съдържа мощни инструменти\n"
-" но е капризна за настройка и не е стандартна.\n"
-"\n"
-"* Новата настройка е по-лесна за разбиране, по стандартна,\n"
-" но с по-малко инструменти.\n"
-"\n"
-"Препоръчваме ви олекотената настройка.\n"
+"HardDrake прави проби на хардуера, и евентуално настройва\n"
+"нов/променен хардуер."
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "Нова настройка (isdn-light)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
+msgstr ""
+"GPM добавя поддръжка на мишка в текстово-базираните Linux приложения като\n"
+"Midnight Commander. Също така позволява базираните на мишка конзоли\n"
+"режи-и-лепи операции, и включва поддръжка на изкачащи менюта на козолата."
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "Стара настройка (isdn4net)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
+msgstr ""
+"cron е стандартна UNIX програма, която периодично пуска определени програми\n"
+"по разписание. vixie cron добавя множество преимущества над тези на простия\n"
+"UNIX cron, включително по-добра сигурност и мощни настройващи опции."
-#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
-#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
-#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
-msgid "ISDN Configuration"
-msgstr "Настройка на IDSN"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
+msgstr ""
+"Пуска команди по разписание във време определено от командата at и пуска\n"
+"набор от други, когато натовареността спадне достатъчно."
-#: ../../network/isdn.pm_.c:166
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"apmd is used for monitoring battery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"Посочете доставчика си.\n"
-" Ако не е в списъка, изберете Unlisted"
+"apmd се използва за наблюдение на батерията и записвайки статуса чрез\n"
+"syslog. Може също да се използва за спиране на машината, когато батерията е "
+"изтощена."
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol"
-msgstr "Протокол Европа"
+#: ../../services.pm:1
+#, c-format
+msgid "Anacron is a periodic command scheduler."
+msgstr "Anacrton - периодично изпълняване на команди по разписание."
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol (EDSS1)"
-msgstr "Протокол Европа (EDSS1)"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "Пусни ALSA (Advanced Linux Sound Architecture) звуковата система"
-#: ../../network/isdn.pm_.c:181
-msgid "Protocol for the rest of the world"
-msgstr "Протокол за останалия свят"
+#: ../../standalone.pm:1
+#, c-format
+msgid "Installing packages..."
+msgstr "Инсталиране на пакети ..."
-#: ../../network/isdn.pm_.c:181
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
-"Протокол за останалия свят\n"
-" без D-Канал (наета линия)"
-#: ../../network/isdn.pm_.c:185
-msgid "Which protocol do you want to use?"
-msgstr "Какъв протокол желаете да промените ?"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
+msgstr ""
-#: ../../network/isdn.pm_.c:196
+#: ../../standalone.pm:1
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
msgstr ""
-#: ../../network/isdn.pm_.c:203
-msgid "What kind of card do you have?"
-msgstr "Какъв тип карта имате ?"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "I don't know"
-msgstr "Не знам"
+#: ../../standalone.pm:1
+#, c-format
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
+msgstr ""
-#: ../../network/isdn.pm_.c:204
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone.pm:1
+#, c-format
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgstr ""
+
+#: ../../standalone.pm:1
+#, fuzzy, c-format
+msgid "[keyboard]"
+msgstr "Клавиатура"
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
+msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../standalone.pm:1
+#, c-format
msgid ""
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
+msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
msgstr ""
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
"\n"
-"Ако имате ISA карта, стойностите на следващия екран трябва да са верни.\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
"\n"
-"Ако имате PCMCIA карта, ще трябва да знаете IRC и IO на картата си.\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+msgstr ""
-#: ../../network/isdn.pm_.c:214
-msgid "Abort"
-msgstr "Отказ"
+#: ../../steps.pm:1
+#, c-format
+msgid "Exit install"
+msgstr "Изход от инсталационната програма"
-#: ../../network/isdn.pm_.c:214
-msgid "Continue"
-msgstr "Нататък"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Install system updates"
+msgstr "Инсталиране на системата"
-#: ../../network/isdn.pm_.c:220
-msgid "Which is your ISDN card?"
-msgstr "Коя е ISDN картата ви ?"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure services"
+msgstr "Настройка на услугите"
-#: ../../network/isdn.pm_.c:239
-msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
-msgstr ""
-"Открита е ISDN PCI карта, но с непознат тип. Моля изберете някоя PCI карта "
-"от следващият екран."
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure X"
+msgstr "Настройка на Х"
-#: ../../network/isdn.pm_.c:248
-msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Не е намерена ISDN PCI карта. Моля изберете от следващият екран."
+#: ../../steps.pm:1
+#, c-format
+msgid "Install bootloader"
+msgstr "Инсталиране на bootloader"
-#: ../../network/modem.pm_.c:57
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Моля, изберете сериен порт към който свързан модемът ви."
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure networking"
+msgstr "Настойка на мрежата"
-#: ../../network/modem.pm_.c:67
-msgid "Dialup options"
-msgstr "Опции за избиране по телефон"
+#: ../../steps.pm:1
+#, c-format
+msgid "Add a user"
+msgstr "Добавяне на потребител"
-#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
-msgid "Connection name"
-msgstr "Име на връзката"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install system"
+msgstr "Инсталиране на системата"
-#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
-msgid "Phone number"
-msgstr "Телефонен номер"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose packages to install"
+msgstr "Пакети за инсталиране"
-#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
-msgid "Login ID"
-msgstr "Потребителско име"
+#: ../../steps.pm:1
+#, c-format
+msgid "Format partitions"
+msgstr "Форматиране на дялове"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../steps.pm:1
+#, fuzzy, c-format
+msgid "Partitioning"
+msgstr "Печатане"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "PAP"
-msgstr "PAP"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your keyboard"
+msgstr "Избор на клавиатура"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Script-based"
-msgstr "Базирана на скрипт"
+#: ../../steps.pm:1
+#, c-format
+msgid "Select installation class"
+msgstr "Избор на клас инсталация"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Terminal-based"
-msgstr "Базирана на терминал"
+#: ../../steps.pm:1
+#, c-format
+msgid "Hard drive detection"
+msgstr "Засичане на дисковете"
-#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
-msgid "Domain name"
-msgstr "Име на домейна"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure mouse"
+msgstr "Настройка на мишка"
-#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
-msgid "First DNS Server (optional)"
-msgstr "Първи DNS сървър (по избор)"
+#: ../../steps.pm:1
+#, c-format
+msgid "License"
+msgstr ""
-#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
-msgid "Second DNS Server (optional)"
-msgstr "Втори DNS сървър (по избор)"
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your language"
+msgstr "Избор на език"
-#: ../../network/modem.pm_.c:95
+#: ../../ugtk2.pm:1
+#, c-format
+msgid "utopia 25"
+msgstr ""
+
+#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
+#, c-format
+msgid "logdrake"
+msgstr "логдрейк"
+
+#: ../../ugtk.pm:1
+#, c-format
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (инсталация графичен драйвер)"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"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:1
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s с ЕКСПЕРИМЕНТАЛНO хардуерно 3D ускорение"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Картата ви може да има поддръжка на хардуерно 3D ускорение в XFree %s."
-#: ../../network/modem.pm_.c:97
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s с хардуерно 3D ускорение"
+
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"Картата ви може да има поддръжка на хардуерно 3D ускорение, но само с XFree %"
+"s,\n"
+"ОТБЕЛЕЖЕТЕ, ЧЕ ТОВА Е ЕКСПЕРИМЕНТАЛНА ПОДДРЪЖКА И МОЖЕ ДА ЗАБИЕ КОМПЮТЪРА "
+"ВИ.\n"
+"Картата ви се поддържа от XFree %s, който може да има по-добра поддръжка на "
+"2D."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Do nothing"
-msgstr "но не съвпада"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Картата ви може да има поддръжка на хардуерно 3D ускорение, но само с Xfree %"
+"s.\n"
+"Картата ви се поддържа от XFree %s, който може да има по-добра поддръжка на "
+"2D."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Install rpm"
-msgstr "Инсталирай"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Title"
-msgstr "Таблица"
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Настройка само на карта \"%s\" (%s)"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Use Xinerama extension"
+msgstr "Използвай разширението Xinerama"
-#: ../../network/netconnect.pm_.c:29
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Configure all heads independently"
+msgstr ""
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Коя настройка на XFree искате да имате ?"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree configuration"
+msgstr "Настройка на XFree"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Select the memory size of your graphics card"
+msgstr "Изберете капацитет на паметта на графичната си карта"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
+"Your system supports multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
-"\n"
-"Можете да се отвържете или да пренастроите връзката."
-#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Multi-head configuration"
+msgstr ""
+
+#: ../../Xconfig/card.pm:1
+#, fuzzy, c-format
+msgid "Choose an X server"
+msgstr "Изберете X сървър"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "X server"
+msgstr "X сървър"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "64 MB or more"
+msgstr "64 МБ или повече"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "32 MB"
+msgstr "32 МБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "16 MB"
+msgstr "16 МБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "8 MB"
+msgstr "8 МБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "4 MB"
+msgstr "4 МБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "2 MB"
+msgstr "2 МБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "1 MB"
+msgstr "1 МБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "512 kB"
+msgstr "512 КБ"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "256 kB"
+msgstr "256 КБ"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"You can reconfigure your connection."
+"%s"
msgstr ""
+"Да запазя ли промените ?\n"
+"Текущата настройка е:\n"
"\n"
-"Можете да пренастроите връзката."
+"%s"
-#: ../../network/netconnect.pm_.c:29
-msgid "You are currently connected to internet."
-msgstr "В момента сте свързани към Интернет"
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Options"
+msgstr "Опции"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolution"
+msgstr "Разделителна способност"
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Monitor"
+msgstr "Монитор"
+
+#: ../../Xconfig/main.pm:1
+#, fuzzy, c-format
+msgid "Graphic Card"
+msgstr "Графична карта"
+
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakperm:1
+#: ../../standalone/draksplash:1 ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
+#, c-format
+msgid "Quit"
+msgstr "Изход"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Vertical refresh rate"
+msgstr "Вертикална скорост на възстановяване"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Horizontal refresh rate"
+msgstr "Хоризонтална скорост на възстановяване"
-#: ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/monitor.pm:1
+#, c-format
msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"You can connect to Internet or reconfigure your connection."
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"Двата критични параметъра са вертикалната скорост на възстановяване, която "
+"отразява скоростта, \n"
+"с която целият екран се възстановява, и най-важното - хоризонталната\n"
+"синхронизационна скорост, която отразява скоростта, с която се изписват "
+"хоризонталните линии.\n"
"\n"
-"Можете да се свържете към Интернет или да пренастроите връзката."
+"МНОГО Е ВАЖНО да изберете такава синхронизационната скорост, която да "
+"отговаря на възможностите на Вашия монитор - в противен случай можете да "
+"повредите монитора си.\n"
+" Ако имате някакви съмнения, изберете консервативна настройка."
-#: ../../network/netconnect.pm_.c:32
-msgid "You are not currently connected to Internet."
-msgstr "В момента не сте свързани към Интернет"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgstr ""
-#: ../../network/netconnect.pm_.c:36
-msgid "Connect"
-msgstr "Свържи"
+#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Vendor"
+msgstr "Върни"
-#: ../../network/netconnect.pm_.c:37
-msgid "Disconnect"
-msgstr "Отвържи"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play"
+msgstr ""
-#: ../../network/netconnect.pm_.c:38
-#, fuzzy
-msgid "Configure the connection"
-msgstr "В момента настройвам мрежата"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Choose a monitor"
+msgstr "Изберете монитор"
-#: ../../network/netconnect.pm_.c:41
-msgid "Internet connection & configuration"
-msgstr "Интернет връзка и настройка"
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Graphics card: %s"
+msgstr "Графична карта: %s"
-#: ../../network/netconnect.pm_.c:94
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "We are now going to configure the %s connection."
-msgstr "Сега ще настроим %s връзката."
+msgid "Choose the resolution and the color depth"
+msgstr "Изберете разделителна способност и дълбочина на цветовете"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolutions"
+msgstr "Разделителна способност"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 милиарда цвята (32 бита)"
-#: ../../network/netconnect.pm_.c:103
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "16 million colors (24 bits)"
+msgstr "16 милиона цвята (24 бита)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "65 thousand colors (16 bits)"
+msgstr "65 хиляди цвята (16 бита)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "32 thousand colors (15 bits)"
+msgstr "32 хиляди цвята (15 бита)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "256 colors (8 bits)"
+msgstr "256 цвята (8 бита)"
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Is this the correct setting?"
+msgstr "Всичко правилно ли е ?"
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Leaving in %d seconds"
+msgstr "%d секунди"
+
+#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
-"\n"
-"\n"
-"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press OK to continue."
+"An error occurred:\n"
+"%s\n"
+"Try to change some parameters"
msgstr ""
+
+#: ../../Xconfig/test.pm:1
+#, fuzzy, c-format
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Внимание: тестването на тази графична карта може да \"замрази\" компютъра ви"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Do you want to test the configuration?"
+msgstr "Искате ли да тествате настройките?"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Test of the configuration"
+msgstr "Проверка на настройката"
+
+#: ../../Xconfig/various.pm:1
+#, fuzzy, c-format
+msgid "What norm is your TV using?"
+msgstr "Какъв е типът на ISDN връзката ?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
-"\n"
-"Сега ще настроим %s връзката.\n"
-"\n"
-"Натиснете OK, за да продължите."
-
-#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
-#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
-msgid "Network Configuration"
-msgstr "Настройка на мрежата"
+"Do you have this feature?"
+msgstr ""
-#: ../../network/netconnect.pm_.c:133
+#: ../../Xconfig/various.pm:1
+#, c-format
msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
+"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 ""
-"Тъй като правите мрежова инсталация, мрежата ви вече е настроена.\n"
-"Цъкнете Ok, за да запазите настройката, или Отмяна, за да пренастоите "
-"Интернет и мрежовата си връзка.\n"
+"Kомпютъра ви може автоматично, да влезе в X при стартиране.\n"
+"Искате ли X да се стартира, когато рестартирате системата?"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphical interface at startup"
+msgstr "X при стартиране на системата"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 драйвер: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 server: %s\n"
+msgstr "XFree86 сървър: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Разделителна способност: %s\n"
-#: ../../network/netconnect.pm_.c:157
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Дълбочина на цвета: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics memory: %s kB\n"
+msgstr "Графична памет: %s kB\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics card: %s\n"
+msgstr "Графична карта: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor VertRefresh: %s\n"
+msgstr "Вертикално опресняване на монитора: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor HorizSync: %s\n"
+msgstr "Хоризонтална синхронизация на монитора: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor: %s\n"
+msgstr "Монитор: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse device: %s\n"
+msgstr "Устройство на мишката: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse type: %s\n"
+msgstr "Тип мишка: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Keyboard layout: %s\n"
+msgstr "Тип клавиатура: %s\n"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Options: %s"
+msgstr "Опции: %s"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount point: "
+msgstr "Място на монтиране: "
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Server: "
+msgstr "Сървър"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "Please enter the WebDAV server URL"
+msgstr "Моля, пробвайте мишката си"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount point"
+msgstr "Място на монтиране"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "Server"
+msgstr "Сървър"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount"
+msgstr "Монтирай"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Unmount"
+msgstr "Демонтирай"
+
+#: ../../diskdrake/dav.pm:1
+#, fuzzy, c-format
+msgid "New"
+msgstr "нов"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
msgid ""
-"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"
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
msgstr ""
-"Добре дошли при магьосника за настройка на мрежа\n"
-"\n"
-"Вие сте на път да настроите Интернет/мрежовата си връзка.\n"
-"Ако не искате да използвате автоматично засичане, изключете кутийката.\n"
-#: ../../network/netconnect.pm_.c:163
-msgid "Choose the profile to configure"
-msgstr "Изберете профил за настройка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``%s'' instead"
+msgstr "Вместо това използвайте ``%s''"
-#: ../../network/netconnect.pm_.c:164
-msgid "Use auto detection"
-msgstr "Използвай автоматично засичане"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Type"
+msgstr "Вид"
-#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
-#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
-#: ../../standalone/drakfloppy_.c:118
-msgid "Expert Mode"
-msgstr "Разширени функиции"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``Unmount'' first"
+msgstr "Първо използвайте 'Демонтиране'"
-#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
-msgid "Detecting devices..."
-msgstr "Откриване на устройства ..."
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Delete"
+msgstr "Изтрий"
-#: ../../network/netconnect.pm_.c:214
-msgid "Normal modem connection"
-msgstr "Обикновена модемна връзка"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create"
+msgstr "Създай"
-#: ../../network/netconnect.pm_.c:214
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected on port %s"
-msgstr "засечен на порт %s"
+msgid "Filesystem types:"
+msgstr "Видове файлова система:"
-#: ../../network/netconnect.pm_.c:215
-#, fuzzy
-msgid "Winmodem connection"
-msgstr "Обикновена модемна връзка"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Empty"
+msgstr "Празен"
-#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "detected"
-msgstr "засечена %s"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "Windows"
+msgstr "NIS домейн"
-#: ../../network/netconnect.pm_.c:216
-msgid "ISDN connection"
-msgstr "ISDN връзка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "HFS"
+msgstr "HFS"
-#: ../../network/netconnect.pm_.c:216
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected %s"
-msgstr "засечена %s"
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../network/netconnect.pm_.c:217
-msgid "ADSL connection"
-msgstr "ADSL връзка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Swap"
+msgstr "Swap"
-#: ../../network/netconnect.pm_.c:218
-msgid "Cable connection"
-msgstr "Кабелна връзка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Journalised FS"
+msgstr "Журнална FS"
-#: ../../network/netconnect.pm_.c:218
-msgid "cable connection detected"
-msgstr "засечена е кабелна връзка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../network/netconnect.pm_.c:219
-msgid "LAN connection"
-msgstr "LAN връзка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid "No hard drives found"
+msgstr "Локален принтер"
-#: ../../network/netconnect.pm_.c:219
-msgid "ethernet card(s) detected"
-msgstr "ethernet карти засечени"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please click on a partition"
+msgstr "Моля, цъкнете на дяла"
-#: ../../network/netconnect.pm_.c:222
-msgid "Choose the connection you want to configure"
-msgstr "Изберете връзката, който искате да използвате"
+#: ../../diskdrake/hd_gtk.pm:1
+#, fuzzy, c-format
+msgid ""
+"You have one big MicroSoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
+msgstr ""
+"Имате един голям FAT дял\n"
+"(по принцип се ползват от Microsoft Dos/Windows).\n"
+"Предлагам първо да промените големината на този дял\n"
+"(щракнете върху него, а след това щракнете върху \"Промени големината\")"
-#: ../../network/netconnect.pm_.c:246
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Choose action"
+msgstr "Изберете действие"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Wizard"
+msgstr "Магьосник"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
msgstr ""
-"Настроили сте няколко начина за връзка към Интернет.\n"
-"Изберете този, който искате да използвате.\n"
-"\n"
+"Ако смятате да използвате aboot, оставете свободно пространство (2048 "
+"сектора\n"
+"са достатъчни) в началото на диска"
-#: ../../network/netconnect.pm_.c:247
-msgid "Internet connection"
-msgstr "Интернет връзка"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please make a backup of your data first"
+msgstr "Първо създайте backup на своите данни"
-#: ../../network/netconnect.pm_.c:253
-msgid "Do you want to start the connection at boot?"
-msgstr "Искате ли да стартирате връзката си при зареждане ?"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read carefully!"
+msgstr "Прочетете внимателно !"
-#: ../../network/netconnect.pm_.c:267
-msgid "Network configuration"
-msgstr "Настройка на мрежата"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key (again)"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "The encryption keys do not match"
+msgstr "Паролите на съвпадат"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose your filesystem encryption key"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Filesystem encryption key"
+msgstr "Вид файлова система: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Type: "
+msgstr "Вид: "
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
+msgstr "на шина %d адрес %d\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "Тип на таблицата с дялове: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-дискове %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Info: "
+msgstr "Информация: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s\n"
+msgstr "Размер: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read-only"
+msgstr ""
-#: ../../network/netconnect.pm_.c:268
-msgid "The network needs to be restarted"
-msgstr "Мрежата трябва да бъде рестартирана"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Device: "
+msgstr "Устройство: "
-#: ../../network/netconnect.pm_.c:272
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
-"Изникна проблем при рестартирането на мрежата:\n"
"\n"
-"%s"
+"Тази специална стартираща\n"
+"ивица на дяла е за двойно\n"
+"стартиране на системата ви.\n"
-#: ../../network/netconnect.pm_.c:282
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
msgstr ""
-"Поздравления, мрежовате и Интернет настройката е завършена.\n"
"\n"
-"Настройките ще бъдат приложени към системата ви.\n"
+"Вероятно е този дял да е\n"
+"Драйвер-дял, може би трябва\n"
+"трябва да го оставите.\n"
-#: ../../network/netconnect.pm_.c:286
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"След като стане това, препоръчваме ви да рестартирате X\n"
-"средата си, за да избегнете проблеми със смяната името на хоста."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "Име на loopback файла: %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID-disks %s\n"
+msgstr "RAID-дискове %s\n"
-#: ../../network/netconnect.pm_.c:287
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Chunk size %s\n"
+msgstr "Размер на парчето %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Level %s\n"
+msgstr "Ниво %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
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."
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"Дял, който се стартира по подразбиране\n"
+" (за MS-DOS boot, не за lilo)\n"
-#: ../../network/network.pm_.c:278
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"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."
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
-"ВНИМАНИЕ: Това устройство вече е настроено да се свързва към Интернет.\n"
-"Просто приемете, за да оставите устройството настроено.\n"
-"Поправката на полетата по-долу ще презапише тази настройка."
+"Loopback файл(ове):\n"
+" %s\n"
-#: ../../network/network.pm_.c:283
-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)."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mounted\n"
+msgstr "Монтиран\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Not formatted\n"
+msgstr "Неформатиран\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Formatted\n"
+msgstr "Форматиран\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "От цилиндър %d до цилиндър %d\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ", %s sectors"
+msgstr ", %s сектора"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s"
+msgstr "Размер: %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start: sector %s\n"
+msgstr "Начало: сектор %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Name: "
+msgstr "Име: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "Буква на устройството под DOS: %s (просто предположение)\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "partition %s is now known as %s"
msgstr ""
-"Моля, въведете IP настройките за тази машина.\n"
-"Всяко устройство трябва да бъде въведено като IP адрес\n"
-"с точково-десетично означение (например, 1.2.3.4)."
-#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Configuring network device %s"
-msgstr "Настройка на мрежовото устройство %s"
+msgid "Removing %s"
+msgstr "Изтриване на %s"
-#: ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid " (driver %s)"
-msgstr " (драйвер %s)"
+msgid "Copying %s"
+msgstr "Копиране на %s"
-#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
-#: ../../standalone/drakconnect_.c:464
-msgid "IP address"
-msgstr "IP адрес"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving files to the new partition"
+msgstr "Премести файловете на нов дял"
-#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
-#: ../../standalone/drakgw_.c:291
-msgid "Netmask"
-msgstr "Мрежова маска"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Directory %s already contains data\n"
+"(%s)"
+msgstr ""
+"Директорията %s вече съдържа някакви данни\n"
+"(%s)"
-#: ../../network/network.pm_.c:298
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Hide files"
+msgstr "Скрий файловете"
-#: ../../network/network.pm_.c:298
-msgid "Automatic IP"
-msgstr "Автоматичен IP адрес"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move files to the new partition"
+msgstr "Премести файловете на нов дял"
-#: ../../network/network.pm_.c:299
-#, fuzzy
-msgid "Start at boot"
-msgstr "Пуснат при стартиране"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "След форматиране на дяла %s, всички данни върху него ще бъдат загубени"
-#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "You'll need to reboot before the modification can take place"
+msgstr "Трябва да рестартирате, преди промените да влязат в сила"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "Таблицата на дяловете на устройство %s ще бъде записана върху диска !"
-#: ../../network/network.pm_.c:326
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0'."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
msgstr ""
+"Маркирали сте софтуерен RAID дял като root (/).\n"
+"Няма зареждаща програма, която да може да се справи с него без /boot дял.\n"
+"Така че добавете /boot дял"
-#: ../../network/network.pm_.c:330
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0'."
+"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 ""
+"Дялът, който сте маркирали за root (/) е физически разположен отвъд\n"
+"1024-ия цилиндър на твърдия диск и нямате /boot дял.\n"
+"Ако смятате да използвате boot мениджъра LILO, бъдете внимателни при\n"
+"прибавянето на /boot дял"
-#: ../../network/network.pm_.c:350
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
-"Моля, въведете host name за машината.\n"
-"Host името трябва да буде напълно квалифицирано име,\n"
-"като ``mybox.mylab.myco.com''.\n"
-"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
+"Съжалявам, но не мога да приема да създам /boot толкова навътре върху диска "
+"(върху цилиндър > 1024).\n"
+"Или използвате LILO и то не работи, или не използвате LILO и нямате нужда "
+"от /boot"
-#: ../../network/network.pm_.c:355
-msgid "DNS server"
-msgstr "DNS сървър"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Този пакет трябва да бъде обновен\n"
+"Сигурни ли сте, че искате да го изключите ?"
-#: ../../network/network.pm_.c:356
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr ""
+msgid "What type of partitioning?"
+msgstr "Какъв тип разделяне на дялове ?"
-#: ../../network/network.pm_.c:358
-msgid "Gateway device"
-msgstr "Gateway устройство"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Be careful: this operation is dangerous."
+msgstr "Внимание: тази операция е опасна"
-#: ../../network/network.pm_.c:363
-#, fuzzy
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "chunk size"
+msgstr "големина на парчето"
-#: ../../network/network.pm_.c:367
-#, fuzzy
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "level"
+msgstr "ниво"
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Настройка на proxy"
+#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "device"
+msgstr "устройство"
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Various"
+msgstr "Различни"
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount options"
+msgstr "Опции за mount:"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (useful for laptops)"
-msgstr "Проследяване на ID на мрежовата карта (полезно при лаптопи)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "File already exists. Use it?"
+msgstr "Файлът вече съшествува. Да го използвам ли ?"
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr "Proxy-сървъра трябва да е http://..."
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "File is already used by another loopback, choose another one"
+msgstr "Файлът вече се използва то друг loopback, изберете друг файл."
-#: ../../network/network.pm_.c:388
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL трябва да е започва с 'http:'"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Give a file name"
+msgstr "Дайте име на файл"
-#: ../../network/shorewall.pm_.c:26
-msgid "Firewalling configuration detected!"
-msgstr "Открита е настройка на Защитна Стена !"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Filesystem type: "
+msgstr "Вид файлова система: "
-#: ../../network/shorewall.pm_.c:27
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"Внимание ! Открита е настройка на Защитна Стена. Може да се наложи някаква "
-"ръчна поправка след инсталацията."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size in MB: "
+msgstr "Големина в MB: "
-#: ../../network/tools.pm_.c:57
-msgid "Internet configuration"
-msgstr "Настройка на Интернет"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: "
+msgstr "Име на loopback файла: "
-#: ../../network/tools.pm_.c:58
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Искате ли сега да опитате връзка към Интернет ?"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
-msgid "Testing your connection..."
-msgstr "Изпробване на връзката..."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition can't be used for loopback"
+msgstr "Този дял не може да бъде използван за loopback"
-#: ../../network/tools.pm_.c:70
-msgid "The system is now connected to Internet."
-msgstr "Системата в момента е свързана към Интернет."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM name?"
+msgstr "LVM име ?"
-#: ../../network/tools.pm_.c:71
-msgid "For security reason, it will be disconnected now."
-msgstr "За ваша сигурност, сега тя ще бъдете отвързана."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "new"
+msgstr "нов"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing LVM to add to"
+msgstr "Изберете съществуващ LVM за прибавяне"
-#: ../../network/tools.pm_.c:72
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing RAID to add to"
+msgstr "Изберете съществуващ RAID за прибавяне"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving partition..."
+msgstr "Мествя дяла ... "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving"
+msgstr "Местене"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which sector do you want to move it to?"
+msgstr "На кой сектор искате да го преместите?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Sector"
+msgstr "Сектор"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which disk do you want to move it to?"
+msgstr "На кой диск искате да го преместите ?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move"
+msgstr "Премести"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "New size in MB: "
+msgstr "Нова големина в MB: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose the new size"
+msgstr "Изберете нова големина"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "Промени големината"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr ""
+"След промяна големината на дяла %s, данниte върху него ще бъдат загубени"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All data on this partition should be backed-up"
+msgstr "Всички данни на този дял трябва да бъдат архивирани"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition is not resizeable"
+msgstr "Големината на дяла не може да бъде променена"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Computing FAT filesystem bounds"
+msgstr "Изчислявам границите на fat файловата система"
+
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Къде искате да монтирате устройство %s ?"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-"Системата не изглежда свързана към Интернет.\n"
-"Опитайте се да пренастроите връзката."
+"Не мога да махна точката на монтиране, тъй като дялът се използва за "
+"loopback.\n"
+"Първо махнете loopback"
-#: ../../network/tools.pm_.c:96
-msgid "Connection Configuration"
-msgstr "Настройка на връзката"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount device %s?"
+msgstr "Къде искате да монтирате устройство %s ?"
-#: ../../network/tools.pm_.c:97
-msgid "Please fill or check the field below"
-msgstr "Моля, попълнете или проверете полето по-долу"
+#: ../../diskdrake/interactive.pm:1
+#, fuzzy, c-format
+msgid "Where do you want to mount the loopback file %s?"
+msgstr "Къде искате да монтирате loopback-файла %s ?"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
-msgid "Card IRQ"
-msgstr "IRQ на картата"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Switching from ext2 to ext3"
+msgstr "Преход от ext2 към ext3"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
-msgid "Card mem (DMA)"
-msgstr "Памет (DMA) на картата"
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Which filesystem do you want?"
+msgstr "Коя файлова система искате ?"
-#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
-msgid "Card IO"
-msgstr "IO на картата"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Change partition type"
+msgstr "Промяна типа на дяла"
-#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
-msgid "Card IO_0"
-msgstr "IO_0 на картата"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr ""
+"След промяна на типа на дяла %s, всички данни върху него ще бъдат загубени"
-#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
-msgid "Card IO_1"
-msgstr "IO_1 на картата"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove the loopback file?"
+msgstr "Да премахна ли loopback файла ?"
-#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
-msgid "Your personal phone number"
-msgstr "Личния ви телефонен номер"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+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 ""
-#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
-msgid "Provider name (ex provider.net)"
-msgstr "Име на доставчика (напр. provider.net)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Preference: "
+msgstr "Предпочитание: "
-#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
-msgid "Provider phone number"
-msgstr "Телефонен номер на доставчика"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start sector: "
+msgstr "Начален сектор: "
-#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
-msgid "Provider dns 1 (optional)"
-msgstr "1-ви DNS на доставчика (по желание)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create a new partition"
+msgstr "Създай нов дял"
-#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
-msgid "Provider dns 2 (optional)"
-msgstr "2-ри DNS на доставчика (по желание)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Use for loopback"
+msgstr "Използвай за loopback"
-#: ../../network/tools.pm_.c:109
-msgid "Choose your country"
-msgstr "Изберете страната си"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Modify RAID"
+msgstr "Модифицирай RAID"
-#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
-msgid "Dialing mode"
-msgstr "Режим на набиране"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from LVM"
+msgstr "Премахни от LVM"
-#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
-msgid "Connection speed"
-msgstr "Скорост на връзката"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from RAID"
+msgstr "Премахни от RAID"
-#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
-msgid "Connection timeout (in sec)"
-msgstr "Timeout на връзката (в сек)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to LVM"
+msgstr "Прибави към LVM"
-#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
-msgid "Account Login (user name)"
-msgstr "Име на акаунта (потебителско име)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to RAID"
+msgstr "Прибави към RAID"
-#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
-#: ../../standalone/drakconnect_.c:647
-msgid "Account Password"
-msgstr "Парола на акаунта"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Format"
+msgstr "Форматирай"
-#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
-msgid "United Kingdom"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Detailed information"
+msgstr "Подробна информация"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Trying to rescue partition table"
+msgstr "Опитвам се да спася таблицата на дяловете"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
+"Сложете дискета във флопито\n"
+"Всички данни, намиращи се върху дискетата, ще бъдат загубени"
-#: ../../partition_table.pm_.c:603
-msgid "mount failed: "
-msgstr "монтирането не успя: "
+#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Warning"
+msgstr "Предупреждение"
-#: ../../partition_table.pm_.c:667
-msgid "Extended partition not supported on this platform"
-msgstr "Разширени дялове не се поддържат на тази платформа"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Select file"
+msgstr "Изберете файл"
-#: ../../partition_table.pm_.c:685
+#: ../../diskdrake/interactive.pm:1
+#, c-format
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."
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-"Имате празнина в таблицата с дяловете, но не мога да я използвам.\n"
-"Единственият начин е да преместите главните си дялове, за да имате празно "
-"място след extended-дяловете"
+"Резервната таблица на дяловете не е със същата големина\n"
+"Да продължа ли все пак ?"
-#: ../../partition_table.pm_.c:774
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr "Възстановяването от файла %s не успя: %s"
+msgid "Removable media automounting"
+msgstr "Автоматично монтиране на сменяем носител"
-#: ../../partition_table.pm_.c:776
-msgid "Bad backup file"
-msgstr "Лош backup-файл"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Reload partition table"
+msgstr "Презареди таблицата с дяловете"
-#: ../../partition_table.pm_.c:796
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Error writing to file %s"
-msgstr "Грешка при запис във файла %s"
+msgid "Rescue partition table"
+msgstr "Спасяване таблицата с дяловете"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Restore partition table"
+msgstr "Възстанови таблицата с дяловете"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Save partition table"
+msgstr "Запази таблицата с дяловете"
-#: ../../partition_table/raw.pm_.c:192
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random trash"
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
msgstr ""
-"Нещо лошо става с устройството ви.\n"
-"Теста за целост на данните пропадна.\n"
-"Това значи, че писането на каквото и било по диска ще превръща\n"
-"произволно в боклук"
+"Ако искате още дялове, моля изтрийте един, за да можете да създадете един "
+"разширен дял"
-#: ../../pkgs.pm_.c:26
-msgid "must have"
-msgstr "нужен"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "I can't add any more partition"
+msgstr "Не мога да добавя повече дялове"
-#: ../../pkgs.pm_.c:27
-msgid "important"
-msgstr "важен"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All primary partitions are used"
+msgstr "Всички първични дялове се използват"
-#: ../../pkgs.pm_.c:28
-msgid "very nice"
-msgstr "много добър"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Hard drive information"
+msgstr "Информацията за твърдия диск"
-#: ../../pkgs.pm_.c:29
-msgid "nice"
-msgstr "добър"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Auto allocate"
+msgstr "Автоматично създаване"
-#: ../../pkgs.pm_.c:30
-msgid "maybe"
-msgstr "става"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Clear all"
+msgstr "Изчисти всичко"
-#: ../../printer/data.pm_.c:18
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Печатай, Без Опашка"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "Искате ли да запазите промените в /etc/fstab"
-#: ../../printer/data.pm_.c:19
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without writing the partition table?"
+msgstr "Изход, без да запис на таблицата на дяловете ?"
-#: ../../printer/data.pm_.c:30
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Линеен Принтерен Демон"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without saving"
+msgstr "Изход без запис"
-#: ../../printer/data.pm_.c:31
-msgid "LPD"
-msgstr "LPD"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Continue anyway?"
+msgstr "Продължение въпреки всичко ?"
-#: ../../printer/data.pm_.c:51
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Ново поколение"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to expert mode"
+msgstr "Премини в Експертен режим"
-#: ../../printer/data.pm_.c:52
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to normal mode"
+msgstr "Премини в Нормален режим"
-#: ../../printer/data.pm_.c:75
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Обща Unix Принтерна Система"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Undo"
+msgstr "Върни"
-#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Exit"
+msgstr "Излез"
-#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
-#: ../../printer/detect.pm_.c:250
-#, fuzzy
-msgid "Unknown Model"
-msgstr "Неизвестен модел"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose a partition"
+msgstr "Изберете дял"
-#: ../../printer/main.pm_.c:26
-msgid "Local printer"
-msgstr "Локален принтер"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose another partition"
+msgstr "Изберете друг дял"
-#: ../../printer/main.pm_.c:27
-msgid "Remote printer"
-msgstr "Отдалечен принтер"
+#: ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Change type"
+msgstr "Промяни типа"
-#: ../../printer/main.pm_.c:28
-msgid "Printer on remote CUPS server"
-msgstr "Принтер на отдалечен CUPS сървър"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Search servers"
+msgstr "DNS сървър"
-#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
-msgid "Printer on remote lpd server"
-msgstr "Принтер на отдалечен LPD сървър"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain"
+msgstr "NIS домейн"
-#: ../../printer/main.pm_.c:30
-msgid "Network printer (TCP/Socket)"
-msgstr "Мрежов принтер (TCP/Socket)"
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Username"
+msgstr "Потребителско име"
-#: ../../printer/main.pm_.c:31
-msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "Принтер на SMB/Windows 95/98/NT сървър"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
-#: ../../printer/main.pm_.c:32
-msgid "Printer on NetWare server"
-msgstr "Принтер на NetWare сървър"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Domain Authentication Required"
+msgstr "Идентификация"
-#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
-msgid "Enter a printer device URI"
-msgstr "Въведете URI на печатащо устройство"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Another one"
+msgstr "Интернет"
-#: ../../printer/main.pm_.c:34
-msgid "Pipe job into a command"
-msgstr "Прекарай работата през команда"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, fuzzy, c-format
+msgid "Which username"
+msgstr "Потребителско име"
-#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
-#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
-msgid "Unknown model"
-msgstr "Неизвестен модел"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
-#: ../../printer/main.pm_.c:317
-#, fuzzy
-msgid "Local Printers"
-msgstr "Локален принтер"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "cpu # "
+msgstr ""
-#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
-#, fuzzy
-msgid "Remote Printers"
-msgstr "Отдалечен принтер"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SMBus controllers"
+msgstr ""
-#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on parallel port \\/*%s"
+msgid "USB controllers"
msgstr ""
-#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", USB printer \\/*%s"
+msgid "SCSI controllers"
msgstr ""
-#: ../../printer/main.pm_.c:334
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
+msgid "(E)IDE/ATA controllers"
msgstr ""
-#: ../../printer/main.pm_.c:337
-msgid ", multi-function device on USB"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Joystick"
msgstr ""
-#: ../../printer/main.pm_.c:339
-msgid ", multi-function device on HP JetDirect"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Scanner"
+msgstr "Изберете графична карта"
+
+#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "Unknown/Others"
+msgstr "Общ"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Bridges and system controllers"
msgstr ""
-#: ../../printer/main.pm_.c:341
-msgid ", multi-function device"
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Modem"
+msgstr "Модул"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Ethernetcard"
+msgstr "Ethernet карта"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Processors"
+msgstr ""
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Webcam"
msgstr ""
-#: ../../printer/main.pm_.c:344
+#: ../../harddrake/data.pm:1
#, fuzzy, c-format
-msgid ", printing to %s"
-msgstr "Грешка при запис във файла %s"
+msgid "Soundcard"
+msgstr "Звукова карта"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Other MultiMedia devices"
+msgstr "Друга"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Tvcard"
+msgstr "TV карта"
+
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Videocard"
+msgstr "Видео режим"
+
+#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "Tape"
+msgstr "Вид"
-#: ../../printer/main.pm_.c:346
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+msgid "DVD-ROM"
msgstr ""
-#: ../../printer/main.pm_.c:348
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid "CD/DVD burners"
msgstr ""
-#: ../../printer/main.pm_.c:352
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgid "CDROM"
msgstr ""
-#: ../../printer/main.pm_.c:356
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Disk"
+msgstr "Датска"
+
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
+msgid "Zip"
msgstr ""
-#: ../../printer/main.pm_.c:358
+#: ../../harddrake/data.pm:1
+#, fuzzy, c-format
+msgid "Floppy"
+msgstr "Запази на дискета"
+
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid ", using command %s"
+msgid "Let me pick any driver"
msgstr ""
-#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
-msgid "Raw printer (No driver)"
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Driver:"
+msgstr "Драйвер"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"If you really think that you know which driver is the right one for your "
+"card\n"
+"you can pick one in the above list.\n"
+"\n"
+"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: ../../printer/main.pm_.c:647
+#: ../../harddrake/sound.pm:1
#, c-format
-msgid "(on %s)"
-msgstr "(на %s)"
+msgid "Choosing an arbitratry driver"
+msgstr ""
-#: ../../printer/main.pm_.c:649
-msgid "(on this machine)"
-msgstr "(на тази машина)"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The classic bug sound tester is to run the following commands:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
+"by default\n"
+"\n"
+"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Sound trouble shooting"
+msgstr ""
-#: ../../printer/main.pm_.c:674
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Error: The \"%s\" driver for your sound card is unlisted"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
-msgid "On CUPS server \"%s\""
-msgstr "IP на CUPS сървъра"
+msgid "Unkown driver"
+msgstr "Неизвестен модел"
-#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
-#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
-#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
-#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
-msgid " (Default)"
-msgstr " (По подразбиране)"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:27
-msgid "Select Printer Connection"
-msgstr "Изберете връзка към принтера"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No known driver"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:28
-msgid "How is the printer connected?"
-msgstr "Как е свързан принтерът ?"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No open source driver"
+msgstr ""
+
+#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Please Wait... Applying the configuration"
+msgstr "Моля, почакайте ... Прилагане на настройките"
-#: ../../printer/printerdrake.pm_.c:30
-#, fuzzy
+#: ../../harddrake/sound.pm:1
+#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\n"
"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
+"It has been reported to oops the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Trouble shooting"
msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"Отдалечените на CUPS сървър принтери не трябва да настройвате\n"
-"тук; тези принтери ще бъдат засечени автоматично. Моля,\n"
-"изберете \"Принтер на отдалечен CUPS сървър\" в този случай."
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:38
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
-#, fuzzy
-msgid "CUPS configuration"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm:1
+#, fuzzy, c-format
+msgid "Sound configuration"
msgstr "Настройка"
-#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
-#, fuzzy
-msgid "Specify CUPS server"
-msgstr "Отдалечен CUPS сървър"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:83
-#, fuzzy
-msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
-msgstr ""
-"С отдалечените CUPS сървъри, няма нужда да настройвата какъвто\n"
-"и да било принтер тук; CUPS сървърите информират автоматично машината\n"
-"за техните принтери. Всички принтери известни на машината ви\n"
-"са изредени в полето \"Принтер по пордразбиране\". Изберете\n"
-"принтер по подразбиране за машината си от там и цъкнете на бутона\n"
-"\"Приложи/Препрочети принтерите\". Цъкнете на същия бутон, за да\n"
-"опресните списъка (може да отнеме до 30 секунди след пускането\n"
-"на CUPS, докато всички отдалечени принтери станат видими).\n"
-"Когато CUPS сървър е на друга мрежа, трябва да дадете IP адрес и,\n"
-"евентулано номер на порт на CUPS сървъра, за да вземете информация\n"
-"за принтера от сървъра, иначе оставете полето празно."
-
-#: ../../printer/printerdrake.pm_.c:84
-#, fuzzy
-msgid ""
-"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
-msgstr ""
-"\n"
-"Обикновено, CUPS автоматично се настройва според мрежовата среда,\n"
-"така че да имате достъп до принтерите на CUPS сървъра в локалната\n"
-"ви мрежа. Ако не сработи както трябва, изключете \"Автоматична\n"
-"CUPS настройка\" и поправете файла /etc/cups/cupsd.conf ръчно. Не\n"
-"забравяйте да рестартирате CUPS след това (команда: \"service\n"
-"cups restart\")."
-
-#: ../../printer/printerdrake.pm_.c:88
-msgid "The IP address should look like 192.168.1.20"
-msgstr "IP адресът трябва да бъде във формат 192.168.1.20"
-
-#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
-msgid "The port number should be an integer!"
-msgstr "Номерът на порта трябва да е цяло число !"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No alternative driver"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:99
-msgid "CUPS server IP"
-msgstr "IP на CUPS сървъра"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "enable radio support"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
-#: ../../standalone/harddrake2_.c:63
-msgid "Port"
-msgstr "Порт"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Radio support:"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:102
-msgid "Automatic CUPS configuration"
-msgstr "Автоматична настройка на CUPS"
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "PLL setting:"
+msgstr "Форматиране"
-#: ../../printer/printerdrake.pm_.c:159
-#, fuzzy
-msgid "Checking your system..."
-msgstr "Рестартиране на принтерната система"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
-#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
-#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
-#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
-#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
-#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
-#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
-#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
-#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
-#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
-#: ../../standalone/printerdrake_.c:47
-#, fuzzy
-msgid "Printerdrake"
-msgstr "Принтер"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Number of capture buffers:"
+msgstr ""
+
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Tuner type:"
+msgstr "Промяни типа"
+
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Card model:"
+msgstr "Памет (DMA) на картата"
-#: ../../printer/printerdrake.pm_.c:167
+#: ../../harddrake/v4l.pm:1
+#, c-format
msgid ""
-"There are no printers found which are directly connected to your machine"
+"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 ""
-#: ../../printer/printerdrake.pm_.c:179
-#, fuzzy
-msgid ""
-"The following printers\n"
-"\n"
-msgstr "Следните пакети ще бъдат премахнати"
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Unknown|Generic"
+msgstr "Общ"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect"
+msgstr "Използвай автоматично засичане"
+
+#: ../../interactive/newt.pm:1
+#, fuzzy, c-format
+msgid "Do"
+msgstr "Готово"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (default %s) "
+msgstr "Вашият избор ? (по подразбиране е %s)"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Bad choice, try again\n"
+msgstr "Лош избор, опитайте отново\n"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Re-submit"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:180
-#, fuzzy
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"The following printer\n"
-"\n"
-msgstr "Следните пакети ще бъдат премахнати"
+"=> Notice, a label changed:\n"
+"%s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:182
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"\n"
-"and one unknown printer are "
+"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:1
+#, c-format
+msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:184
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "Вашият избор ? (по подразбиране е %s)"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Do you want to click on this button?"
+msgstr "Искате ли да използвате aboot ?"
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Button `%s': %s"
+msgstr "Опции: %s"
+
+#: ../../interactive/stdio.pm:1
+#, fuzzy, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Вашият избор ? (по подразбиране е %s)"
+
+#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
-"\n"
-"and %d unknown printers are "
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"are "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"Зареждането на модула %s не успя.\n"
+"Искате ли да опитате отново с други параметри ?"
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Specify options"
+msgstr "Задай опции"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Autoprobe"
+msgstr "Автоматично засичане"
+
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"is "
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
+"В някои случаи, %s драйверът се нуждае от допълнителна информация, за\n"
+"да работи коректно, въпреки че нормално работи и без нея. Желаете ли "
+"даподадете\n"
+"допълнителни опции за него или да разрешите на драйвера да потърси "
+"информацията\n"
+"от която се нуждае ? По принцип това може да забие компютъра ви, но няма да "
+"го повреди."
-#: ../../printer/printerdrake.pm_.c:189
-#, fuzzy
-msgid "directly connected to your system"
-msgstr "Нямате мрежов адаптер!"
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Кой %s драйвер да пробвам ?"
-#: ../../printer/printerdrake.pm_.c:192
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Module options:"
+msgstr "Опции на модула:"
+
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
+"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''"
-#: ../../printer/printerdrake.pm_.c:194
+#: ../../modules/interactive.pm:1
#, c-format
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:200
-#, fuzzy
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Моля, изберете сериен порт към който свързан модемът ви."
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "(module %s)"
+msgstr "(модул %s)"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Инсталиране на драйвер за %s платка %s"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "See hardware info"
+msgstr "Виж хардуерната информация"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Имате ли някакъв %s интерфейс?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have another one?"
+msgstr "Имате ли друг(и) ?"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Намерени са %s %s интерфейси"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "comma separated strings"
+msgstr "Форматиране на дялове"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modules/parameters.pm:1
+#, fuzzy, c-format
+msgid "a number"
+msgstr "Телефонен номер"
-#: ../../printer/printerdrake.pm_.c:214
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:215
-#, fuzzy
-msgid "Do you want to enable printing on printers in the local network?\n"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Искате ли да настроите този принтер (\"%s\")\n"
-"като принтер по подразбиране ?"
+"Най-честия начин за свързване чрез ADSL е PPPOE.\n"
+"Някои връзки използват PPTP, а maлко използват DHCP.\n"
+"Ако не знаете, изберете 'използвай PPPOE'."
-#: ../../printer/printerdrake.pm_.c:217
-#, fuzzy
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Искате ли да стартирате връзката си при зареждане ?"
+#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
+#, c-format
+msgid "Connect to the Internet"
+msgstr "Свържи се към Интернет"
-#: ../../printer/printerdrake.pm_.c:218
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using pppoe) usb"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:219
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use dhcp"
+msgstr "използвай DHCP"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pptp"
+msgstr "използвай PPPTP"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pppoe"
+msgstr "използвай PPPOE"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Other ports"
+msgstr "Тестване портовете"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
-#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
-#: ../../printer/printerdrake.pm_.c:3060
-#, fuzzy
-msgid "Add a new printer"
-msgstr "Добави принтер"
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:259
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:272
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) and you Windows machines must be connected and "
-"turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you don't need "
-"it.\n"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Настройчик за малка защитна стена\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Това настройва персонална защитна стена за тази Mandrake Linux машина.\n"
+"За мощно постветено на защитата решение, моле, погледнете специализираната\n"
+"MandrakeSecurity Firewall дистрибуция."
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "No network card"
+msgstr "не е открита мрежова карта"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "POP and IMAP Server"
+msgstr "LDAP сървър"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Mail Server"
+msgstr "Сървър Бази-данни"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Domain Name Server"
+msgstr "Име на домейна"
+
+#: ../../network/drakfirewall.pm:1
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "Сървър"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "Име на хост:"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Host name"
+msgstr "Име на хост:"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Enter a Zeroconf host name without any dot if you don't\n"
+"want to use the default host name."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:289
+#: ../../network/ethernet.pm:1
+#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you don't need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
+"Моля, въведете име на хост ако го знаете.\n"
+"Някой DHCP сървъри изискват това за да работят.\n"
+"Host името трябва да буде напълно квалифицирано име,\n"
+"като ``mybox.mylab.myco.com''."
-#: ../../printer/printerdrake.pm_.c:307
-#, fuzzy
-msgid "Auto-detect printers connected to this machine"
-msgstr "Отдалечен принтер"
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Configuring network"
+msgstr "Настойка на мрежата"
-#: ../../printer/printerdrake.pm_.c:310
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid "no network card found"
+msgstr "не е открита мрежова карта"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet."
+msgstr "Моля, изберете кой мрежов адаптер да използвам за връзка към Интернет"
+
+#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "Choose the network interface"
+msgstr "Изберете мрежов интерфейс"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"Не беше намерен мрежов адаптер в системата ви.\n"
+"Не можете да настроите такъв вид връзка."
-#: ../../printer/printerdrake.pm_.c:313
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client."
+msgstr ""
+"Какъв DHCP клиент искате да използвате ?\n"
+"По подразбиране е dhcp-client ?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Не е намерена ISDN PCI карта. Моля изберете от следващият екран."
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
+"Открита е ISDN PCI карта, но с непознат тип. Моля изберете някоя PCI карта "
+"от следващият екран."
+
+#: ../../network/isdn.pm:1
+#, fuzzy, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "Коя е ISDN картата ви ?"
-#: ../../printer/printerdrake.pm_.c:329
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISDN Configuration"
+msgstr "Настройка на IDSN"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Abort"
+msgstr "Отказ"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Continue"
+msgstr "Нататък"
+
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
"\n"
-"Congratulations, your printer is now installed and configured!\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
+msgstr ""
"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
+"Ако имате ISA карта, стойностите на следващия екран трябва да са верни.\n"
+"\n"
+"Ако имате PCMCIA карта, ще трябва да знаете IRC и IO на картата си.\n"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "I don't know"
+msgstr "Не знам"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Какъв тип карта имате ?"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Printer auto-detection"
-msgstr "Използвай автоматично засичане"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Какъв протокол желаете да промените ?"
-#: ../../printer/printerdrake.pm_.c:385
+#: ../../network/isdn.pm:1
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid "Protocol for the rest of the world"
+msgstr "Протокол за останалия свят"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"Протокол за останалия свят\n"
+" без D-Канал (наета линия)"
-#: ../../printer/printerdrake.pm_.c:387
+#: ../../network/isdn.pm:1
#, fuzzy, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Принтер на SMB/Windows 95/98/NT сървър"
+msgid "European protocol"
+msgstr "Протокол Европа"
-#: ../../printer/printerdrake.pm_.c:391
-#, fuzzy, c-format
-msgid "Detected %s"
-msgstr "засечена %s"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "Протокол Европа (EDSS1)"
-#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
-#: ../../printer/printerdrake.pm_.c:440
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Printer on parallel port \\/*%s"
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"Посочете доставчика си.\n"
+" Ако не е в списъка, изберете Unlisted"
-#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
-#: ../../printer/printerdrake.pm_.c:443
+#: ../../network/isdn.pm:1
#, c-format
-msgid "USB printer \\/*%s"
+msgid "External ISDN modem"
+msgstr "Външен ISDN модем"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Вътрешна ISDN карта"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind is your ISDN connection?"
+msgstr "Какъв е типът на ISDN връзката ?"
+
+#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#, c-format
+msgid "Network Configuration Wizard"
+msgstr "Магьосник за настройка на мрежата"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Old configuration (isdn4net)"
+msgstr "Стара настройка (isdn4net)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "New configuration (isdn-light)"
+msgstr "Нова настройка (isdn-light)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
+"Коя ISDN настройка предпочитате ?\n"
+"\n"
+"* Старата настройка използва isdn4net. Съдържа мощни инструменти\n"
+" но е капризна за настройка и не е стандартна.\n"
+"\n"
+"* Новата настройка е по-лесна за разбиране, по стандартна,\n"
+" но с по-малко инструменти.\n"
+"\n"
+"Препоръчваме ви олекотената настройка.\n"
-#: ../../printer/printerdrake.pm_.c:399
+#: ../../network/modem.pm:1
#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "Мрежов принтер (TCP/Socket)"
+msgid "Do nothing"
+msgstr "но не съвпада"
-#: ../../printer/printerdrake.pm_.c:401
+#: ../../network/modem.pm:1
#, fuzzy, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Принтер на SMB/Windows 95/98/NT сървър"
+msgid "Install rpm"
+msgstr "Инсталирай"
-#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
-#, fuzzy
-msgid "Local Printer"
-msgstr "Локален принтер"
+#: ../../network/modem.pm:1
+#, c-format
+msgid ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr ""
+
+#: ../../network/modem.pm:1
+#, fuzzy, c-format
+msgid "Title"
+msgstr "Таблица"
-#: ../../printer/printerdrake.pm_.c:526
+#: ../../network/modem.pm:1
+#, c-format
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, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:530
-#, fuzzy
-msgid "You must enter a device or file name!"
-msgstr "Въведете URI на печатащо устройство"
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "Втори DNS сървър (по избор)"
-#: ../../printer/printerdrake.pm_.c:539
-#, fuzzy
-msgid "No printer found!"
-msgstr "Локален принтер"
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "Първи DNS сървър (по избор)"
-#: ../../printer/printerdrake.pm_.c:548
-#, fuzzy
-msgid "Available printers"
-msgstr "Локален принтер"
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Domain name"
+msgstr "Име на домейна"
-#: ../../printer/printerdrake.pm_.c:552
-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 ""
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "CHAP"
+msgstr "CHAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Script-based"
+msgstr "Базирана на скрипт"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Terminal-based"
+msgstr "Базирана на терминал"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "PAP"
+msgstr "PAP"
-#: ../../printer/printerdrake.pm_.c:553
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Login ID"
+msgstr "Потребителско име"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Phone number"
+msgstr "Телефонен номер"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection name"
+msgstr "Име на връзката"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Dialup options"
+msgstr "Опции за избиране по телефон"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Моля, изберете сериен порт към който свързан модемът ви."
+
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "Network Configuration"
+msgstr "Настройка на мрежата"
+
+#: ../../network/netconnect.pm:1
+#, c-format
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"
+"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."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:555
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
+"След като стане това, препоръчваме ви да рестартирате X\n"
+"средата си, за да избегнете проблеми със смяната името на хоста."
-#: ../../printer/printerdrake.pm_.c:556
+#: ../../network/netconnect.pm:1
+#, c-format
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 "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
+"Поздравления, мрежовате и Интернет настройката е завършена.\n"
+"\n"
+"Настройките ще бъдат приложени към системата ви.\n"
-#: ../../printer/printerdrake.pm_.c:558
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
+"Изникна проблем при рестартирането на мрежата:\n"
+"\n"
+"%s"
-#: ../../printer/printerdrake.pm_.c:559
-#, fuzzy
-msgid "Please choose the port where your printer is connected to."
-msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-
-#: ../../printer/printerdrake.pm_.c:561
-msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr ""
+"Този пакет трябва да бъде обновен\n"
+"Сигурни ли сте, че искате да го изключите ?"
-#: ../../printer/printerdrake.pm_.c:565
-#, fuzzy
-msgid "You must choose/enter a printer/device!"
-msgstr "Въведете URI на печатащо устройство"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Network configuration"
+msgstr "Настройка на мрежата"
-#: ../../printer/printerdrake.pm_.c:584
-#, fuzzy
-msgid "Manual configuration"
-msgstr "Настройка на цветове"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Do you want to start the connection at boot?"
+msgstr "Искате ли да стартирате връзката си при зареждане ?"
-#: ../../printer/printerdrake.pm_.c:633
-msgid "Remote lpd Printer Options"
-msgstr "Опции на отдалечен lpd-принтер"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection"
+msgstr "Интернет връзка"
-#: ../../printer/printerdrake.pm_.c:634
-#, fuzzy
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
-"За да използвате отдалечен lpd принтер, трябва\n"
-"да предоставите имената на хоста на принтерния сървър и\n"
-"името на принтера на този сървър."
+"Настроили сте няколко начина за връзка към Интернет.\n"
+"Изберете този, който искате да използвате.\n"
+"\n"
-#: ../../printer/printerdrake.pm_.c:635
-msgid "Remote host name"
-msgstr "Име на отдалечен хост"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Изберете връзката, който искате да използвате"
-#: ../../printer/printerdrake.pm_.c:636
-msgid "Remote printer name"
-msgstr "Име на отдалечен принтер"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ethernet card(s) detected"
+msgstr "ethernet карти засечени"
-#: ../../printer/printerdrake.pm_.c:639
-msgid "Remote host name missing!"
-msgstr "Липсва име на име на хост !"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "LAN connection"
+msgstr "LAN връзка"
-#: ../../printer/printerdrake.pm_.c:643
-msgid "Remote printer name missing!"
-msgstr "Липсва име на отдалечен принтер !"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "cable connection detected"
+msgstr "засечена е кабелна връзка"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Cable connection"
+msgstr "Кабелна връзка"
-#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
+#: ../../network/netconnect.pm:1
#, fuzzy, c-format
-msgid "Detected model: %s %s"
+msgid "detected"
msgstr "засечена %s"
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Scanning network..."
-msgstr "Стартиране мрежата ...."
-
-#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
+#: ../../network/netconnect.pm:1
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
-
-#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "Печатане на принтер \"%s\""
+msgid "ADSL connection"
+msgstr "ADSL връзка"
-#: ../../printer/printerdrake.pm_.c:795
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Настройки на SMB (Windows 9x/NT) принтер"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected %s"
+msgstr "засечена %s"
-#: ../../printer/printerdrake.pm_.c:796
-#, fuzzy
-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 "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
-"За да печатате на SMB принтер, трябва да дадете името\n"
-"на SMB хоста (Забележка ! То може да е различно от TCP/IP хоста !)\n"
-"и възможно IP адреса на принтерския сървър, както и общото име на\n"
-"принтера, до който искате достъп и подходящо имен, парола и информация\n"
-"за работната група."
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ISDN connection"
+msgstr "ISDN връзка"
-#: ../../printer/printerdrake.pm_.c:797
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Winmodem connection"
+msgstr "Обикновена модемна връзка"
-#: ../../printer/printerdrake.pm_.c:799
-msgid "SMB server host"
-msgstr "Хост на SMB сървър"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected on port %s"
+msgstr "засечен на порт %s"
-#: ../../printer/printerdrake.pm_.c:800
-msgid "SMB server IP"
-msgstr "IP на SMB сървър:"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Normal modem connection"
+msgstr "Обикновена модемна връзка"
-#: ../../printer/printerdrake.pm_.c:801
-msgid "Share name"
-msgstr "Общо име"
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Detecting devices..."
+msgstr "Откриване на устройства ..."
-#: ../../printer/printerdrake.pm_.c:804
-msgid "Workgroup"
-msgstr "Работна група"
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Mode"
+msgstr "Разширени функиции"
-#: ../../printer/printerdrake.pm_.c:806
-#, fuzzy
-msgid "Auto-detected"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Use auto detection"
msgstr "Използвай автоматично засичане"
-#: ../../printer/printerdrake.pm_.c:816
-msgid "Either the server name or the server's IP must be given!"
-msgstr "Трябва да бъдат зададени и името и IP адреса на сървъра !"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the profile to configure"
+msgstr "Изберете профил за настройка"
-#: ../../printer/printerdrake.pm_.c:820
-msgid "Samba share name missing!"
-msgstr "Липсва име на SAMBA share !"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"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 ""
+"Добре дошли при магьосника за настройка на мрежа\n"
+"\n"
+"Вие сте на път да настроите Интернет/мрежовата си връзка.\n"
+"Ако не искате да използвате автоматично засичане, изключете кутийката.\n"
-#: ../../printer/printerdrake.pm_.c:826
-msgid "SECURITY WARNING!"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"Тъй като правите мрежова инсталация, мрежата ви вече е настроена.\n"
+"Цъкнете Ok, за да запазите настройката, или Отмяна, за да пренастоите "
+"Интернет и мрежовата си връзка.\n"
-#: ../../printer/printerdrake.pm_.c:827
+#: ../../network/netconnect.pm:1
#, c-format
msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
+"We are now going to configure the %s connection.\n"
+"\n"
"\n"
+"Press OK to continue."
msgstr ""
+"\n"
+"\n"
+"\n"
+"Сега ще настроим %s връзката.\n"
+"\n"
+"Натиснете OK, за да продължите."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "We are now going to configure the %s connection."
+msgstr "Сега ще настроим %s връзката."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection & configuration"
+msgstr "Интернет връзка и настройка"
+
+#: ../../network/netconnect.pm:1
+#, fuzzy, c-format
+msgid "Configure the connection"
+msgstr "В момента настройвам мрежата"
-#: ../../printer/printerdrake.pm_.c:837
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Disconnect"
+msgstr "Отвържи"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Connect"
+msgstr "Свържи"
+
+#: ../../network/netconnect.pm:1
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
"\n"
+"You can reconfigure your connection."
msgstr ""
+"\n"
+"Можете да пренастроите връзката."
-#: ../../printer/printerdrake.pm_.c:840
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"You can connect to the Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Можете да се свържете към Интернет или да пренастроите връзката."
-#: ../../printer/printerdrake.pm_.c:911
-msgid "NetWare Printer Options"
-msgstr "Опции за NetWare принтер"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are not currently connected to the Internet."
+msgstr "В момента не сте свързани към Интернет"
-#: ../../printer/printerdrake.pm_.c:912
-#, fuzzy
+#: ../../network/netconnect.pm:1
+#, c-format
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 "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"За да печатите на NetWare принтер ,трябва да знаете имео му и възможно\n"
-"адреса на сървъра, както и името на опашката,потребителското име,парола."
+"\n"
+"Можете да се отвържете или да пренастроите връзката."
-#: ../../printer/printerdrake.pm_.c:913
-msgid "Printer Server"
-msgstr "Сървър на принтера"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are currently connected to the Internet."
+msgstr "В момента сте свързани към Интернет"
-#: ../../printer/printerdrake.pm_.c:914
-msgid "Print Queue Name"
-msgstr "Име на печатната опашката"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "URL трябва да е започва с 'http:'"
-#: ../../printer/printerdrake.pm_.c:919
-msgid "NCP server name missing!"
-msgstr "Липсва име на NCP сървър !"
+#: ../../network/network.pm:1
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "Proxy-сървъра трябва да е http://..."
-#: ../../printer/printerdrake.pm_.c:923
-msgid "NCP queue name missing!"
-msgstr "Липсва име на NCP опашка !"
+#: ../../network/network.pm:1
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP proxy"
-#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
+#: ../../network/network.pm:1
#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ""
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
+#: ../../network/network.pm:1
#, c-format
-msgid "Host \"%s\", port %s"
+msgid "Proxies configuration"
+msgstr "Настройка на proxy"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway device"
+msgstr "Gateway устройство"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1030
-#, fuzzy
-msgid "TCP/Socket Printer Options"
-msgstr "Опции на Socket принтер"
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server"
+msgstr "DNS сървър"
-#: ../../printer/printerdrake.pm_.c:1032
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) into the input fields."
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
msgstr ""
+"Моля, въведете host name за машината.\n"
+"Host името трябва да буде напълно квалифицирано име,\n"
+"като ``mybox.mylab.myco.com''.\n"
+"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
-#: ../../printer/printerdrake.pm_.c:1033
-#, fuzzy
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
msgstr ""
-"За да печатате на socket принтер, трябва да предоставите\n"
-"името на хоста на принтера и, евентуално, номер на порт.\n"
-"На HP JetDirect сървъри, номерът на порта обикновенно е 9100,\n"
-"на други сървъри може да варира. Вижте ръковоството на\n"
-"хардуера си."
-#: ../../printer/printerdrake.pm_.c:1037
-#, fuzzy
-msgid "Printer host name or IP missing!"
-msgstr "Липсва име на хост на принтерa !"
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1059
-#, fuzzy
-msgid "Printer host name or IP"
-msgstr "Име на хост на принтера"
+#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
-#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
-msgid "Printer Device URI"
-msgstr "Печатащо устройство URI"
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Start at boot"
+msgstr "Пуснат при стартиране"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "Network Hotplugging"
+msgstr "Настройка на мрежата"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Track network card id (useful for laptops)"
+msgstr "Проследяване на ID на мрежовата карта (полезно при лаптопи)"
+
+#: ../../network/network.pm:1
+#, fuzzy, c-format
+msgid "(bootp/dhcp/zeroconf)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Automatic IP"
+msgstr "Автоматичен IP адрес"
+
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Netmask"
+msgstr "Мрежова маска"
+
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "IP address"
+msgstr "IP адрес"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid " (driver %s)"
+msgstr " (драйвер %s)"
-#: ../../printer/printerdrake.pm_.c:1108
+#: ../../network/network.pm:1
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Настройка на мрежовото устройство %s"
+
+#: ../../network/network.pm:1
+#, c-format
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."
+"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 ""
-"Трябва директно да определите URI за достъп до принтера. URI трябва да "
-"изпълни или CUPS или Foomatic спецификациите. Отбележете, че не всички "
-"типове URI се поддрържат от spooler-ите."
+"Моля, въведете IP настройките за тази машина.\n"
+"Всяко устройство трябва да бъде въведено като IP адрес\n"
+"с точково-десетично означение (например, 1.2.3.4)."
-#: ../../printer/printerdrake.pm_.c:1123
-msgid "A valid URI must be entered!"
-msgstr "Трябва да бъде въведен валиден URI !"
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"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 ""
+"ВНИМАНИЕ: Това устройство вече е настроено да се свързва към Интернет.\n"
+"Просто приемете, за да оставите устройството настроено.\n"
+"Поправката на полетата по-долу ще презапише тази настройка."
-#: ../../printer/printerdrake.pm_.c:1463
-#, fuzzy
+#: ../../network/shorewall.pm:1
+#, c-format
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."
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fixes after installation."
msgstr ""
-"Всеки принтер се нуждае от име (например lp).\n"
-"Полетата Описание и Местоположе не трябва да бъдат\n"
-"попълвани. Има коментари за потребителите."
+"Внимание ! Открита е настройка на Защитна Стена. Може да се наложи някаква "
+"ръчна поправка след инсталацията."
-#: ../../printer/printerdrake.pm_.c:1464
-msgid "Name of printer"
-msgstr "Име на принтер"
+#: ../../network/shorewall.pm:1
+#, c-format
+msgid "Firewalling configuration detected!"
+msgstr "Открита е настройка на Защитна Стена !"
-#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
-msgid "Description"
-msgstr "Описание"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Password"
+msgstr "Парола на акаунта"
-#: ../../printer/printerdrake.pm_.c:1466
-msgid "Location"
-msgstr "Местоположение"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Login (user name)"
+msgstr "Име на акаунта (потебителско име)"
-#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
-msgid "Reading printer database..."
-msgstr "Четене на базата данни от принтери ..."
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection timeout (in sec)"
+msgstr "Timeout на връзката (в сек)"
-#: ../../printer/printerdrake.pm_.c:1482
-msgid "Preparing printer database..."
-msgstr "Подготвяне на базата данни от принтери ..."
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection speed"
+msgstr "Скорост на връзката"
-#: ../../printer/printerdrake.pm_.c:1578
-#, fuzzy
-msgid "Your printer model"
-msgstr "Име на отдалечен принтер"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Dialing mode"
+msgstr "Режим на набиране"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Choose your country"
+msgstr "Изберете страната си"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 2 (optional)"
+msgstr "2-ри DNS на доставчика (по желание)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "1-ви DNS на доставчика (по желание)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider phone number"
+msgstr "Телефонен номер на доставчика"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Име на доставчика (напр. provider.net)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Your personal phone number"
+msgstr "Личния ви телефонен номер"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_1"
+msgstr "IO_1 на картата"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_0"
+msgstr "IO_0 на картата"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO"
+msgstr "IO на картата"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Памет (DMA) на картата"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IRQ"
+msgstr "IRQ на картата"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Моля, попълнете или проверете полето по-долу"
-#: ../../printer/printerdrake.pm_.c:1579
+#: ../../network/tools.pm:1
#, c-format
+msgid "Connection Configuration"
+msgstr "Настройка на връзката"
+
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
+"The system doesn't seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
msgstr ""
+"Системата не изглежда свързана към Интернет.\n"
+"Опитайте се да пренастроите връзката."
-#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
-#, fuzzy
-msgid "The model is correct"
-msgstr "Всичко правилно ли е ?"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "За ваша сигурност, сега тя ще бъдете отвързана."
-#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
-#: ../../printer/printerdrake.pm_.c:1589
-#, fuzzy
-msgid "Select model manually"
-msgstr "Име на отдалечен принтер"
+#: ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Системата в момента е свързана към Интернет."
-#: ../../printer/printerdrake.pm_.c:1606
-msgid "Printer model selection"
-msgstr "Избор модел на принтера"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Testing your connection..."
+msgstr "Изпробване на връзката..."
-#: ../../printer/printerdrake.pm_.c:1607
-msgid "Which printer model do you have?"
-msgstr "Какъв модел принтер имате ?"
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Искате ли сега да опитате връзка към Интернет ?"
-#: ../../printer/printerdrake.pm_.c:1608
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Internet configuration"
+msgstr "Настройка на Интернет"
+
+#: ../../partition_table/raw.pm:1
+#, fuzzy, c-format
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
+msgstr ""
+"Нещо лошо става с устройството ви.\n"
+"Теста за целост на данните пропадна.\n"
+"Това значи, че писането на каквото и било по диска ще превръща\n"
+"произволно в боклук"
+
+#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " (Default)"
+msgstr " (По подразбиране)"
+
+#: ../../printer/cups.pm:1
+#, fuzzy, c-format
+msgid "On CUPS server \"%s\""
+msgstr "IP на CUPS сървъра"
+
+#: ../../printer/cups.pm:1 ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Remote Printers"
+msgstr "Отдалечен принтер"
+
+#: ../../printer/cups.pm:1 ../../printer/data.pm:1
+#, c-format
+msgid "CUPS"
+msgstr "CUPS"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on this machine)"
+msgstr "(на тази машина)"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on %s)"
+msgstr "(на %s)"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Обща Unix Принтерна Система"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng"
+msgstr "LPRng"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR Ново поколение"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD"
+msgstr "LPD"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Линеен Принтерен Демон"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ"
+msgstr "PDQ"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Печатай, Без Опашка"
+
+#: ../../printer/detect.pm:1
+#, fuzzy, c-format
+msgid "Unknown Model"
+msgstr "Неизвестен модел"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Unknown model"
+msgstr "Неизвестен модел"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Host %s"
+msgstr "Име на хост:"
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid "Network %s"
+msgstr "Мрежов интерфейс"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Interface \"%s\""
+msgstr "Интерфейс %s"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local network(s)"
+msgstr "не е открита мрежова карта"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer (No driver)"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", using command %s"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", printing to %s"
+msgstr "Грешка при запис във файла %s"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on HP JetDirect"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on USB"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on parallel port \\#%s"
+msgstr ""
+
+#: ../../printer/main.pm:1
+#, fuzzy, c-format
+msgid ", USB printer"
+msgstr "Няма принтер"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", USB printer \\#%s"
+msgstr ""
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " on parallel port \\#%s"
+msgstr ""
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printers"
+msgstr "Локален принтер"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Pipe job into a command"
+msgstr "Прекарай работата през команда"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter a printer device URI"
+msgstr "Въведете URI на печатащо устройство"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on NetWare server"
+msgstr "Принтер на NetWare сървър"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "Принтер на SMB/Windows 95/98/NT сървър"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Network printer (TCP/Socket)"
+msgstr "Мрежов принтер (TCP/Socket)"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer on remote lpd server"
+msgstr "Принтер на отдалечен LPD сървър"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on remote CUPS server"
+msgstr "Принтер на отдалечен CUPS сървър"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Remote printer"
+msgstr "Отдалечен принтер"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Local printer"
+msgstr "Локален принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring applications..."
+msgstr "Настройка на принтера \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#, fuzzy, c-format
+msgid "Printerdrake"
+msgstr "Принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do you want to configure another printer?"
+msgstr "Искате ли да настроите друг принтер ?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "Изтриване на принтера \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "Наистина ли искате да премахнете принтера \"%s\" ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove printer"
+msgstr "Премахване на принтера"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Know how to use this printer"
+msgstr "Искате ли да настроите друг принтер ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print test pages"
+msgstr "Отпечатване на тестови страници"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1611
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1697
-msgid "OKI winprinter configuration"
-msgstr "Настройки на OKI Winprinter"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1698
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
-msgid "Lexmark inkjet configuration"
-msgstr "Настройка на Lexmark inkjet"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:1719
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "Принтерът \"%s\" вече е определен за ползване по подразбиране."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Default printer"
+msgstr "Принтер по подразбиране"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Set this printer as the default"
+msgstr "Определи този принтер за ползване по подразбиране"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer options"
+msgstr "Опции на принтера"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model"
+msgstr "Производител на принтера, модел"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model, driver"
+msgstr "Производител на принтера, модел, драйвер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "Изтриване на стар принтер \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer name, description, location"
+msgstr "Име на принтера, описание, местоположение"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer connection type"
+msgstr "Тип на връзката към принтера"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Learn how to use this printer"
+msgstr "Искате ли да настроите друг принтер ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do it!"
+msgstr "Давай !"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Close"
+msgstr "Затвори"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-"Inkjet принтерните драйвери предоставени от Lexmark поддържат\n"
-"само локални принтери, без принтери на отдалечени машини или\n"
-"принтерни машини. Моля, свържете принтера си на локален порт\n"
-"или го настройте на машината, към която е свързан."
+"Принтер %s: %s %s\n"
+"Какво искате да поправите по този принтер ?"
-#: ../../printer/printerdrake.pm_.c:1746
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Modify printer configuration"
+msgstr "Поправи настройките на принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Add a new printer"
+msgstr "Добави принтер"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Normal Mode"
+msgstr "Нормален режим"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Change the printing system"
+msgstr "Настойка на мрежата"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing"
+msgstr "Поделяне на файлове"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS configuration"
+msgstr "Настройка"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
+"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 ""
+"Следните принтери са настроени.\n"
+"Цъкнете на един от тях, за да го редактирате\n"
+"или за да получите информация за него, или\n"
+"върху \"Добави Принтер\", за да добавите нов принтер."
-#: ../../printer/printerdrake.pm_.c:1749
-msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"Следните принтери са настроени.\n"
+"Цъкнете на един от тях, за да го редактирате\n"
+"или за да получите информация за него, или\n"
+"върху \"Добави Принтер\", за да добавите нов принтер."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing system: "
+msgstr "Печатна система: "
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Would you like to configure printing?"
+msgstr "Искате ли да настроите печата ?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Preparing Printerdrake..."
+msgstr "Подготвяне на PinterDrake ..."
-#: ../../printer/printerdrake.pm_.c:1750
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking installed software..."
+msgstr "Проверка на инсталирания софтуер..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing Foomatic..."
+msgstr "Инсталиране на пакети ..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Failed to configure printer \"%s\"!"
+msgstr "Настройка на принтера \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "Настройка на принтера \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Reading printer data..."
+msgstr "Четене на данни от принтера ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "Коя принтерна система (spooler) изкате да използвате ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Spooler"
+msgstr "Изберете принтерен spooler"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing %s ..."
+msgstr "Инсталиране на пакети ..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Removing %s ..."
+msgstr "Изтриване на %s"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Your printer belongs to the group of GDI laser printers (winprinters) sold "
-"by different manufacturers which uses the Zenographics ZJ-stream raster "
-"format for the data sent to the printer. The driver for these printers is "
-"still in a very early development stage and so it will perhaps not always "
-"work properly. Especially it is possible that the printer only works when "
-"you choose the A4 paper size.\n"
-"\n"
-"Some of these printers, as the HP LaserJet 1000, for which this driver was "
-"originally created, need their firmware to be uploaded to them after they "
-"are turned on. In the case of the HP LaserJet 1000 you have to search the "
-"printer's Windows driver CD or your Windows partition for the file "
-"\"sihp1000.img\" and upload the file to the printer with one of the "
-"following commands:\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-" lpr -o raw sihp1000.img\n"
-" cat sihp1000.img > /dev/usb/lp0\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
"\n"
-"The first command can be given by any normal user, the second must be given "
-"as root. After having done so you can print normally.\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:1972
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Starting the printing system at boot time"
+msgstr "Стартиране на принтерната система при стартиране"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer default settings\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
+"This printing system runs a daemon (background process) which waits for "
+"print jobs and handles them. This daemon is also accessable by remote "
+"machines through the network and so it is a possible point for attacks. "
+"Therefore only a few selected daemons are started by default in this "
+"security level.\n"
+"\n"
+"Do you really want to configure printing on this machine?"
msgstr ""
-"Настройки на принтера по подразбиране\n"
-"Трябва да сте сигурни, че големината на страницата\n"
-"и типа на мастилото (ако има) са настроени правилно.\n"
-"Отбележете, че при много високо качесто на изхода на\n"
-"принтера, той може значително да се забави."
-#: ../../printer/printerdrake.pm_.c:1981
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be an integer number!"
-msgstr "Настройката %s трябва да е цяло число !"
+msgid "Installing a printing system in the %s security level"
+msgstr "Инсталиране на принтерната система в %s ниво на сигурност"
-#: ../../printer/printerdrake.pm_.c:1985
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be a number!"
-msgstr "Настройката %s трябва да е число !"
+msgid "paranoid"
+msgstr "параноично"
-#: ../../printer/printerdrake.pm_.c:1989
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s out of range!"
-msgstr "Опцията %s е извън границите !"
+msgid "high"
+msgstr "високо"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Restarting printing system..."
+msgstr "Рестартиране на принтерната система"
-#: ../../printer/printerdrake.pm_.c:2028
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Configuration of a remote printer"
+msgstr "Настройка на отдалечен принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"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 ""
-"Искате ли да настроите този принтер (\"%s\")\n"
-"като принтер по подразбиране ?"
+"Нямаше достъп до мрежата и такъв не можеше да бъде\n"
+"установен. Моля, проверете настройката и хардуера\n"
+"си. Тогава опитайте да настроите отдалечения принтер\n"
+"отново."
-#: ../../printer/printerdrake.pm_.c:2051
-msgid "Test pages"
-msgstr "Тестови страници"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network is accessable after booting your "
+"system and correct the configuration using the Mandrake Control Center, "
+"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
+"printer, also using the Mandrake Control Center, section \"Hardware\"/"
+"\"Printer\""
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2052
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Configure the network now"
+msgstr "В момента настройвам мрежата"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Go on without configuring the network"
+msgstr "Продължи без настойка на мрежата"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
+"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 "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
msgstr ""
-"Моля, изберете тестова страница за печат.\n"
-"Забележка: тестовата страница за снимка може да отнеме доста дълго\n"
-"време да се изпечата и на лазерни принтери с малко памет може въобще\n"
-"да не излезе. В повечето случаи е достатъчна стандартна тестова страница."
-#: ../../printer/printerdrake.pm_.c:2056
-msgid "No test pages"
-msgstr "Без тестови страници"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Network functionality not configured"
+msgstr "Функционалността на мрежата не е настроена"
-#: ../../printer/printerdrake.pm_.c:2057
-msgid "Print"
-msgstr "Печат"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Starting network..."
+msgstr "Стартиране мрежата ...."
-#: ../../printer/printerdrake.pm_.c:2114
-msgid "Standard test page"
-msgstr "Стандартна тестова страница"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refreshing printer data..."
+msgstr "Опресняване на данните от принтера ..."
-#: ../../printer/printerdrake.pm_.c:2117
-msgid "Alternative test page (Letter)"
-msgstr "Алтернативна тестова страница (Писмо)"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, 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 ""
+"Прехвърлили сте принтер по подразбиране (\"%s\"),\n"
+"Искате ли да го оставите по подразбиране в новата\n"
+"принтерна система %s ?"
-#: ../../printer/printerdrake.pm_.c:2120
-msgid "Alternative test page (A4)"
-msgstr "Алтернативна тестова страница (А4)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer printer configuration"
+msgstr "Пренос на настройка на принтер"
-#: ../../printer/printerdrake.pm_.c:2122
-msgid "Photo test page"
-msgstr "Тестова страница със снимка"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transferring %s..."
+msgstr "Прехвърляне на %s ..."
-#: ../../printer/printerdrake.pm_.c:2126
-#, fuzzy
-msgid "Do not print any test page"
-msgstr "Отпечатване на тестови страници"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "New printer name"
+msgstr "Ново име на принтер"
-#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
-msgid "Printing test page(s)..."
-msgstr "Отпечатване на тестов(ата/ите) страниц(а/и) ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
+msgstr ""
+"Принтерът \"%s\" вече съществува,\n"
+"наистина ли искате да презапишете настройката ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "Името на принтера трябва да съдържа само букви, числа и подчертавка"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer"
+msgstr "Прехвърли"
-#: ../../printer/printerdrake.pm_.c:2159
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
+msgstr ""
+"Принтер с име \"%s\" вече съществува в %s.\n"
+"Цъкнете \"Прехвърли\", за да го презапишете.\n"
+"Можете също така да напишете ново име или да пропуснте принтера."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do not transfer printers"
+msgstr "Не прехвърляй принтери"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-"Тестовите страници са изпратени към принтера.\n"
-"Може да отнеме малко време преди принтера да започне.\n"
-"Състояние на печата:\n"
-"%s\n"
"\n"
+"Отбележете принтерите, които искате да прехвърлите и цъкнете\n"
+"\"Прехвърли\"."
-#: ../../printer/printerdrake.pm_.c:2163
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
-"Тестовите страници са изпратени към принтерна.\n"
-"Може да отнеме малко време преди принтера да започне.\n"
-
-#: ../../printer/printerdrake.pm_.c:2170
-msgid "Did it work properly?"
-msgstr "Проработи ли както трябва ?"
+"\n"
+"Също така, принтери настроени с PPD файлове предоставени\n"
+"от производителите им или с оригинални CUPS драйвери не\n"
+"могат да бъдат прехвърляни."
-#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
-msgid "Raw printer"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
+"Като допълнение, опашките не създадени с тази програма\n"
+"или \"foomatic-configure\" не могат да бъдат прехвърляни."
-#: ../../printer/printerdrake.pm_.c:2216
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD и LPRng не поддържа IPP принтери.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
-"За да изпечатате файл от командния ред (терминален прозорец), можете или да "
-"използвате командата \"%s <file>\" или графичния печатащ инструмент: \"xpp "
-"<file>\" или \"kprinter <file>\". Графичните инструменти ви позволяват да "
-"избирате принтера и да поправяте лесно настройките на опциите.\n"
+"PDQ поддържа само локални принтери, отдалечени LPD принтери\n"
+"и Socket/TCP принтери.\n"
-#: ../../printer/printerdrake.pm_.c:2218
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
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"
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
msgstr ""
-"Можете да използвате тази команда и в полето \"Команда за печат\" на "
-"печатните диалози в мноѓо приложения. Но тўк не поставяйте името на файла, "
-"защото то се подава от приложението.\n"
+"CUPS не поддържа принтери на Novell сървъри или принтери\n"
+"изпращащи данни във свободно-изградена команда.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
+msgstr ""
+"Можете да копирате настройките на принтера, които сте извършили\n"
+"за spoller %s на %s, текущия spooler. Цялата информация за настройките\n"
+"(име не принтер, описание, местоположение, вид на връзката и\n"
+"настройки по подразбиране) се презаписват, но работите не се\n"
+"прехвърлят.\n"
+"Не всички опашки могат да бъдат прехвърлени по следните причини:\n"
-#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
-#: ../../printer/printerdrake.pm_.c:2248
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
+"Your 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 ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Your 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\" on the command line to get more "
+"information.\n"
"\n"
-"Командата \"%s\" също така ви позволява да поправите настройките на опциите "
-"за определена работа на принтера. Просто добавете целаните настройки към "
-"командния ред, напр. \"%s <file>\". "
+"Do not use \"scannerdrake\" for this device!"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing test page(s)..."
+msgstr "Отпечатване на тестов(ата/ите) страниц(а/и) ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print option list"
+msgstr "Списък с принтерни опции"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "Печатане на принтер \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Печатане на принтер \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "Печатане на принтер \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Печатане на принтер \"%s\""
-#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8566,23 +10965,32 @@ msgstr ""
"За да видите списък на достъпните опции за текущия принтер, или прочетете "
"списъка показан по-долу или цъкнете на бутона \"Списък с опции за печат\".\n"
-#: ../../printer/printerdrake.pm_.c:2228
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"Командите \"%s\" и \"%s\" също така позволяват да поправяте избраните "
+"настройки за определена работа на принтера. Просто добавете исканите "
+"настройки към командния ред, напр. \"%s <file>\".\n"
-#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
msgstr ""
-"За да изпечатате файл от командния ред (терминален прозорец) използвайте "
-"командата \"%s <file>\".\n"
-#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
-#: ../../printer/printerdrake.pm_.c:2255
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
@@ -8592,8 +11000,17 @@ msgstr ""
"печатните диалози в много приложения. Но тук не поставяйте името на файла, "
"защото то се подава от приложението.\n"
-#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
+"За да отпечатате файл от командния ред (терминален прозорец), използвайте "
+"командата \"%s <file>\" или \"%s <file>\".\n"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8602,1213 +11019,1974 @@ msgstr ""
"\"Списък с опции за печат\".\n"
"\n"
-#: ../../printer/printerdrake.pm_.c:2253
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
+"\n"
+"Командата \"%s\" също така ви позволява да поправите настройките на опциите "
+"за определена работа на принтера. Просто добавете целаните настройки към "
+"командния ред, напр. \"%s <file>\". "
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"<file>\".\n"
msgstr ""
-"За да отпечатате файл от командния ред (терминален прозорец), използвайте "
-"командата \"%s <file>\" или \"%s <file>\".\n"
+"За да изпечатате файл от командния ред (терминален прозорец) използвайте "
+"командата \"%s <file>\".\n"
-#: ../../printer/printerdrake.pm_.c:2257
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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 ""
+"Можете да използвате тази команда и в полето \"Команда за печат\" на "
+"печатните диалози в мноѓо приложения. Но тўк не поставяйте името на файла, "
+"защото то се подава от приложението.\n"
-#: ../../printer/printerdrake.pm_.c:2261
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
+"За да изпечатате файл от командния ред (терминален прозорец), можете или да "
+"използвате командата \"%s <file>\" или графичния печатащ инструмент: \"xpp "
+"<file>\" или \"kprinter <file>\". Графичните инструменти ви позволяват да "
+"избирате принтера и да поправяте лесно настройките на опциите.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Did it work properly?"
+msgstr "Проработи ли както трябва ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+"Тестовите страници са изпратени към принтерна.\n"
+"Може да отнеме малко време преди принтера да започне.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
msgstr ""
+"Тестовите страници са изпратени към принтера.\n"
+"Може да отнеме малко време преди принтера да започне.\n"
+"Състояние на печата:\n"
+"%s\n"
"\n"
-"Командите \"%s\" и \"%s\" също така позволяват да поправяте избраните "
-"настройки за определена работа на принтера. Просто добавете исканите "
-"настройки към командния ред, напр. \"%s <file>\".\n"
-#: ../../printer/printerdrake.pm_.c:2271
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Печатане на принтер \"%s\""
+msgid "Do not print any test page"
+msgstr "Отпечатване на тестови страници"
-#: ../../printer/printerdrake.pm_.c:2272
-#, fuzzy, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "Печатане на принтер \"%s\""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Photo test page"
+msgstr "Тестова страница със снимка"
-#: ../../printer/printerdrake.pm_.c:2274
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Печатане на принтер \"%s\""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (A4)"
+msgstr "Алтернативна тестова страница (А4)"
-#: ../../printer/printerdrake.pm_.c:2275
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "Печатане на принтер \"%s\""
+msgid "Alternative test page (Letter)"
+msgstr "Алтернативна тестова страница (Писмо)"
-#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
-#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
-#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
-#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
-#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
-#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
-msgid "Close"
-msgstr "Затвори"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Standard test page"
+msgstr "Стандартна тестова страница"
-#: ../../printer/printerdrake.pm_.c:2281
-msgid "Print option list"
-msgstr "Списък с принтерни опции"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print"
+msgstr "Печат"
-#: ../../printer/printerdrake.pm_.c:2301
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "No test pages"
+msgstr "Без тестови страници"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Your 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\" on the command line to get more "
-"information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"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 "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
+"Моля, изберете тестова страница за печат.\n"
+"Забележка: тестовата страница за снимка може да отнеме доста дълго\n"
+"време да се изпечата и на лазерни принтери с малко памет може въобще\n"
+"да не излезе. В повечето случаи е достатъчна стандартна тестова страница."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Test pages"
+msgstr "Тестови страници"
-#: ../../printer/printerdrake.pm_.c:2322
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Your 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."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"Искате ли да настроите този принтер (\"%s\")\n"
+"като принтер по подразбиране ?"
-#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
-#: ../../printer/printerdrake.pm_.c:2990
-msgid "Reading printer data..."
-msgstr "Четене на данни от принтера ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s out of range!"
+msgstr "Опцията %s е извън границите !"
-#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
-#: ../../printer/printerdrake.pm_.c:2426
-msgid "Transfer printer configuration"
-msgstr "Пренос на настройка на принтер"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be a number!"
+msgstr "Настройката %s трябва да е число !"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be an integer number!"
+msgstr "Настройката %s трябва да е цяло число !"
-#: ../../printer/printerdrake.pm_.c:2365
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
msgstr ""
-"Можете да копирате настройките на принтера, които сте извършили\n"
-"за spoller %s на %s, текущия spooler. Цялата информация за настройките\n"
-"(име не принтер, описание, местоположение, вид на връзката и\n"
-"настройки по подразбиране) се презаписват, но работите не се\n"
-"прехвърлят.\n"
-"Не всички опашки могат да бъдат прехвърлени по следните причини:\n"
+"Настройки на принтера по подразбиране\n"
+"Трябва да сте сигурни, че големината на страницата\n"
+"и типа на мастилото (ако има) са настроени правилно.\n"
+"Отбележете, че при много високо качесто на изхода на\n"
+"принтера, той може значително да се забави."
-#: ../../printer/printerdrake.pm_.c:2368
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr ""
-"CUPS не поддържа принтери на Novell сървъри или принтери\n"
-"изпращащи данни във свободно-изградена команда.\n"
-#: ../../printer/printerdrake.pm_.c:2370
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-"PDQ поддържа само локални принтери, отдалечени LPD принтери\n"
-"и Socket/TCP принтери.\n"
-#: ../../printer/printerdrake.pm_.c:2372
-msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD и LPRng не поддържа IPP принтери.\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Lexmark inkjet configuration"
+msgstr "Настройка на Lexmark inkjet"
-#: ../../printer/printerdrake.pm_.c:2374
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
-"Като допълнение, опашките не създадени с тази програма\n"
-"или \"foomatic-configure\" не могат да бъдат прехвърляни."
+"Inkjet принтерните драйвери предоставени от Lexmark поддържат\n"
+"само локални принтери, без принтери на отдалечени машини или\n"
+"принтерни машини. Моля, свържете принтера си на локален порт\n"
+"или го настройте на машината, към която е свързан."
-#: ../../printer/printerdrake.pm_.c:2375
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-"\n"
-"Също така, принтери настроени с PPD файлове предоставени\n"
-"от производителите им или с оригинални CUPS драйвери не\n"
-"могат да бъдат прехвърляни."
-#: ../../printer/printerdrake.pm_.c:2376
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "OKI winprinter configuration"
+msgstr "Настройки на OKI Winprinter"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
"\n"
-"Отбележете принтерите, които искате да прехвърлите и цъкнете\n"
-"\"Прехвърли\"."
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Find the correct model in the list when a wrong model or "
+"\"Raw printer\" is highlighted."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2379
-msgid "Do not transfer printers"
-msgstr "Не прехвърляй принтери"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Which printer model do you have?"
+msgstr "Какъв модел принтер имате ?"
-#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
-msgid "Transfer"
-msgstr "Прехвърли"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer model selection"
+msgstr "Избор модел на принтера"
-#: ../../printer/printerdrake.pm_.c:2392
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Reading printer database..."
+msgstr "Четене на базата данни от принтери ..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Select model manually"
+msgstr "Име на отдалечен принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "The model is correct"
+msgstr "Всичко правилно ли е ?"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
+"\n"
+"For your printer Printerdrake has found:\n"
+"\n"
+"%s"
msgstr ""
-"Принтер с име \"%s\" вече съществува в %s.\n"
-"Цъкнете \"Прехвърли\", за да го презапишете.\n"
-"Можете също така да напишете ново име или да пропуснте принтера."
-#: ../../printer/printerdrake.pm_.c:2400
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr "Името на принтера трябва да съдържа само букви, числа и подчертавка"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Your printer model"
+msgstr "Име на отдалечен принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Preparing printer database..."
+msgstr "Подготвяне на базата данни от принтери ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Location"
+msgstr "Местоположение"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Description"
+msgstr "Описание"
-#: ../../printer/printerdrake.pm_.c:2405
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Name of printer"
+msgstr "Име на принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"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 ""
-"Принтерът \"%s\" вече съществува,\n"
-"наистина ли искате да презапишете настройката ?"
+"Всеки принтер се нуждае от име (например lp).\n"
+"Полетата Описание и Местоположе не трябва да бъдат\n"
+"попълвани. Има коментари за потребителите."
-#: ../../printer/printerdrake.pm_.c:2413
-msgid "New printer name"
-msgstr "Ново име на принтер"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter Printer Name and Comments"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2416
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Transferring %s..."
-msgstr "Прехвърляне на %s ..."
+msgid "Making printer port available for CUPS..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Scanning on your HP multi-function device"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2427
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "Installing mtools packages..."
+msgstr "Инсталиране на пакети ..."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing SANE packages..."
+msgstr "Инсталиране на пакети ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking device and configuring HPOJ..."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Installing HPOJ package..."
+msgstr "Инсталиране на пакети ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
+"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-"Прехвърлили сте принтер по подразбиране (\"%s\"),\n"
-"Искате ли да го оставите по подразбиране в новата\n"
-"принтерна система %s ?"
-#: ../../printer/printerdrake.pm_.c:2437
-msgid "Refreshing printer data..."
-msgstr "Опресняване на данните от принтера ..."
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "A command line must be entered!"
+msgstr "Трябва да бъде въведен валиден URI !"
-#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
-#: ../../printer/printerdrake.pm_.c:2528
-msgid "Configuration of a remote printer"
-msgstr "Настройка на отдалечен принтер"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Command line"
+msgstr "Име на домейна"
-#: ../../printer/printerdrake.pm_.c:2446
-msgid "Starting network..."
-msgstr "Стартиране мрежата ...."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can specify any arbitrary command line into which the job should be "
+"piped instead of being sent directly to a printer."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
-#: ../../printer/printerdrake.pm_.c:2485
-msgid "Configure the network now"
-msgstr "В момента настройвам мрежата"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Pipe into command"
+msgstr "Прекарай работата през команда"
-#: ../../printer/printerdrake.pm_.c:2480
-msgid "Network functionality not configured"
-msgstr "Функционалността на мрежата не е настроена"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "засечена %s"
-#: ../../printer/printerdrake.pm_.c:2481
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A valid URI must be entered!"
+msgstr "Трябва да бъде въведен валиден URI !"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Device URI"
+msgstr "Печатащо устройство URI"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
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 "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
+"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 ""
+"Трябва директно да определите URI за достъп до принтера. URI трябва да "
+"изпълни или CUPS или Foomatic спецификациите. Отбележете, че не всички "
+"типове URI се поддрържат от spooler-ите."
-#: ../../printer/printerdrake.pm_.c:2484
-msgid "Go on without configuring the network"
-msgstr "Продължи без настойка на мрежата"
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Port"
+msgstr "Порт"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP"
+msgstr "Име на хост на принтера"
-#: ../../printer/printerdrake.pm_.c:2518
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The port number should be an integer!"
+msgstr "Номерът на порта трябва да е цяло число !"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer host name or IP missing!"
+msgstr "Липсва име на хост на принтерa !"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
+"За да печатате на socket принтер, трябва да предоставите\n"
+"името на хоста на принтера и, евентуално, номер на порт.\n"
+"На HP JetDirect сървъри, номерът на порта обикновенно е 9100,\n"
+"на други сървъри може да варира. Вижте ръковоството на\n"
+"хардуера си."
-#: ../../printer/printerdrake.pm_.c:2519
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
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."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
-"Нямаше достъп до мрежата и такъв не можеше да бъде\n"
-"установен. Моля, проверете настройката и хардуера\n"
-"си. Тогава опитайте да настроите отдалечения принтер\n"
-"отново."
-#: ../../printer/printerdrake.pm_.c:2529
-msgid "Restarting printing system..."
-msgstr "Рестартиране на принтерната система"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "TCP/Socket Printer Options"
+msgstr "Опции на Socket принтер"
-#: ../../printer/printerdrake.pm_.c:2568
-msgid "high"
-msgstr "високо"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2568
-msgid "paranoid"
-msgstr "параноично"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2569
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Scanning network..."
+msgstr "Стартиране мрежата ...."
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer auto-detection"
+msgstr "Използвай автоматично засичане"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Installing a printing system in the %s security level"
-msgstr "Инсталиране на принтерната система в %s ниво на сигурност"
+msgid "NCP queue name missing!"
+msgstr "Липсва име на NCP опашка !"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP server name missing!"
+msgstr "Липсва име на NCP сървър !"
-#: ../../printer/printerdrake.pm_.c:2570
+#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Print Queue Name"
+msgstr "Име на печатната опашката"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Server"
+msgstr "Сървър на принтера"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
+"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 "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
+msgstr ""
+"За да печатите на NetWare принтер ,трябва да знаете имео му и възможно\n"
+"адреса на сървъра, както и името на опашката,потребителското име,парола."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NetWare Printer Options"
+msgstr "Опции за NetWare принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
"\n"
-"Do you really want to configure printing on this machine?"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2604
-msgid "Starting the printing system at boot time"
-msgstr "Стартиране на принтерната система при стартиране"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2605
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
-msgid "Checking installed software..."
-msgstr "Проверка на инсталирания софтуер..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SECURITY WARNING!"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2630
-#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "Изтриване на %s"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Samba share name missing!"
+msgstr "Липсва име на SAMBA share !"
-#: ../../printer/printerdrake.pm_.c:2636
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Either the server name or the server's IP must be given!"
+msgstr "Трябва да бъдат зададени и името и IP адреса на сървъра !"
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "Инсталиране на пакети ..."
+msgid "Auto-detected"
+msgstr "Използвай автоматично засичане"
-#: ../../printer/printerdrake.pm_.c:2685
-msgid "Select Printer Spooler"
-msgstr "Изберете принтерен spooler"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Workgroup"
+msgstr "Работна група"
-#: ../../printer/printerdrake.pm_.c:2686
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "Коя принтерна система (spooler) изкате да използвате ?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Share name"
+msgstr "Общо име"
-#: ../../printer/printerdrake.pm_.c:2720
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "IP на SMB сървър:"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server host"
+msgstr "Хост на SMB сървър"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "Настройка на принтера \"%s\" ..."
+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 "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
+msgstr ""
+"За да печатате на SMB принтер, трябва да дадете името\n"
+"на SMB хоста (Забележка ! То може да е различно от TCP/IP хоста !)\n"
+"и възможно IP адреса на принтерския сървър, както и общото име на\n"
+"принтера, до който искате достъп и подходящо имен, парола и информация\n"
+"за работната група."
-#: ../../printer/printerdrake.pm_.c:2731
-#, fuzzy
-msgid "Installing Foomatic..."
-msgstr "Инсталиране на пакети ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "Настройки на SMB (Windows 9x/NT) принтер"
-#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
-#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
-msgid "Printer options"
-msgstr "Опции на принтера"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Печатане на принтер \"%s\""
-#: ../../printer/printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Preparing Printerdrake..."
-msgstr "Подготвяне на PinterDrake ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
-#, fuzzy
-msgid "Configuring applications..."
-msgstr "Настройка на принтера \"%s\" ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote printer name missing!"
+msgstr "Липсва име на отдалечен принтер !"
-#: ../../printer/printerdrake.pm_.c:2845
-msgid "Would you like to configure printing?"
-msgstr "Искате ли да настроите печата ?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote host name missing!"
+msgstr "Липсва име на име на хост !"
-#: ../../printer/printerdrake.pm_.c:2857
-msgid "Printing system: "
-msgstr "Печатна система: "
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote printer name"
+msgstr "Име на отдалечен принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote host name"
+msgstr "Име на отдалечен хост"
-#: ../../printer/printerdrake.pm_.c:2915
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-"Следните принтери са настроени.\n"
-"Цъкнете на един от тях, за да го редактирате\n"
-"или за да получите информация за него, или\n"
-"върху \"Добави Принтер\", за да добавите нов принтер."
+"За да използвате отдалечен lpd принтер, трябва\n"
+"да предоставите имената на хоста на принтерния сървър и\n"
+"името на принтера на този сървър."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote lpd Printer Options"
+msgstr "Опции на отдалечен lpd-принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Manual configuration"
+msgstr "Настройка на цветове"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must choose/enter a printer/device!"
+msgstr "Въведете URI на печатащо устройство"
-#: ../../printer/printerdrake.pm_.c:2916
-#, fuzzy
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-"Следните принтери са настроени.\n"
-"Цъкнете на един от тях, за да го редактирате\n"
-"или за да получите информация за него, или\n"
-"върху \"Добави Принтер\", за да добавите нов принтер."
-#: ../../printer/printerdrake.pm_.c:2942
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the port that your printer is connected to."
+msgstr "Моля, изберете сериен порт към който свързан модемът ви."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the port that your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2960
-#, fuzzy
-msgid "Change the printing system"
-msgstr "Настойка на мрежата"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Please choose the printer to which the print jobs should go."
+msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
-msgid "Normal Mode"
-msgstr "Нормален режим"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up. The configuration of the "
+"printer will work fully automatically. If your printer was not correctly "
+"detected or if you prefer a customized printer configuration, turn on "
+"\"Manual configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
-#: ../../printer/printerdrake.pm_.c:3363
-msgid "Do you want to configure another printer?"
-msgstr "Искате ли да настроите друг принтер ?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Here is a list of all auto-detected printers. "
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3211
-msgid "Modify printer configuration"
-msgstr "Поправи настройките на принтер"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Currently, no alternative possibility is available"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The configuration of the printer will work fully automatically. If your "
+"printer was not correctly detected or if you prefer a customized printer "
+"configuration, turn on \"Manual configuration\"."
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3213
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "The following printer was auto-detected. "
+msgstr "Следните пакети ще бъдат премахнати"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"Please choose the printer to which the print jobs should go or enter a "
+"device name/file name in the input line"
msgstr ""
-"Принтер %s: %s %s\n"
-"Какво искате да поправите по този принтер ?"
-#: ../../printer/printerdrake.pm_.c:3217
-msgid "Do it!"
-msgstr "Давай !"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up or enter a device name/file "
+"name in the input line"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
-msgid "Printer connection type"
-msgstr "Тип на връзката към принтера"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Alternatively, you can specify a device name/file name in the input line"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
-msgid "Printer name, description, location"
-msgstr "Име на принтера, описание, местоположение"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"If it is not the one you want to configure, enter a device name/file name in "
+"the input line"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
-msgid "Printer manufacturer, model, driver"
-msgstr "Производител на принтера, модел, драйвер"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Available printers"
+msgstr "Локален принтер"
-#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
-msgid "Printer manufacturer, model"
-msgstr "Производител на принтера, модел"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "No printer found!"
+msgstr "Локален принтер"
-#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
-msgid "Set this printer as the default"
-msgstr "Определи този принтер за ползване по подразбиране"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "You must enter a device or file name!"
+msgstr "Въведете URI на печатащо устройство"
-#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+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, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Local Printer"
+msgstr "Локален принтер"
-#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
-msgid "Print test pages"
-msgstr "Отпечатване на тестови страници"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "USB printer \\#%s"
+msgstr "Няма принтер"
-#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
-#, fuzzy
-msgid "Know how to use this printer"
-msgstr "Искате ли да настроите друг принтер ?"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer on parallel port \\#%s"
+msgstr "Име на хост на принтера"
-#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
-msgid "Remove printer"
-msgstr "Премахване на принтера"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Принтер на SMB/Windows 95/98/NT сървър"
-#: ../../printer/printerdrake.pm_.c:3282
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "Изтриване на стар принтер \"%s\" ..."
+msgid "Network printer \"%s\", port %s"
+msgstr "Мрежов принтер (TCP/Socket)"
-#: ../../printer/printerdrake.pm_.c:3307
-msgid "Default printer"
-msgstr "Принтер по подразбиране"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Detected %s"
+msgstr "засечена %s"
-#: ../../printer/printerdrake.pm_.c:3308
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Принтер на SMB/Windows 95/98/NT сървър"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
-msgstr "Принтерът \"%s\" вече е определен за ползване по подразбиране."
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3310
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change "
+"the default option settings (paper input tray, printout quality, ...), "
+"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
+"Center."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3312
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Auto-detect printers connected to this machine"
+msgstr "Отдалечен принтер"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3313
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3315
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) and your Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3317
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3318
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Searching for new printers..."
+msgstr "Локален принтер"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3325
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Наистина ли искате да премахнете принтера \"%s\" ?"
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr ""
-#: ../../printer/printerdrake.pm_.c:3329
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "Изтриване на принтера \"%s\" ..."
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "Искате ли да стартирате връзката си при зареждане ?"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr ""
+"Искате ли да настроите този принтер (\"%s\")\n"
+"като принтер по подразбиране ?"
-#: ../../raid.pm_.c:35
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr "Не мога да прибавя дял към _форматиран_ RAID md%d"
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
+msgstr ""
-#: ../../raid.pm_.c:137
-msgid "mkraid failed"
-msgstr "mkraid пропадна"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-#: ../../raid.pm_.c:137
-msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid пропадна (може би raidtools липсват ?)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr ""
-#: ../../raid.pm_.c:153
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Not enough partitions for RAID level %d\n"
-msgstr "Няма достатъчно дялове за RAID ниво %d\n"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
+msgstr ""
-#: ../../security/main.pm_.c:36
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Standard: This is the standard security recommended for a computer that will "
-"be used to connect\n"
-" to the Internet as a client.\n"
"\n"
-"High: There are already some restrictions, and more automatic checks "
-"are run every night.\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
"\n"
-"Higher: The security is now high enough to use the system as a server "
-"which can accept\n"
-" connections from many clients. If your machine is only a "
-"client on the Internet, you\n"
-"\t should choose a lower level.\n"
+"%s%s\n"
+"is directly connected to your system"
+msgstr "Нямате мрежов адаптер!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printer\n"
"\n"
-"Paranoid: This is similar to the previous level, but the system is entirely "
-"closed and security\n"
-" features are at their maximum\n"
+"%s%s\n"
+"are directly connected to your system"
+msgstr "Нямате мрежов адаптер!"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid ""
+"The following printers\n"
"\n"
-"Security Administrator:\n"
-" If the 'Security Alerts' option is set, security alerts will "
-"be sent to this user (username or\n"
-"\t email)"
-msgstr ""
+"%s%s\n"
+"are directly connected to your system"
+msgstr "Нямате мрежов адаптер!"
-#: ../../security/main.pm_.c:66
-#, fuzzy
-msgid "Security Level:"
-msgstr "Ниво на сигурност"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "and %d unknown printers"
+msgstr "Добави принтер"
-#: ../../security/main.pm_.c:77
+#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
-msgid " (default value: %s)"
-msgstr " (По подразбиране)"
+msgid "and one unknown printer"
+msgstr "Добави принтер"
-#: ../../security/main.pm_.c:113
-#, fuzzy
-msgid "Security Alerts:"
-msgstr "Ниво на сигурност"
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Checking your system..."
+msgstr "Рестартиране на принтерната система"
-#: ../../security/main.pm_.c:115
-#, fuzzy
-msgid "Security Administrator:"
-msgstr "Отдалечена администрация"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "IP address of host/network:"
+msgstr ""
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "Network Options"
-msgstr "Опции на модула:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "This host/network is already in the list, it cannot be added again.\n"
+msgstr ""
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "System Options"
-msgstr "Опции на модула:"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.0/255.255.255.0\n"
+msgstr ""
-#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
-msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need explanations, click on Help.\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.0/24\n"
msgstr ""
-#: ../../security/main.pm_.c:177
-msgid "Periodic Checks"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.1.*\n"
msgstr ""
-#: ../../security/main.pm_.c:191
-#, fuzzy
-msgid "Please wait, setting security level..."
-msgstr "Изберете ниво на сигурност"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.0.0.*\n"
+msgstr ""
-#: ../../security/main.pm_.c:197
-#, fuzzy
-msgid "Please wait, setting security options..."
-msgstr "Моля, изчакайте, подготвяне на инсталацията"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.194\n"
+msgstr ""
-#: ../../services.pm_.c:19
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Пусни ALSA (Advanced Linux Sound Architecture) звуковата система"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Examples for correct IPs:\n"
+msgstr ""
-#: ../../services.pm_.c:20
-msgid "Anacron a periodic command scheduler."
-msgstr "Anacrton - периодично изпълняване на команди по разписание."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The entered host/network IP is not correct.\n"
+msgstr ""
-#: ../../services.pm_.c:21
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"apmd is used for monitoring batery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Choose the network or host on which the local printers should be made "
+"available:"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Sharing of local printers"
+msgstr "Локален принтер"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Remove selected host/network"
+msgstr "Изтриване на опашката"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Edit selected host/network"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add host/network"
msgstr ""
-"apmd се използва за наблюдение на батерията и записвайки статуса чрез\n"
-"syslog. Може също да се използва за спиране на машината, когато батерията е "
-"изтощена."
-#: ../../services.pm_.c:23
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+"These are the machines and networks on which the locally connected printer"
+"(s) should be available:"
msgstr ""
-"Пуска команди по разписание във време определено от командата at и пуска\n"
-"набор от други, когато натовареността спадне достатъчно."
-#: ../../services.pm_.c:25
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+"When this option is turned on, on every startup of CUPS it is automatically "
+"made sure that\n"
+"\n"
+"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
+"\n"
+"- if /etc/cups/cupsd.conf is missing, it will be created\n"
+"\n"
+"- when printer information is broadcasted, it does not contain \"localhost\" "
+"as the server name.\n"
+"\n"
+"If some of these measures lead to problems for you, turn this option off, "
+"but then you have to take care of these points."
msgstr ""
-"cron е стандартна UNIX програма, която периодично пуска определени програми\n"
-"по разписание. vixie cron добавя множество преимущества над тези на простия\n"
-"UNIX cron, включително по-добра сигурност и мощни настройващи опции."
-#: ../../services.pm_.c:28
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Automatic correction of CUPS configuration"
+msgstr "Автоматична настройка на CUPS"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
+#, fuzzy, c-format
+msgid "No remote machines"
+msgstr "(на тази машина)"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Custom configuration"
+msgstr "Настройка на цветове"
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer sharing on hosts/networks: "
+msgstr "Поделяне на файлове"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Automatically find available printers on remote machines"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printers on this machine are available to other computers"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
+"You can also decide here whether printers on remote machines should be "
+"automatically made available on this machine."
msgstr ""
-"GPM добавя поддръжка на мишка в текстово-базираните Linux приложения като\n"
-"Midnight Commander. Също така позволява базираните на мишка конзоли\n"
-"режи-и-лепи операции, и включва поддръжка на изкачащи менюта на козолата."
-#: ../../services.pm_.c:31
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"Here you can choose whether the printers connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-"HardDrake прави проби на хардуера, и евентуално настройва\n"
-"нов/променен хардуер."
-#: ../../services.pm_.c:33
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "CUPS printer sharing configuration"
+msgstr "Настройки на OKI Winprinter"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"\n"
+"Printers on remote CUPS servers do not need to be configured here; these "
+"printers will be automatically detected."
msgstr ""
-"Apache е World Wide Web (WWW) сървър. Той служи да обработва на HTML "
-"файлове\n"
-"и CGI."
+"\n"
+"Отдалечените на CUPS сървър принтери не трябва да настройвате\n"
+"тук; тези принтери ще бъдат засечени автоматично. Моля,\n"
+"изберете \"Принтер на отдалечен CUPS сървър\" в този случай."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "How is the printer connected?"
+msgstr "Как е свързан принтерът ?"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Connection"
+msgstr "Изберете връзка към принтера"
-#: ../../services.pm_.c:34
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
+"Arguments: (umask)\n"
+"\n"
+"Set the user umask."
msgstr ""
-"Internet superserver daemon (често наричан inetd) пуска различни други\n"
-"Интернет услуги. Той отговаря за пускането на много услуги от рода на\n"
-"telnet, ftp, rsh и rlogin. Изключването на inetd изключва всички услуги,\n"
-"за които отговаря."
-#: ../../services.pm_.c:38
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
msgstr ""
-"Включи филтрирането на пакети за Linux ядра серия 2.2, за\n"
-"настрока на защитната стена, s cel защитава на машината ви от\n"
-"мрежови атаки."
-#: ../../services.pm_.c:40
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of sgid files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check open ports."
msgstr ""
-"Този пакет зарежда маркираната клавиатурна наредба в /etc/sysconfig/"
-"keyboard.\n"
-"Тя може да бъде избрана с инструмента kbdconfig. Трябва да оставите "
-"товавключено за повечето машини."
-#: ../../services.pm_.c:43
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"if set, send the mail report to this email address else send it to root."
msgstr ""
-"Автоматично регенериране на header-ите на адрото, в /boot за\n"
-"/usr/include/linux/{autoconf,version}.h"
-#: ../../services.pm_.c:45
-msgid "Automatic detection and configuration of hardware at boot."
-msgstr "Автоматично засичане и настройка на хардуера при стартиране."
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result by mail."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check files/directories writable by everybody."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, reports check result to tty."
+msgstr ""
-#: ../../services.pm_.c:46
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run some checks against the rpm database."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run chkrootkit checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check permissions of files in the users' home."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of suid root files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result to syslog."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+"if set to yes, check for empty password, or a password while it should be "
+"in /etc/shadow or other users with id 0."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run the daily security checks."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, verify checksum of the suid/sgid files."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check empty password in /etc/shadow."
+msgstr ""
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report unowned files."
msgstr ""
-"Linuxconf понякога урежда извършването на различни задачи\n"
-"при стартиране за поддръжка на системната настройка."
-#: ../../services.pm_.c:48
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
msgstr ""
-"lpd е демона за печат необходим на lpr да работи нормално. Той просто е\n"
-"сървър, който определя работите за печат на принтер(а/ите)."
-#: ../../services.pm_.c:50
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
msgstr ""
-"Linux Virtual Server се използва за изграждане на високопроизводителен\n"
-"и добре достъпен сървър."
-#: ../../services.pm_.c:52
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
msgstr ""
-"named (BIND) е Domain Name Server (DNS), който се използва да превърне\n"
-"името на хоста до IP адрес."
-#: ../../services.pm_.c:53
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Arguments: (max, inactive=-1)\n"
+"\n"
+"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
+"\\fP."
msgstr ""
-"Монтира и демонтира всякакви Network File System (NFS), SMB (LAN\n"
-"Manager/Windows), и NCP (NetWare)."
-#: ../../services.pm_.c:55
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
msgstr ""
-"Активира/деактивира всички мрежови интерфейси, настроени да се пускат\n"
-"при стартиране на машината."
-#: ../../services.pm_.c:57
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
msgstr ""
-"NFS е популярен протокол за обмен на файлове по TCP/IP мрежи.\n"
-"Тази услуга осигурява функционалността на NFS сървъра, който се настройва\n"
-"чрез файла /etc/exports."
-#: ../../services.pm_.c:60
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Arguments: (arg)\n"
+"\n"
+" Activate/Disable daily security check."
msgstr ""
-"NFS е популярен протокол за обмен на файлове по TCP/IP мрежи.\n"
-"Тази услуга осигурява функционалността на заключването на NFS файловете."
-#: ../../services.pm_.c:62
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+"Arguments: (arg)\n"
+"\n"
+"Activate/Disable ethernet cards promiscuity check."
msgstr ""
-"Автоматично включване на numlock клавиша под конзола и\n"
-"XFree при стартитане."
-#: ../../services.pm_.c:64
-msgid "Support the OKI 4w and compatible winprinters."
-msgstr "Поддръжка на OKI 4w и съвместими win-принтери."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
+msgstr ""
-#: ../../services.pm_.c:65
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to "
-"have\n"
-"it installed on machines that don't need it."
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
-"PCMCIA поддържката обикновенно поддържа неща като ethernet и модеми в\n"
-"laptop-и. Това няма да се стартира преди да бъде настроен, така че е\n"
-"по-добре да я имате инсталирана на машини, които не се нуждаят от нея."
-#: ../../services.pm_.c:68
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable msec hourly security check."
msgstr ""
-"portmapper се справя с RPC връзки, които се използват от протоколи като\n"
-"NFS и NIS. portmap сървъра трябва да е пуснат на машини, които работят като\n"
-"сървър за протоколи, които се нуждаят да използват RPC механизъм."
-#: ../../services.pm_.c:71
-#, fuzzy
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
-"Postfix е Main Transport Agent (MTA), който е програма която пренася\n"
-"поша от машина на машина."
-#: ../../services.pm_.c:72
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
-"Запазва и възстановята потока на системна ентропия за по-голямо качество\n"
-"на произволно генериране на числа."
-#: ../../services.pm_.c:74
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable IP spoofing protection."
msgstr ""
-"Свържи чисти драйвери с блокови устройства (като дялове\n"
-"на твърдия диск), за употребята от приложения като Oracle"
-#: ../../services.pm_.c:76
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
-"touted демона позволява таблица за IP рутиране автоматично обновявана чрез\n"
-"RIP протокола. Докато RIP е широко използвана за малки мрежи, за по-сложни\n"
-"протоколи за рутиране са нужни за сложни мрежи. "
-#: ../../services.pm_.c:79
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+"Arguments: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
+"expression describing what to log (see syslog.conf(5) for more details) and\n"
+"dev the device to report the log."
msgstr ""
-"rstat протокола позволява на мрежовите потребители да извличат\n"
-"параметрите на възможностите за всяка машина на мрежата."
-#: ../../services.pm_.c:81
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
+"allow and /etc/at.allow\n"
+"(see man at(1) and crontab(1))."
msgstr ""
-"rusers протокола позволява на мрежовите потребители да проверяват кой е\n"
-"влязъл на друга отговарящата машина."
-#: ../../services.pm_.c:83
+#: ../../security/help.pm:1
+#, c-format
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)."
+"Arguments: ()\n"
+"\n"
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
msgstr ""
-"rwho протокола позволява на отдалечени потребители да се сдобият със списък\n"
-"на всички потребители влезли на машина с работещ rwho демон (подобен на "
-"finger)."
-#: ../../services.pm_.c:85
-msgid "Launch the sound system on your machine"
-msgstr "Пуснкане звуковата система на машината ви"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
+msgstr ""
-#: ../../services.pm_.c:86
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+"Arguments: (arg)\n"
+"\n"
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
msgstr ""
-"Syslog е програма която много демони използват да запазват съобщения в\n"
-"различни системни файлове (логове). Добре е постоянно да я имате работеща."
-#: ../../services.pm_.c:88
-msgid "Load the drivers for your usb devices."
-msgstr "Зареждане драйвери за вашите USB устройства."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
+msgstr ""
-#: ../../services.pm_.c:89
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Стартира X Font Server (това е задължително, за да тръгне XFree)."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
+msgstr ""
-#: ../../services.pm_.c:115 ../../services.pm_.c:157
-msgid "Choose which services should be automatically started at boot time"
-msgstr "Избира услугите, които трябва да се пуснат при пускане на машината"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid direct root login."
+msgstr ""
-#: ../../services.pm_.c:127
-msgid "Printing"
-msgstr "Печатане"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
+msgstr ""
-#: ../../services.pm_.c:128
-msgid "Internet"
-msgstr "Интернет"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
+msgstr ""
-#: ../../services.pm_.c:131
-msgid "File sharing"
-msgstr "Поделяне на файлове"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
+msgstr ""
-#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
-msgid "System"
-msgstr "Система"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
+msgstr ""
-#: ../../services.pm_.c:138
-msgid "Remote Administration"
-msgstr "Отдалечена администрация"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse icmp echo."
+msgstr ""
-#: ../../services.pm_.c:146
-msgid "Database Server"
-msgstr "Сървър Бази-данни"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
+msgstr ""
-#: ../../services.pm_.c:175
+#: ../../security/help.pm:1
#, c-format
-msgid "Services: %d activated for %d registered"
-msgstr "Услуги: %d активирани от %d регистрирани"
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
+msgstr ""
-#: ../../services.pm_.c:191
-msgid "Services"
-msgstr "Услуги"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security Administrator (login or email)"
+msgstr ""
-#: ../../services.pm_.c:203
-msgid "running"
-msgstr "стартиране"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr ""
+"Библиотека, която осигурява защита от aтаки с препълване на буфер и форматни "
+"стрингове."
-#: ../../services.pm_.c:203
-msgid "stopped"
-msgstr "спряна"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Use libsafe for servers"
+msgstr "Използвайте libsafe за сървъри"
-#: ../../services.pm_.c:217
-msgid "Services and deamons"
-msgstr "Услуиги и демони"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security level"
+msgstr "Ниво на сигурност"
-#: ../../services.pm_.c:222
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Please choose the desired security level"
+msgstr "Изберете ниво на сигурност"
+
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "DrakSec Basic Options"
+msgstr "Опции"
+
+#: ../../security/level.pm:1
+#, fuzzy, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-"Няма допълнителна информация\n"
-"за тази услуга, съжелявам."
+"Избираме 4-то ниво, но системата е напълно затворена.\n"
+"Нивото на сигурност е на максимума си."
-#: ../../services.pm_.c:229
-msgid "On boot"
-msgstr "При зареждане"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
+msgstr ""
+"С това ниво на сигурност, ползването на системата като сървър става "
+"възможно.\n"
+"Сигурността сега е достатъчно голяма да се използва системата като\n"
+"сървър приемащ връзки от много клиенти. "
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Start"
-msgstr "Състояние"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
+msgstr ""
-#: ../../services.pm_.c:241
-#, fuzzy
-msgid "Stop"
-msgstr "Сектор"
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
+msgstr ""
+"Това е стандартната сигурност препоръчителна за компютър, който ще бъде\n"
+"използван да се свързва към Интернет като клиент. Има проверки на "
+"сигурността. "
-#: ../../share/advertising/01-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 9.0"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"Passwords are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
+"Паролата сега е включена, но използването като мрежов компютър не е "
+"препоръчително."
-#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive. It must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
+"Това ниво се използва с внимание. Това кара системата ви по-лесна за\n"
+"употреба, но е по-чувствително: не трябва да бъде използвана на машини\n"
+"свързани с други или по Интернет. Няма достъп с пароли."
+
+#: ../../security/level.pm:1
+#, c-format
+msgid "Paranoid"
+msgstr "Параноично"
+
+#: ../../security/level.pm:1
+#, fuzzy, c-format
+msgid "Higher"
+msgstr "Високо"
+
+#: ../../security/level.pm:1
+#, c-format
+msgid "High"
+msgstr "Високо"
+
+#: ../../security/level.pm:1
+#, c-format
+msgid "Poor"
+msgstr "Лошо"
+
+#: ../../security/level.pm:1
+#, c-format
+msgid "Welcome To Crackers"
+msgstr "Добре дошли при Cracker-ите"
-#: ../../share/advertising/01-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
-msgid "Get involved in the Free Software world"
-msgstr "Протокол за останалия свят"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Welcome to the Open Source world"
+msgstr ""
-#: ../../share/advertising/02-community.pl_.c:10
-msgid "Want to know more about the Open Source community?"
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.1"
msgstr ""
-#: ../../share/advertising/02-community.pl_.c:11
+#: ../../share/advertising/02-community.pl:1
+#, c-format
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
-msgid "Get the most from the Internet"
-msgstr "Свържи се към Интернет"
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Want to know more about the Open Source community?"
+msgstr ""
-#: ../../share/advertising/03-internet.pl_.c:10
+#: ../../share/advertising/02-community.pl:1
+#, fuzzy, c-format
+msgid "Get involved in the Free Software world"
+msgstr "Протокол за останалия свят"
+
+#: ../../share/advertising/03-internet.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+#: ../../share/advertising/03-internet.pl:1
+#, fuzzy, c-format
+msgid "Get the most from the Internet"
+msgstr "Свържи се към Интернет"
+
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
msgid "Push multimedia to its limits!"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl_.c:11
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr ""
+
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
-#: ../../share/advertising/05-games.pl_.c:9
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid "Games"
msgstr "Игри"
-#: ../../share/advertising/05-games.pl_.c:10
+#: ../../share/advertising/06-mcc.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
+"your machine"
msgstr ""
-#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
-#, fuzzy
+#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#, fuzzy, c-format
msgid "Mandrake Control Center"
msgstr "Контролен център"
-#: ../../share/advertising/06-mcc.pl_.c:10
+#: ../../share/advertising/07-desktop.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
-#: ../../share/advertising/07-desktop.pl_.c:9
-#, fuzzy
+#: ../../share/advertising/07-desktop.pl:1
+#, fuzzy, c-format
msgid "User interfaces"
msgstr "Мрежов интерфейс"
-#: ../../share/advertising/07-desktop.pl_.c:10
-msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
-msgid "Development simplified"
-msgstr "Разработка"
-
-#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:11
+#: ../../share/advertising/08-development.pl:1
+#, c-format
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server"
+#: ../../share/advertising/08-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.1 is the ultimate development platform"
msgstr ""
-#: ../../share/advertising/09-server.pl_.c:10
+#: ../../share/advertising/08-development.pl:1
+#, fuzzy, c-format
+msgid "Development simplified"
+msgstr "Разработка"
+
+#: ../../share/advertising/09-server.pl:1
+#, c-format
msgid ""
"Transform your machine into a powerful Linux server with a few clicks of "
"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:9
-msgid "Optimize your security"
+#: ../../share/advertising/09-server.pl:1
+#, c-format
+msgid "Turn your machine into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:10
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "This product is available on MandrakeStore website"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:11
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
msgid ""
"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
-#: ../../share/advertising/10-mnf.pl_.c:12
-msgid "This product is available on MandrakeStore website"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:9
-msgid "The official MandrakeSoft store"
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "Optimize your security"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies,\" are available online on our e-store:"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:9
-msgid "Strategic partners"
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
+msgid "The official MandrakeSoft store"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:9
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
+msgid "Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Whether you choose to teach yourself online or via our network of training "
+"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
+"certification program (worldwide professional technical certification)"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:11
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid "Certify yourself on Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl_.c:12
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
-msgid "Become a MandrakeExpert"
-msgstr "Експертна"
-
-#: ../../share/advertising/14-mdkexpert.pl_.c:10
-msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert Corporate"
-msgstr "Експертна"
-
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs"
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, fuzzy, c-format
+msgid "Become a MandrakeExpert"
+msgstr "Експертна"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:9
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
+msgid "An online platform to respond to company's specific support needs"
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl_.c:10
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, fuzzy, c-format
+msgid "MandrakeExpert Corporate"
+msgstr "Експертна"
+
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
msgid ""
"MandrakeClub and Mandrake Corporate Club were created for business and "
"private users of Mandrake Linux who would like to directly support their "
@@ -9818,220 +12996,246 @@ msgid ""
"MandrakeClub!"
msgstr ""
-#: ../../standalone.pm_.c:21
-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"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr ""
-#: ../../standalone.pm_.c:40
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version name.\n"
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Моля влезте отново в %s, за да активирате промените"
+
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone.pm_.c:51
-msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone.pm_.c:57
-msgid ""
-"Font Importation and monitoring "
-"application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone.pm_.c:68
-msgid ""
-"[OPTIONS]...\n"
-"\t --debug print debugging information"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone.pm_.c:70
-msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires "
-"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, "
-"nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, "
-"IP, nbi image name)"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "No floppy drive available!"
+msgstr "Няма флопи устройство"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone.pm_.c:82
-#, fuzzy
-msgid "[keyboard]"
-msgstr "Клавиатура"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Please insert floppy disk:"
+msgstr "Сложете стартиращата дискета в устройство %s"
-#: ../../standalone.pm_.c:83
-msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Write Config"
+msgstr "пренастройка"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone.pm_.c:84
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone.pm_.c:93
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "dhcpd Server Configuration"
+msgstr "Настройка на локална мрежа"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone.pm_.c:94
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in "
-"MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the "
-"description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range Start:"
msgstr ""
-#: ../../standalone.pm_.c:99
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
-"[--dynamic=dev]"
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Name Servers:"
+msgstr "NIS сървър"
+
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Domain Name:"
+msgstr "Име на домейна"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Broadcast Address:"
msgstr ""
-#: ../../standalone.pm_.c:100
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet Mask:"
msgstr ""
-#: ../../standalone.pm_.c:114
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+msgid "Routers:"
msgstr ""
-#: ../../standalone.pm_.c:168
-msgid "Installing packages..."
-msgstr "Инсталиране на пакети ..."
+#: ../../standalone/drakTermServ:1
+#, fuzzy, c-format
+msgid "Netmask:"
+msgstr "Мрежова маска"
-#: ../../standalone/XFdrake_.c:138
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet:"
+msgstr ""
-#: ../../standalone/XFdrake_.c:142
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Please relog into %s to activate the changes"