summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
blob: 721fe7fcfd3808187e66bcf677574769cc5942fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
package any; # $Id$

use diagnostics;
use strict;

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use detect_devices;
use partition_table qw(:types);
use fsedit;
use fs;
use lang;
use run_program;
use keyboard;
use devices;
use modules;
use log;
use c;

sub drakx_version() { 
    sprintf "DrakX v%s built %s", $::testing ? ('TEST', scalar gmtime()) : (split('/', cat_("$ENV{SHARE_PATH}/VERSION")))[2,3];
}

sub facesdir() {
    "$::prefix/usr/share/mdk/faces/";
}
sub face2png {
    my ($face) = @_;
    facesdir() . $face . ".png";
}
sub facesnames() {
    my $dir = facesdir();
    my @l = grep { /^[A-Z]/ } all($dir);
    map { if_(/(.*)\.png/, $1) } (@l ? @l : all($dir));
}

sub addKdmIcon {
    my ($user, $icon) = @_;
    my $dest = "$::prefix/usr/share/faces/$user.png";
    eval { cp_af(facesdir() . $icon . ".png", $dest) } if $icon;
}

sub allocUsers {
    my ($users) = @_;
    my @m = my @l = facesnames();
    foreach (grep { !$_->{icon} || $_->{icon} eq "automagic" } @$users) {
	$_->{auto_icon} = splice(@m, rand(@m), 1); #- known biased (see cookbook for better)
	log::l("auto_icon is $_->{auto_icon}");
	@m = @l unless @m;
    }
}

sub addUsers {
    my ($users) = @_;

    allocUsers($users);
    foreach my $u (@$users) {
	run_program::rooted($::prefix, "usermod", "-G", join(",", @{$u->{groups}}), $u->{name}) if !is_empty_array_ref($u->{groups});
	addKdmIcon($u->{name}, delete $u->{auto_icon} || $u->{icon});
    }
}

sub crypt {
    my ($password, $md5) = @_;
    crypt($password, $md5 ? '$1$' . salt(8) : salt(2));
}
sub enableShadow() {
    run_program::rooted($::prefix, "pwconv")  or log::l("pwconv failed");
    run_program::rooted($::prefix, "grpconv") or log::l("grpconv failed");
}

sub hdInstallPath() {
    my $tail = first(readlink("/tmp/image") =~ m|^/tmp/hdimage/(.*)|);
    my $head = first(readlink("/tmp/hdimage") =~ m|$::prefix(.*)|);
    $tail && ($head ? "$head/$tail" : "/mnt/hd/$tail");
}

sub kernelVersion() {
    my $kernel = readlink("$::prefix/boot/vmlinuz") || first(all("$::prefix/boot"));
    first($kernel =~ /vmlinuz-(.*)/);
}

sub mkbootdisk {
    my ($in, $bootloader, $fstab) = @_;

    if (arch() =~ /sparc/) {
	#- as probing floppies is a bit more different on sparc, assume always /dev/fd0.
	#- [pixel] uh, but in that case it would be better to change detect_devices::floppies, no?
	$in->ask_okcancel('',
			 N("A custom bootdisk provides a way of booting into your Linux system without
depending on the normal bootloader. This is useful if you don't want to install
SILO on your system, or another operating system removes SILO, or SILO doesn't
work with your hardware configuration. A custom bootdisk can also be used with
the Mandrake rescue image, making it much easier to recover from severe system
failures.

If you want to create a bootdisk for your system, insert a floppy in the first
drive and press \"Ok\".")) or return;
    } else {
	$in->ask_yesorno('', formatAlaTeX(
			    N("A custom bootdisk provides a way of booting into your Linux system without
depending on the normal bootloader. This is useful if you don't want to install
LILO (or grub) on your system, or another operating system removes LILO, or LILO doesn't
work with your hardware configuration. A custom bootdisk can also be used with
the Mandrake rescue image, making it much easier to recover from severe system
failures. Would you like to create a bootdisk for your system?
%s", isThisFs('xfs', fsedit::get_root($fstab)) ? N("

(WARNING! You're using XFS for your root partition,
creating a bootdisk on a 1.44 Mb floppy will probably fail,
because XFS needs a very large driver).") : ''))) or return;
    }

    my $floppy_dev;
    my @l = detect_devices::floppies_dev() or die \N("Sorry, no floppy drive available");
    my %l = (
	     'fd0'  => N("First floppy drive"),
	     'fd1'  => N("Second floppy drive"),
	     'Skip' => N("Skip"),
	    );
    my $format = sub { $l{$_[0]} || $_[0] };

    $in->ask_from_({
	       messages => N("Choose the floppy drive you want to use to make the bootdisk"),
	      }, [ { val => \$floppy_dev, list => \@l, format => $format } ]
        ) or return;

    $in->ask_warn('', N("Insert a floppy in %s", $format->($floppy_dev)));

    my $_w = $in->wait_message('', N("Creating bootdisk..."));

    require bootloader;
    bootloader::mkbootdisk(kernelVersion(), $floppy_dev, $bootloader->{perImageAppend});
    1;
}

sub setupBootloader {
    my ($in, $b, $all_hds, $fstab, $security) = @_;
    my $hds = $all_hds->{hds};

    require bootloader;
  general:
    setupBootloader__general($in, $b, $all_hds, $fstab, $security) or return 0;
    setupBootloader__boot_bios_drive($in, $b, $hds) or goto general;

    setupBootloader__entries($in, $b, $all_hds, $fstab) or goto general;

    #- somewhere should bootloader really installed ?
    $::isStandalone and my $_w = $in->wait_message(N("Please wait"), N("Bootloader installation in progress"));

    eval { run_program::rooted($::prefix, 'lilo', '-u') } if $::isInstall && !$::o->{isUpgrade} && -e "$::prefix/etc/lilo.conf" && glob("$::prefix/boot/boot.*");

    bootloader::install($b, $fstab, $hds);
}


sub setupBootloader_simple {
    my ($in, $b, $all_hds, $fstab, $security) = @_;
    my $hds = $all_hds->{hds};

    require bootloader;
    my $mixed_kind_of_disks = bootloader::mixed_kind_of_disks($hds);
    #- full expert questions when there is 2 kind of disks
    #- it would need a semi_auto asking on which drive the bios boots...

    $mixed_kind_of_disks || $b->{bootUnsafe} || arch() =~ /ppc/ or return 1; #- default is good enough
    
    if (!$mixed_kind_of_disks && arch() !~ /ia64/) {
	setupBootloader__mbr_or_not($in, $b, $hds, $fstab) or return 0;
    } else {
      general:
	setupBootloader__general($in, $b, $all_hds, $fstab, $security) or return 0;
    }
    setupBootloader__boot_bios_drive($in, $b, $hds) or goto general;
    1;
}


sub setupBootloader__boot_bios_drive {
    my ($in, $b, $hds) = @_;

    bootloader::mixed_kind_of_disks($hds) && 
      $b->{boot} =~ /\d$/ && #- on a partition
	is_empty_hash_ref($b->{bios}) && #- some bios mapping already there
	  arch() !~ /ppc/ or return 1;

    log::l("mixed_kind_of_disks");
    my $hd = $in->ask_from_listf('', N("You decided to install the bootloader on a partition.
This implies you already have a bootloader on the hard drive you boot (eg: System Commander).

On which drive are you booting?"), \&partition_table::description, $hds) or return 0;
    log::l("mixed_kind_of_disks chosen $hd->{device}");
    $b->{first_hd_device} = "/dev/$hd->{device}";
    1;
}

sub setupBootloader__mbr_or_not {
    my ($in, $b, $hds, $fstab) = @_;

    if (arch() =~ /ppc/) {
	if (defined $partition_table::mac::bootstrap_part) {
	    $b->{boot} = $partition_table::mac::bootstrap_part;
	    log::l("set bootstrap to $b->{boot}"); 
	} else {
	    die "no bootstrap partition - yaboot.conf creation failed";
	}
    } else {
	my $floppy = detect_devices::floppy();

	my @l = (
		 [ N("First sector of drive (MBR)") => '/dev/' . $hds->[0]{device} ],
		 [ N("First sector of the root partition") => '/dev/' . fsedit::get_root($fstab, 'boot')->{device} ],
		     if_($floppy, 
                 [ N("On Floppy") => "/dev/$floppy" ],
		     ),
		 [ N("Skip") => '' ],
		);

	my $default = arch() =~ /sparc/ ? ($b->{use_partition} ? $l[1] : $l[0]) : 
	                                  find { $_->[1] eq $b->{boot} } @l;
	$in->ask_from_({ title => arch() =~ /sparc/ ? N("SILO Installation") : N("LILO/grub Installation"),
			 messages => N("Where do you want to install the bootloader?"),
			 interactive_help_id => 'setupBootloaderBeginner',
		       },
		      [ { val => \$default, list => \@l, format => sub { $_[0][0] }, type => 'list' } ]);
	my $new_boot = $default->[1] or return;

	if (arch() =~ /sparc/) {
	    $b->{use_partition} = $new_boot eq $l[1][1];
	}  else {
	    #- remove bios mapping if the user changed the boot device
	    delete $b->{bios} if $new_boot ne $b->{boot};

	    $b->{boot} = $new_boot;
	}
    }
    1;
}

sub setupBootloader__general {
    my ($in, $b, $all_hds, $fstab, $security) = @_;

    my @silo_install_lang = (N("First sector of drive (MBR)"), N("First sector of boot partition"));

    ($b->{method}, my $method_choices) = bootloader::method_choices($fstab, $b);
    my $profiles = bootloader::has_profiles($b);
    my $prev_force_acpi = my $force_acpi = bootloader::get_append($b, 'acpi') !~ /off|ht/;
    my $prev_force_noapic = my $force_noapic = bootloader::get_append($b, 'noapic');
    my $memsize = bootloader::get_append($b, 'mem');
    my $prev_clean_tmp = my $clean_tmp = any { $_->{mntpoint} eq '/tmp' } @{$all_hds->{special} ||= []};
    my $prev_boot = $b->{boot};
    my $mkbootdisk;

    $b->{password2} ||= $b->{password} ||= '';
    $b->{vga} ||= 'normal';
    if (arch() !~ /ppc/) {
	$in->ask_from_({ messages => N("Bootloader main options"),
			 interactive_help_id => 'setupBootloader',
		       }, [
            { label => N("Bootloader to use"), val => \$b->{method}, list => [ keys %$method_choices ], format => sub { $method_choices->{$_[0]} } },
                arch() =~ /sparc/ ? (
            { label => N("Bootloader installation"), val => \$b->{use_partition}, list => [ 0, 1 ], format => sub { $silo_install_lang[$_[0]] } },
		) : if_(arch() !~ /ia64/,
            { label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (@{$all_hds->{hds}}, grep { !isFat_or_NTFS($_) } @$fstab)), detect_devices::floppies_dev() ], not_edit => !$::expert },
            { label => N("Compact"), val => \$b->{compact}, type => "bool", text => N("compact"), advanced => 1 },
            { label => N("Video mode"), val => \$b->{vga}, list => [ keys %bootloader::vga_modes ], not_edit => !$::expert, format => sub { $bootloader::vga_modes{$_[0]} }, advanced => 1 },
		),
            { label => N("Delay before booting default image"), val => \$b->{timeout} },
            { label => N("Enable ACPI"), val => \$force_acpi, type => 'bool' },
            { label => N("Force No APIC"), val => \$force_noapic, type => 'bool' },
		if_($security >= 4 || $b->{password} || $b->{restricted},
            { label => N("Password"), val => \$b->{password}, hidden => 1 },
            { label => N("Password (again)"), val => \$b->{password2}, hidden => 1 },
            { label => N("Restrict command line options"), val => \$b->{restricted}, type => "bool", text => N("restrict") },
		),
                if_(arch() !~ /alpha/ && arch() !~ /ppc/,
            { label => N("Create a bootdisk"), val => \$mkbootdisk, type => 'bool', advanced => 1 },
		),
            { label => N("Clean /tmp at each boot"), val => \$clean_tmp, type => 'bool', advanced => 1 },
            { label => N("Precise RAM size if needed (found %d MB)", availableRamMB()), val => \$memsize, advanced => 1 },
		if_(detect_devices::isLaptop(),
            { label => N("Enable multiple profiles"), val => \$profiles, type => 'bool', advanced => 1 },
		),
        ],
        complete => sub {
	    !$memsize || $memsize =~ /K$/ || $memsize =~ s/^(\d+)M?$/$1M/i or $in->ask_warn('', N("Give the ram size in MB")), return 1;
	    #-				     $security > 4 && length($b->{password}) < 6 and $in->ask_warn('', N("At this level of security, a password (and a good one) in lilo is requested")), return 1;
	    $b->{restricted} && !$b->{password} and $in->ask_warn('', N("Option ``Restrict command line options'' is of no use without a password")), return 1;
	    $b->{password} eq $b->{password2} or !$b->{restricted} or $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1;
	    0;
	}) or return 0;
    } else {
	$b->{boot} = $partition_table::mac::bootstrap_part;	
	$in->ask_from_({ messages => N("Bootloader main options"),
			 interactive_help_id => 'setupYabootGeneral',
		       }, [
            { label => N("Bootloader to use"), val => \$b->{method}, list => [ keys %$method_choices ], format => sub { $method_choices->{$_[0]} } },
            { label => N("Init Message"), val => \$b->{'init-message'} },
            { label => N("Boot device"), val => \$b->{boot}, list => [ map { "/dev/$_" } (map { $_->{device} } (grep { isAppleBootstrap($_) } @$fstab)) ], not_edit => !$::expert },
            { label => N("Open Firmware Delay"), val => \$b->{delay} },
            { label => N("Kernel Boot Timeout"), val => \$b->{timeout} },
            { label => N("Enable CD Boot?"), val => \$b->{enablecdboot}, type => "bool" },
            { label => N("Enable OF Boot?"), val => \$b->{enableofboot}, type => "bool" },
            { label => N("Default OS?"), val => \$b->{defaultos}, list => [ 'linux', 'macos', 'macosx', 'darwin' ] },
        ]) or return 0;				
    }

    #- remove bios mapping if the user changed the boot device
    delete $b->{bios} if $b->{boot} ne $prev_boot;

    if ($b->{method} eq 'grub') {
	$in->do_pkgs->ensure_is_installed('grub', "/usr/sbin/grub", 1) or return 0;
    }

    bootloader::set_profiles($b, $profiles);
    bootloader::set_append($b, "mem", $memsize);
    if ($prev_force_acpi != $force_acpi) {
	bootloader::set_append($b, acpi => ($force_acpi ? '' : 'ht'));
    }
    if ($prev_force_noapic != $force_noapic) {
	($force_noapic ? \&bootloader::set_append : \&bootloader::remove_append_simple)->($b, 'noapic');
    }

    if ($prev_clean_tmp != $clean_tmp) {
	if ($clean_tmp && !fsedit::has_mntpoint('/tmp', $all_hds)) {
	    push @{$all_hds->{special}}, { device => 'none', mntpoint => '/tmp', type => 'tmpfs' };
	} else {
	    @{$all_hds->{special}} = grep { $_->{mntpoint} eq '/tmp' } @{$all_hds->{special}};
	}
    }
    mkbootdisk($in, $b, $fstab) or return &setupBootloader__general if $mkbootdisk;

    1;
}

sub setupBootloader__entries {
    my ($in, $b, $all_hds, $fstab) = @_;

    my $Modify = sub {
	my ($e) = @_;
	my $default = my $old_default = $e->{label} eq $b->{default};

	my @l;
	if ($e->{type} eq "image") { 
	    @l = (
{ label => N("Image"), val => \$e->{kernel_or_dev}, list => [ map { s/$::prefix//; $_ } glob_("$::prefix/boot/vmlinuz*") ], not_edit => 0 },
{ label => N("Root"), val => \$e->{root}, list => [ map { "/dev/$_->{device}" } @$fstab ], not_edit => !$::expert },
{ label => N("Append"), val => \$e->{append} },
  if_(arch() !~ /ppc|ia64/,
{ label => N("Video mode"), val => \$e->{vga}, list => [ keys %bootloader::vga_modes ], format => sub { $bootloader::vga_modes{$_[0]} }, not_edit => !$::expert },
),
{ label => N("Initrd"), val => \$e->{initrd}, list => [ map { s/$::prefix//; $_ } glob_("$::prefix/boot/initrd*") ], not_edit => 0 },
{ label => N("Read-write"), val => \$e->{'read-write'}, type => 'bool' }
	    );
	    @l = @l[0..2] unless $::expert;
	} else {
	    @l = ( 
{ label => N("Root"), val => \$e->{kernel_or_dev}, list => [ map { "/dev/$_->{device}" } @$fstab, detect_devices::floppies_dev() ], not_edit => !$::expert },
if_(arch() !~ /sparc|ppc|ia64/,
{ label => N("Table"), val => \$e->{table}, list => [ '', map { "/dev/$_->{device}" } @{$all_hds->{hds}} ], not_edit => !$::expert },
{ label => N("Unsafe"), val => \$e->{unsafe}, type => 'bool' }
),
	    );
	    @l = $l[0] unless $::expert;
	}
	if (arch() !~ /ppc/) {
	    @l = (
		  { label => N("Label"), val => \$e->{label} },
		  @l,
		  { label => N("Default"), val => \$default, type => 'bool' },
		 );
	} else {
	    unshift @l, { label => N("Label"), val => \$e->{label}, list => ['macos', 'macosx', 'darwin'] };
	    if ($e->{type} eq "image") {
		@l = ({ label => N("Label"), val => \$e->{label} },
		$::expert ? @l[1..4] : (@l[1..2], { label => N("Append"), val => \$e->{append} }),
		if_($::expert, { label => N("Initrd-size"), val => \$e->{initrdsize}, list => [ '', '4096', '8192', '16384', '24576' ] }),
		if_($::expert, $l[5]),
		{ label => N("NoVideo"), val => \$e->{novideo}, type => 'bool' },
		{ label => N("Default"), val => \$default, type => 'bool' }
		);
	    }
	}

	$in->ask_from_(
	    {
	     interactive_help_id => arch() =~ /ppc/ ? 'setupYabootAddEntry' : 'setupBootloaderAddEntry',
	     callbacks => {
	       complete => sub {
		   $e->{label} or $in->ask_warn('', N("Empty label not allowed")), return 1;
		   $e->{kernel_or_dev} or $in->ask_warn('', $e->{type} eq 'image' ? N("You must specify a kernel image") : N("You must specify a root partition")), return 1;
		   member(lc $e->{label}, map { lc $_->{label} } grep { $_ != $e } @{$b->{entries}}) and $in->ask_warn('', N("This label is already used")), return 1;
		   0;
	       } } }, \@l) or return;

	$b->{default} = $old_default || $default ? $default && $e->{label} : $b->{default};
	bootloader::configure_entry($e); #- hack to make sure initrd file are built.
	1;
    };

    my $Add = sub {
	my @labels = map { $_->{label} } @{$b->{entries}};
	my ($e, $prefix);
	if ($in->ask_from_list_('', N("Which type of entry do you want to add?"),
				[ N_("Linux"), arch() =~ /sparc/ ? N_("Other OS (SunOS...)") : arch() =~ /ppc/ ? 
				  N_("Other OS (MacOS...)") : N_("Other OS (windows...)") ]
			       ) eq "Linux") {
	    $e = { type => 'image',
		   root => '/dev/' . fsedit::get_root($fstab)->{device}, #- assume a good default.
		 };
	    $prefix = "linux";
	} else {
	    $e = { type => 'other' };
	    $prefix = arch() =~ /sparc/ ? "sunos" : arch() =~ /ppc/ ? "macos" : "windows";
	}
	$e->{label} = $prefix;
	for (my $nb = 0; member($e->{label}, @labels); $nb++) {
	    $e->{label} = "$prefix-$nb";
	}
	$Modify->($e) or return;
	push @{$b->{entries}}, $e;
	$e;
    };

    my $Remove = sub {
	my ($e) = @_;
	delete $b->{default} if $b->{default} eq $e->{label};
	@{$b->{entries}} = grep { $_ != $e } @{$b->{entries}};
	1;
    };

    my @prev_entries = @{$b->{entries}};
    if ($in->ask_from__add_modify_remove('',
N("Here are the entries on your boot menu so far.
You can create additional entries or change the existing ones."), [ { 
        format => sub {
	    my ($e) = @_;
	    ref($e) ? 
	      "$e->{label} ($e->{kernel_or_dev})" . ($b->{default} eq $e->{label} && "  *") : 
		translate($e);
	}, list => $b->{entries},
    } ], Add => $Add, Modify => $Modify, Remove => $Remove)) {
	1;
    } else {
	@{$b->{entries}} = @prev_entries;
	'';
    }
}

my @etc_pass_fields = qw(name pw uid gid realname home shell);
sub unpack_passwd {
    my ($l) = @_;
    my %l; @l{@etc_pass_fields} = split ':', chomp_($l);
    \%l;
}
sub pack_passwd {
    my ($l) = @_;
    join(':', @$l{@etc_pass_fields}) . "\n";
}

sub get_autologin() {
    my %desktop = getVarsFromSh("$::prefix/etc/sysconfig/desktop");
    my $desktop = $desktop{DESKTOP} || 'KDE';
    my $autologin = do {
	if (($desktop{DISPLAYMANAGER} || $desktop) eq 'GNOME') {
	    my %conf = read_gnomekderc("$::prefix/etc/X11/gdm/gdm.conf", 'daemon');
	    text2bool($conf{AutomaticLoginEnable}) && $conf{AutomaticLogin};
	} else { # KDM / MdkKDM
	    my %conf = read_gnomekderc("$::prefix/usr/share/config/kdm/kdmrc", 'X-:0-Core');
	    text2bool($conf{AutoLoginEnable}) && $conf{AutoLoginUser};
	}
    };
    { autologin => $autologin, desktop => $desktop };
}

sub set_autologin {
    my ($user, $desktop) = @_;
    my $autologin = bool2text($user);

    #- Configure KDM / MDKKDM
    eval { update_gnomekderc("$::prefix/usr/share/config/kdm/kdmrc", 'X-:0-Core' => (
	AutoLoginEnable => $autologin,
	AutoLoginUser => $user,
    )) };

    #- Configure GDM
    eval { update_gnomekderc("$::prefix/etc/X11/gdm/gdm.conf", daemon => (
	AutomaticLoginEnable => $autologin,
	AutomaticLogin => $user,
    )) };
  
    if ($user) {
	my %l = getVarsFromSh("$::prefix/etc/sysconfig/desktop");
	$l{DESKTOP} = $desktop;
	setVarsInSh("$::prefix/etc/sysconfig/desktop", \%l);
	log::l("cat $::prefix/etc/sysconfig/desktop ($desktop):\n", cat_("$::prefix/etc/sysconfig/desktop"));
    }
    my $xdm_autologin_cfg = "$::prefix/etc/sysconfig/autologin";
    if (member($desktop, 'KDE', 'GNOME')) {
	unlink $xdm_autologin_cfg;
    } else {
	setVarsInShMode($xdm_autologin_cfg, 0644,
			{ USER => $user, AUTOLOGIN => bool2yesno($user), EXEC => '/usr/X11R6/bin/startx.autologin' });
    }
}

sub rotate_log {
    my ($f) = @_;
    if (-e $f) {
	my $i = 1;
	for (; -e "$f$i" || -e "$f$i.gz"; $i++) {}
	rename $f, "$f$i";
    }
}
sub rotate_logs {
    my ($prefix) = @_;
    rotate_log("$prefix/root/drakx/$_") foreach qw(ddebug.log install.log);
}

sub writeandclean_ldsoconf {
    my ($prefix) = @_;
    my $file = "$prefix/etc/ld.so.conf";
    my @l = chomp_(cat_($file));
    @l = grep { !m|^(/usr)?/lib(64)?$| } @l; #- no need to have /lib and /usr/lib in ld.so.conf
    push @l, '/usr/X11R6/lib', if_(arch() =~ /x86_64/, '/usr/X11R6/lib64');
    push @l, grep { -d "$::prefix$_" } '/usr/lib/qt3/lib', if_(arch() =~ /x86_64/, '/usr/lib/qt3/lib64'); #- needed for upgrade where package renaming can cause this to disappear
    output($file, map { "$_\n" } uniq(@l));
}

sub shells() {
    grep { -x "$::prefix$_" } chomp_(cat_("$::prefix/etc/shells"));
}

sub inspect {
    my ($part, $o_prefix, $b_rw) = @_;

    isMountableRW($part) or return;

    my $dir = $::isInstall ? "/tmp/inspect_tmp_dir" : "/root/.inspect_tmp_dir";

    if ($part->{isMounted}) {
	$dir = ($o_prefix || '') . $part->{mntpoint};
    } elsif ($part->{notFormatted} && !$part->{isFormatted}) {
	$dir = '';
    } else {
	mkdir $dir, 0700;
	eval { fs::mount($part->{device}, $dir, type2fs($part), !$b_rw) };
	$@ and return;
    }
    my $h = before_leaving {
	if (!$part->{isMounted} && $dir) {
	    fs::umount($dir);
	    unlink($dir)
	}
    };
    $h->{dir} = $dir;
    $h;
}

sub ask_users {
    my ($in, $users, $security) = @_;

    my $u if 0; $u ||= {};

    my @icons = facesnames();

    my %high_security_groups = (
        xgrp => N("access to X programs"),
	rpm => N("access to rpm tools"),
	wheel => N("allow \"su\""),
	adm => N("access to administrative files"),
	ntools => N("access to network tools"),
	ctools => N("access to compilation tools"),
    );
    while (1) {
	$u->{password2} ||= $u->{password} ||= '';
	$u->{shell} ||= '/bin/bash';
	my $names = @$users ? N("(already added %s)", join(", ", map { $_->{realname} || $_->{name} } @$users)) : '';

	my %groups;
	my $verif = sub {
	    $u->{password} eq $u->{password2} or $in->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1,2;
	    $security > 3 && length($u->{password}) < 6 and $in->ask_warn('', N("This password is too simple")), return 1,2;
	    $u->{name} or $in->ask_warn('', N("Please give a user name")), return 1,0;
	    $u->{name} =~ /^[a-z]+?[a-z0-9_-]*?$/ or $in->ask_warn('', N("The user name must contain only lower cased letters, numbers, `-' and `_'")), return 1,0;
	    length($u->{name}) <= 32 or $in->ask_warn('', N("The user name is too long")), return 1,0;
	    member($u->{name}, 'root', map { $_->{name} } @$users) and $in->ask_warn('', N("This user name has already been added")), return 1,0;
	    return 0;
	};
	my $ret = $in->ask_from_(
	    { title => N("Add user"),
	      messages => N("Enter a user\n%s", $names),
	      interactive_help_id => 'addUser',
	      focus_first => 1,
	      if_(!$::isInstall, ok => N("Done")),
	      cancel => N("Accept user"),
	      callbacks => {
	          focus_out => sub {
		      if ($_[0] eq '0') {
			  $u->{name} ||= lc first($u->{realname} =~ /([\w-]+)/);
		      }
		  },
	          complete => sub { $u->{name} ? &$verif : 0 },
                  canceled => $verif,
                  ok_disabled => sub { $security >= 4 && !@$users },
	    } }, [ 
	    { label => N("Real name"), val => \$u->{realname} },
	    { label => N("User name"), val => \$u->{name} },
            { label => N("Password"),val => \$u->{password}, hidden => 1 },
            { label => N("Password (again)"), val => \$u->{password2}, hidden => 1 },
            { label => N("Shell"), val => \$u->{shell}, list => [ shells() ], not_edit => !$::expert, advanced => 1 },
	      if_($security <= 3 && @icons,
	    { label => N("Icon"), val => \ ($u->{icon} ||= 'man'), list => \@icons, icon2f => \&face2png, format => \&translate },
	      ),
	      if_($security > 3,
		  map {
            { label => $_, val => \$groups{$_}, text => $high_security_groups{$_}, type => 'bool' }
		  } keys %high_security_groups,
	      ),
           ],
        );
	$u->{groups} = [ grep { $groups{$_} } keys %groups ];

	push @$users, $u if $u->{name};
	$u = {};
	$ret and return;
    }
}

sub sessions() {
    split(' ', run_program::rooted_get_stdout($::prefix, '/usr/sbin/chksession', '-l'));
}

sub autologin {
    my ($o, $in) = @_;

    my @wm = sessions();
    my @users = map { $_->{name} } @{$o->{users} || []};

    if (member('KDE', @wm) && @users == 1 && $o->{meta_class} eq 'desktop') {
	$o->{desktop} = 'KDE';
	$o->{autologin} = $users[0];
    } elsif (@wm > 1 && @users && !$o->{authentication}{NIS} && $o->{security} <= 2) {
	my $use_autologin = @users == 1;

	$in->ask_from_(
		       { title => N("Autologin"),
			 messages => N("I can set up your computer to automatically log on one user.") },
		       [ { label => N("Do you want to use this feature?"), val => \$use_autologin, type => 'bool' },
			 { label => N("Choose the default user:"), val => \$o->{autologin}, list => \@users, disabled => sub { !$use_autologin } },
			 { label => N("Choose the window manager to run:"), val => \$o->{desktop}, list => \@wm, disabled => sub { !$use_autologin } } ]
		      );
	delete $o->{autologin} if !$use_autologin;
    } else {
	delete $o->{autologin};
    }
}

sub selectLanguage {
    my ($in, $lang, $langs_) = @_;

    my $common = { messages => N("Please choose a language to use."),
		   title => 'language choice',
		   interactive_help_id => 'selectLanguage' };

    if ($::isInstall) {
	my $langs = $langs_ || {};
	my $using_images = $in->isa('interactive::gtk') && listlength(cat_('/proc/fb'));

	#- to create the default value, use the first location for that value :/
	$lang = first(lang::l2location($lang))."|$lang";
	
	my %name2l = map { lang::l2name($_) => $_ } lang::list_langs();
	my $listval2val = sub { $1 if $_[0] =~ /\|(.*)/ };

	my @langs = map { my $l = $_; map { [ "$_|$l", $_, $l ] } lang::l2location($l) } lang::list_langs();
	#- since gtk version will use images (function image2f) we need to sort differently
	my $sort_func = $using_images ? \&lang::l2transliterated : \&lang::l2name;
	@langs = map { $_->[0] } sort { $a->[1] cmp $b->[1] || $sort_func->($a->[2]) cmp $sort_func->($b->[2]) } @langs;

	add2hash($common, { cancel => '',
			    advanced_messages => formatAlaTeX(N("Mandrake Linux can support multiple languages. Select
the languages you would like to install. They will be available
when your installation is complete and you restart your system.")),
			    callbacks => { advanced => sub { $langs->{$listval2val->($lang)} = 1 } } });
			    
	$in->ask_from_($common,
	[ { val => \$lang, separator => '|', 
	    if_($using_images, image2f => sub { $name2l{$_[0]} =~ /^[a-z]/ ? ('', "langs/lang-$name2l{$_[0]}") : $_[0] }),
	    format => sub { $1.lang::l2name($2) if $_[0] =~ /(.*\|)(.*)/ },
	    list => \@langs, sort => 0 },
	    if_($langs_, if_($::isInstall,
			     { val => \$in->{locale}{utf8}, type => 'bool', text => N("Use Unicode by default"), advanced => 1 }),
		{ val => \$langs->{all}, type => 'bool', text => N("All languages"), advanced => 1 },
	        map {
		  { val => \$langs->{$_->[0]}, type => 'bool', disabled => sub { $langs->{all} },
		    text => $_->[1], advanced => 1,
		    image => "langs/lang-$_->[0]",
		  } 
	      } sort { $a->[1] cmp $b->[1] } map { [ $_, $sort_func->($_) ] } lang::list_langs())
	]) or return;
	$langs->{$listval2val->($lang)} = 1;
	$langs->{$_} or delete $langs->{$_} foreach keys %$langs;  #- clean hash
	
	#- convert to the default locale for asked language
	$listval2val->($lang);

    } else {
	my @langs = sort { lang::l2name($a) cmp lang::l2name($b) } lang::list_langs(exclude_non_installed => 1);
	die 'one lang only' if @langs == 1;
	$in->ask_from_($common,
		       [ { val => \$lang, type => 'list',
			   format => sub { lang::l2name($_[0]) }, list => \@langs } ]) or return;
	$lang;
    }
}

sub selectCountry {
    my ($o, $locale) = @_;

    my $country = $locale->{country};
    my @countries = lang::list_countries(exclude_non_installed => !$::isInstall);
    my @best = uniq map { if_((/^\Q$locale->{lang}/ || substr($_, 0, 2) eq substr($locale->{lang}, 0, 2))
			      && /.._(..)/, $1) } @lang::locales;
    @best == 1 and @best = ();

    my ($other, $ext_country);
    member($country, @best) or ($ext_country, $country) = ($country, $ext_country);
    $o->ask_from_(
		  { title => N("Country / Region"), 
		    messages => N("Please choose your country."),
		    interactive_help_id => 'selectCountry',
		    advanced_messages => N("Here is the full list of available countries"),
		    advanced_label => N("More"),
		    advanced_state => $ext_country && scalar(@best),
		    callbacks => { changed => sub { $other = $_[0] == 1 } },
		  },
		  [ if_(@best, { val => \$country, type => 'list', format => \&lang::c2name,
				 list => \@best, sort => 1 }),
		    { val => \$ext_country, type => 'list', format => \&lang::c2name,
		      list => [ difference2(\@countries, \@best) ], advanced => scalar(@best) }
		  ]) or return;

    $locale->{country} = $other || !@best ? $ext_country : $country;
}

sub write_passwd_user {
    my ($u, $isMD5) = @_;

    $u->{pw} = $u->{password} ? &crypt($u->{password}, $isMD5) : $u->{pw} || '';
    $u->{shell} ||= '/bin/bash';

    substInFile {
	my $l = unpack_passwd($_);
	if ($l->{name} eq $u->{name}) {
	    add2hash_($u, $l);
	    $_ = pack_passwd($u);
	    $u = {};
	}
	if (eof && $u->{name}) {
	    $_ .= pack_passwd($u);
	}
    } "$::prefix/etc/passwd";
}

sub set_login_serial_console {
    my ($port, $speed) = @_;

    my $line = "s$port:12345:respawn:/sbin/getty ttyS$port DT$speed ansi\n";
    substInFile { s/^s$port:.*//; $_ = $line if eof } "$::prefix/etc/inittab";
}

sub report_bug {
    my ($prefix, @other) = @_;

    sub header { "
********************************************************************************
* $_[0]
********************************************************************************";
    }

    join '', map { chomp; "$_\n" }
      header("lspci"), detect_devices::stringlist(),
      header("pci_devices"), cat_("/proc/bus/pci/devices"),
      header("dmidecode"), `$ENV{LD_LOADER} dmidecode`,
      header("fdisk"), arch() =~ /ppc/ ? `$ENV{LD_LOADER} pdisk -l` : `$ENV{LD_LOADER} fdisk -l`,
      header("scsi"), cat_("/proc/scsi/scsi"),
      header("lsmod"), cat_("/proc/modules"),
      header("cmdline"), cat_("/proc/cmdline"),
      header("pcmcia: stab"), cat_("$prefix/var/lib/pcmcia/stab") || cat_("$prefix/var/run/stab"),
      header("usb"), cat_("/proc/bus/usb/devices"),
      header("partitions"), cat_("/proc/partitions"),
      header("cpuinfo"), cat_("/proc/cpuinfo"),
      header("syslog"), cat_("/tmp/syslog") || cat_("$prefix/var/log/syslog"),
      header("ddcxinfos"), ddcxinfos(),
      header("stage1.log"), cat_("/tmp/stage1.log") || cat_("$prefix/root/drakx/stage1.log"),
      header("ddebug.log"), cat_("/tmp/ddebug.log") || cat_("$prefix/root/drakx/ddebug.log"),
      header("install.log"), cat_("$prefix/root/drakx/install.log"),
      header("fstab"), cat_("$prefix/etc/fstab"),
      header("modules.conf"), cat_("$prefix/etc/modules.conf"),
      header("lilo.conf"), cat_("$prefix/etc/lilo.conf"),
      header("menu.lst"), cat_("$prefix/boot/grub/menu.lst"),
      header("XF86Config"), cat_("$prefix/etc/X11/XF86Config"),
      header("XF86Config-4"), cat_("$prefix/etc/X11/XF86Config-4"),
      header("/etc/modules"), cat_("$prefix/etc/modules"),
      header("sysconfig/i18n"), cat_("$prefix/etc/sysconfig/i18n"),
      map_index { even($::i) ? header($_) : $_ } @other;
}

sub devfssymlinkf {
    my ($if_struct, $of) = @_;
    my $if = $if_struct->{device};

    my $devfs_if = $if_struct->{devfs_device};
    $devfs_if ||= devices::to_devfs($if);
    $devfs_if ||= $if;

    #- example: $of is mouse, $if is usbmouse, $devfs_if is input/mouse0

    output_p("$::prefix/etc/devfs/conf.d/$of.conf", 
"REGISTER	^$devfs_if\$	CFUNCTION GLOBAL mksymlink $devfs_if $of
UNREGISTER	^$devfs_if\$	CFUNCTION GLOBAL unlink $of
");

    output_p("$::prefix/etc/devfs/conf.d/$if.conf", 
"REGISTER	^$devfs_if\$	CFUNCTION GLOBAL mksymlink $devfs_if $if
UNREGISTER	^$devfs_if\$	CFUNCTION GLOBAL unlink $if
") if $devfs_if ne $if && $if !~ /^hd[a-z]/ && $if !~ /^scd/ && $if !~ /^sd[a-z]/;

    #- when creating a symlink on the system, use devfs name if devfs is mounted
    symlinkf($devfs_if, "$::prefix/dev/$if") if $devfs_if ne $if && detect_devices::dev_is_devfs();
    symlinkf($if, "$::prefix/dev/$of");
}
sub devfs_rawdevice {
    my ($if_struct, $of) = @_;

    my $devfs_if = $if_struct->{devfs_device};
    $devfs_if ||= devices::to_devfs($if_struct->{device});
    $devfs_if ||= $if_struct->{device};

    output_p("$::prefix/etc/devfs/conf.d/$of.conf", 
"REGISTER	^$devfs_if\$	EXECUTE /etc/dynamic/scripts/rawdevice.script add /dev/$devfs_if /dev/$of
UNREGISTER	^$devfs_if\$	EXECUTE /etc/dynamic/scripts/rawdevice.script del /dev/$of
");
}


sub fileshare_config {
    my ($in, $type) = @_; #- $type is 'nfs', 'smb' or ''

    my $file = '/etc/security/fileshare.conf';
    my %conf = getVarsFromSh($file);

    my @l = (N_("No sharing"), N_("Allow all users"), N_("Custom"));
    my $restrict = exists $conf{RESTRICT} ? text2bool($conf{RESTRICT}) : 1;

    if ($restrict) {
	#- verify we can export in $type
	my %type2file = (nfs => [ '/etc/init.d/nfs', 'nfs-utils' ], smb => [ '/etc/init.d/smb', 'samba' ]);
	my @wanted = $type ? $type : keys %type2file;
	my @have = grep { -e $type2file{$_}[0] } @wanted;
	if (!@have) {
	    if (@wanted == 1) {
		$in->ask_okcancel('', N("The package %s needs to be installed. Do you want to install it?", $type2file{$wanted[0]}[1]), 1) or return;
	    } else {
		my $wanted = $in->ask_many_from_list('', N("You can export using NFS or Samba. Please select which you'd like to use."),
						  { list => \@wanted }) or return;
		@wanted = @$wanted or return;
	    }
	    $in->do_pkgs->install(map { $type2file{$_}[1] } @wanted);
	    @have = grep { -e $type2file{$_}[0] } @wanted;
	}
	if (!@have) {
	    $in->ask_warn('', N("Mandatory package %s is missing", $wanted[0]));
	    return;
	}
    }

    my $r = $in->ask_from_list_('fileshare',
N("Would you like to allow users to share some of their directories?
Allowing this will permit users to simply click on \"Share\" in konqueror and nautilus.

\"Custom\" permit a per-user granularity.
"),
				\@l, $l[$restrict ? 0 : 1]) or return;
    $restrict = $r ne $l[1];
    $conf{RESTRICT} = bool2yesno($restrict);

    setVarsInSh($file, \%conf);
    if ($r eq $l[2]) {
	# custom
	run_program::rooted($::prefix, 'groupadd', '-r', 'fileshare');
	if ($in->ask_from_no_check(
	{
	 -e '/usr/sbin/userdrake' ? (ok => N("Launch userdrake"), cancel => N("Cancel")) : (cancel => ''),
	 messages =>
N("The per-user sharing uses the group \"fileshare\". 
You can use userdrake to add a user to this group.")
	}, [])) {
	    run_program::run('userdrake');
	}
    }
}

sub ddcxinfos() {
    return if $::noauto;

    my @l;
    run_program::raw({ timeout => 20 }, 'ddcxinfos', '>', \@l);
    if ($::isInstall && -e "/tmp/ddcxinfos") {
	my @l_old = cat_("/tmp/ddcxinfos");
	if (@l < @l_old) {
	    log::l("new ddcxinfos is worse, keeping the previous one");
	    @l = @l_old;
	} elsif (@l > @l_old) {
	    log::l("new ddcxinfos is better, dropping the previous one");
	}
    }
    output("/tmp/ddcxinfos", @l) if $::isInstall;
    @l;
}

sub running_window_manager() {
    my @window_managers = qw(kwin gnome-session icewm wmaker afterstep fvwm fvwm2 fvwm95 mwm twm enlightenment xfce blackbox sawfish olvwm);

    foreach (@window_managers) {
	my @pids = fuzzy_pidofs(qr/\b$_\b/) or next;
	return wantarray() ? ($_, @pids) : $_;
    }
    undef;
}

sub ask_window_manager_to_logout {
    my ($wm) = @_;
    
    my %h = (
	'kwin' => "dcop kdesktop default logout",
	'gnome-session' => "gnome-session-save --kill",
	'icewm' => "killall -QUIT icewm",
	'wmaker' => "killall -USR1 wmaker",
    );
    my $cmd = $h{$wm} or return;
    $ENV{ICEAUTHORITY} ||= "$ENV{HOME}/.ICEauthority"; #- used by gnome-session
    $cmd = "su $ENV{USER} -c '$cmd'" if $wm eq 'kwin' && $> == 0;
    system($cmd);
    1;
}

sub alloc_raw_device {
    my ($prefix, $device) = @_;
    my $used = 0;
    my $raw_dev;
    substInFile {
	$used = max($used, $1) if m|^\s*/dev/raw/raw(\d+)|;
	if (eof) {
	    $raw_dev = "raw/raw" . ($used + 1);
	    $_ .= "/dev/$raw_dev /dev/$device\n";
	}
    } "$prefix/etc/sysconfig/rawdevices";
    $raw_dev;
}

sub config_dvd {
    my ($prefix, $have_devfsd) = @_;

    #- can't have both a devfs and a non-devfs config
    #- the /etc/sysconfig/rawdevices solution gives errors with devfs

    my @dvds = grep { detect_devices::isDvdDrive($_) } detect_devices::cdroms__faking_ide_scsi() or return;

    log::l("configuring DVD: " . join(" ", map { $_->{device} } @dvds));
    #- create /dev/dvd symlink
    each_index {
	devfssymlinkf($_, 'dvd' . ($::i ? $::i + 1 : ''));
	devfs_rawdevice($_, 'rdvd' . ($::i ? $::i + 1 : '')) if $have_devfsd;
    } @dvds;

    if (!$have_devfsd) {
	my $raw_dev = alloc_raw_device($prefix, 'dvd');
	symlink($raw_dev, "$prefix/dev/rdvd");
    }
}

sub config_mtools {
    my ($prefix) = @_;
    my $file = "$prefix/etc/mtools.conf";
    -e $file or return;

    my ($f1, $f2) = detect_devices::floppies_dev();
    substInFile {
	s|drive a: file="(.*?)"|drive a: file="/dev/$f1"|;
	s|drive b: file="(.*?)"|drive b: file="/dev/$f2"| if $f2;
    } $file;
}


sub authentication_kinds() { 
    ('local', 'LDAP', 'NIS', 'winbind');
}
sub authentication_kind2description {
    my ($kind) = @_;
    ${{ local => N("Local files"), LDAP => N("LDAP"), NIS => N("NIS"), winbind => N("Windows Domain") }}{$kind};
}
sub authentication2authentication_kind {
    my ($authentication) = @_;
    (find { $authentication->{$_} } authentication_kinds()) || 'local';
}

sub ask_authentification_parameters {
    my ($in, $netc, $authentication, $authentication_kind) = @_;

    my $val = $authentication->{$authentication_kind};

    if ($authentication_kind eq 'LDAP') {
	$val ||= 'ldap.' . $netc->{DOMAINNAME};
	$netc->{LDAPDOMAIN} ||= join(',', map { "dc=$_" } split /\./, $netc->{DOMAINNAME});
	$in->ask_from('',
		     N("Authentication LDAP"),
		     [ { label => N("LDAP Base dn"), val => \$netc->{LDAPDOMAIN} },
		       { label => N("LDAP Server"), val => \$val },
		     ]) or return;
    } elsif ($authentication_kind eq 'NIS') { 
	$val ||= 'broadcast';
	$in->ask_from('',
		     N("Authentication NIS"),
		     [ { label => N("NIS Domain"), val => \ ($netc->{NISDOMAIN} ||= $netc->{DOMAINNAME}) },
		       { label => N("NIS Server"), val => \$val, list => ["broadcast"], not_edit => 0 },
		     ]) or return;
    } elsif ($authentication_kind eq 'winbind') {
	#- maybe we should browse the network like diskdrake --smb and get the 'doze server names in a list 
	#- but networking isn't setup yet necessarily
	$in->ask_warn('', N("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.\nYou will also need the username/password of a Domain Admin to join the machine to the Windows(TM) domain.\nIf networking is not yet enabled, Drakx will attempt to join the domain after the network setup step.\nShould 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.\nThe command 'wbinfo -t' will test whether your authentication secrets are good."));
	$in->ask_from('',
			N("Authentication Windows Domain"),
			[ { label => N("Windows Domain"), val => \ ($netc->{WINDOMAIN} ||= $netc->{DOMAINNAME}) },
			  { label => N("Domain Admin User Name"), val => \$val },
			  { label => N("Domain Admin Password"), val => \$authentication->{winpass}, hidden => 1 },
			]) or return;
    }
    #- keep only one authentication
    delete $authentication->{$_} foreach authentication_kinds();
    $authentication->{$authentication_kind} = $val;
    1;
}

sub set_authentication {
    my ($in, $netc, $authentication, $when_network_is_up) = @_;
    my ($shadow, $ldap, $nis, $winbind, $winpass) = @$authentication{qw(shadow LDAP NIS winbind winpass)};
    enableShadow() if $shadow;
    if ($ldap) {
	$in->do_pkgs->install(qw(chkauth openldap-clients nss_ldap pam_ldap autofs));
	run_program::rooted($::prefix, "/usr/sbin/chkauth", "ldap", "-D", $netc->{LDAPDOMAIN}, "-s", $ldap);
    } elsif ($nis) {
	#$o->pkg_install(qw(chkauth ypbind yp-tools net-tools));
	#run_program::rooted($::prefix, "/usr/sbin/chkauth", "yp", $domain, "-s", $nis);
	$in->do_pkgs->install("ypbind");
	my $domain = $netc->{NISDOMAIN};
	$domain || $nis ne "broadcast" or die \N("Can't use broadcast with no NIS domain");
	my $t = $domain ? "domain $domain" . ($nis ne "broadcast" && " server") : "ypserver";
	substInFile {
	    $_ = "#~$_" unless /^#/;
	    $_ .= "$t $nis\n" if eof;
	} "$::prefix/etc/yp.conf";
	require network;
	network::write_conf("$::prefix/etc/sysconfig/network", $netc);

	$when_network_is_up->(sub {
	    run_program::rooted($::prefix, 'nisdomainname', $domain);
	    run_program::rooted($::prefix, 'service', 'ypbind', 'restart');
	}) if !$::isInstall; #- TODO: also do it during install since nis can be useful to resolve domain names. Not done because 9.2-RC
    } elsif ($winbind) {
	my $domain = $netc->{WINDOMAIN};
	$domain =~ tr/a-z/A-Z/;

	$in->do_pkgs->install(qw(samba-winbind samba-common));
	{   #- setup pam
	    my $f = "$::prefix/etc/pam.d/system-auth";
	    cp_af($f, "$f.orig");
	    cp_af("$f-winbind", $f);
	}
	require network::smb;
	network::smb::write_smb_conf($domain);
	run_program::rooted($::prefix, "chkconfig", "--level", "35", "winbind", "on");
	mkdir_p("$::prefix/home/$domain");
	
	#- defer running smbpassword until the network is up
	$when_network_is_up->(sub {
	    run_program::rooted($::prefix, "/usr/bin/smbpasswd", "-j", $domain, "-U", $winbind . "%" . $winpass);
	});
    }
}

1;
ee checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "Inligting"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "Gids"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "Gids:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "Rekenaarnaam"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr "Toegang verkry :"
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr "Gebruikers Kode:"
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "Voorsien asseblief die inligting vir hierdie draadlose kaart:"
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr "Deel Gids"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr "Algemeen Opsies"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: ../tools/drakroam:61
-#, c-format
-msgid "No device found"
-msgstr "Geen toestelle gevind nie"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "Gedetaileerde inligting"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "Inkripsie"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, fuzzy, c-format
-msgid "Connecting..."
-msgstr "Konnekteer..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Disconnect"
-msgstr "Ontkoppel"
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "Konnekteer"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "Diskonnekteer..."
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "Konfigureer"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "Herlaai"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "Gebruiker"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "Naam van deelarea"
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "Nie 'n gids nie"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, c-format
msgid "Comment"
msgstr "Kommentaar"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "Blaai"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr "Publiek"
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, c-format
msgid "Writable"
msgstr "Skryfbaar"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "Skep"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "Herstel alle rugsteune"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "Lees"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "Skryf"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "Voeg gebruiker by"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "Voeg gebruiker by"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "Vergunnigs"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "Versteek lêers"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, c-format
msgid "Hide files"
msgstr "Versteek lêers"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "Voorkeure"
#
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, fuzzy, c-format
msgid "Force create mode"
msgstr "U model drukker"
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "PFS-groep"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "Verstekgebruiker"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "Drukker naam:"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "Roete"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, fuzzy, c-format
msgid "Printable"
msgstr "Aktiveer"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "Instruksie"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "Instruksie"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "Vergunnigs"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "Drukwerk"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "Model kaart:"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"
msgstr "Telnet-bediener"
#
-#: ../tools/draksambashare:142
+#: ../bin/draksambashare:142
#, fuzzy, c-format
msgid "Read List"
msgstr "Verwyder Lys"
-#: ../tools/draksambashare:143
+#: ../bin/draksambashare:143
#, fuzzy, c-format
msgid "Write List"
msgstr "Skryf"
-#: ../tools/draksambashare:148
+#: ../bin/draksambashare:148
#, fuzzy, c-format
msgid "Force Group"
msgstr "Groep:"
-#: ../tools/draksambashare:149
+#: ../bin/draksambashare:149
#, c-format
msgid "Force create group"
msgstr ""
-#: ../tools/draksambashare:165 ../tools/draksambashare:166
-#: ../tools/draksambashare:167
+#: ../bin/draksambashare:165 ../bin/draksambashare:166
+#: ../bin/draksambashare:167
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "Web-bediener"
-#: ../tools/draksambashare:169 ../tools/draksambashare:170
+#: ../bin/draksambashare:169 ../bin/draksambashare:170
#, c-format
msgid "/_About"
msgstr "/_Aangaande"
-#: ../tools/draksambashare:169
+#: ../bin/draksambashare:169
#, c-format
msgid "/_Report Bug"
msgstr "/_Raporteer 'n Fout"
-#: ../tools/draksambashare:170
+#: ../bin/draksambashare:170
#, c-format
msgid "/About..."
msgstr ""
-#: ../tools/draksambashare:173
+#: ../bin/draksambashare:173
#, fuzzy, c-format
msgid "Draksambashare"
msgstr "Samba-bediener"
-#: ../tools/draksambashare:175
+#: ../bin/draksambashare:175
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""
-#: ../tools/draksambashare:177
+#: ../bin/draksambashare:177
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""
-#: ../tools/draksambashare:179
+#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Online"
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
-#: ../tools/draksambashare:184
+#: ../bin/draksambashare:184
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
-#: ../tools/draksambashare:208
+#: ../bin/draksambashare:208
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""
-#: ../tools/draksambashare:209
+#: ../bin/draksambashare:209
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""
-#: ../tools/draksambashare:349 ../tools/draksambashare:549
-#: ../tools/draksambashare:670
+#: ../bin/draksambashare:349 ../bin/draksambashare:550
+#: ../bin/draksambashare:671
#, c-format
msgid "Open"
msgstr "Open"
-#: ../tools/draksambashare:352
+#: ../bin/draksambashare:352
#, fuzzy, c-format
msgid "DrakSamba add entry"
msgstr "Samba-bediener"
-#: ../tools/draksambashare:356
+#: ../bin/draksambashare:356
#, fuzzy, c-format
msgid "Add a share"
msgstr "Samba-bediener"
-#: ../tools/draksambashare:359
+#: ../bin/draksambashare:359
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "Naam van die sertifikaat"
-#: ../tools/draksambashare:360 ../tools/draksambashare:569
-#: ../tools/draksambashare:750
+#: ../bin/draksambashare:360 ../bin/draksambashare:570
+#: ../bin/draksambashare:751
#, c-format
msgid "Comment:"
msgstr "Kommentaar:"
-#: ../tools/draksambashare:372
+#: ../bin/draksambashare:373
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
-#: ../tools/draksambashare:379
+#: ../bin/draksambashare:380
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""
-#: ../tools/draksambashare:382 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draksambashare:383 ../bin/draksambashare:606
+#: ../bin/draksambashare:773
#, fuzzy, c-format
msgid "Please enter a Comment for this share."
msgstr "Voorsien asseblief die inligting vir hierdie draadlose kaart:"
-#: ../tools/draksambashare:413
+#: ../bin/draksambashare:414
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""
-#: ../tools/draksambashare:414
+#: ../bin/draksambashare:415
#, c-format
msgid "printers - all printers available"
msgstr ""
-#: ../tools/draksambashare:418
+#: ../bin/draksambashare:419
#, c-format
msgid "Add Special Printer share"
msgstr ""
-#: ../tools/draksambashare:421
+#: ../bin/draksambashare:422
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
-#: ../tools/draksambashare:428
+#: ../bin/draksambashare:429
#, c-format
msgid "A PDF generator already exists."
msgstr ""
-#: ../tools/draksambashare:452
+#: ../bin/draksambashare:453
#, c-format
msgid "Printers and print$ already exist."
msgstr ""
-#: ../tools/draksambashare:502
+#: ../bin/draksambashare:503
#, c-format
msgid "Congratulations"
msgstr "Geluk"
-#: ../tools/draksambashare:503
+#: ../bin/draksambashare:504
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""
-#: ../tools/draksambashare:518
+#: ../bin/draksambashare:519
#, c-format
msgid "Failed to add printers."
msgstr ""
-#: ../tools/draksambashare:533
+#: ../bin/draksambashare:534
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:552
+#: ../bin/draksambashare:553
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""
-#: ../tools/draksambashare:565
+#: ../bin/draksambashare:566
#, c-format
msgid "Printer share"
msgstr ""
-#: ../tools/draksambashare:568
+#: ../bin/draksambashare:569
#, c-format
msgid "Printer name:"
msgstr "Drukker naam:"
-#: ../tools/draksambashare:574 ../tools/draksambashare:755
+#: ../bin/draksambashare:575 ../bin/draksambashare:756
#, c-format
msgid "Writable:"
msgstr "Skryfbaar :"
-#: ../tools/draksambashare:575 ../tools/draksambashare:756
+#: ../bin/draksambashare:576 ../bin/draksambashare:757
#, fuzzy, c-format
msgid "Browseable:"
msgstr "Blaai"
-#: ../tools/draksambashare:580
+#: ../bin/draksambashare:581
#, c-format
msgid "Advanced options"
msgstr ""
-#: ../tools/draksambashare:582
+#: ../bin/draksambashare:583
#, fuzzy, c-format
msgid "Printer access"
msgstr "Internettoegang"
-#: ../tools/draksambashare:586
+#: ../bin/draksambashare:587
#, c-format
msgid "Guest ok:"
msgstr ""
-#: ../tools/draksambashare:587
+#: ../bin/draksambashare:588
#, fuzzy, c-format
msgid "Create mode:"
msgstr "Model kaart:"
-#: ../tools/draksambashare:591
+#: ../bin/draksambashare:592
#, c-format
msgid "Printer command"
msgstr ""
-#: ../tools/draksambashare:593
+#: ../bin/draksambashare:594
#, c-format
msgid "Print command:"
msgstr "Druk opdrag:"
-#: ../tools/draksambashare:594
+#: ../bin/draksambashare:595
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "Instruksie"
-#: ../tools/draksambashare:595
+#: ../bin/draksambashare:596
#, c-format
msgid "Printing:"
msgstr "Besig om te druk:"
-#: ../tools/draksambashare:611
+#: ../bin/draksambashare:612
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:673
+#: ../bin/draksambashare:674
#, c-format
msgid "DrakSamba entry"
msgstr ""
-#: ../tools/draksambashare:678
+#: ../bin/draksambashare:679
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:701
+#: ../bin/draksambashare:702
#, fuzzy, c-format
msgid "Samba user access"
msgstr "Samba-bediener"
-#: ../tools/draksambashare:709
+#: ../bin/draksambashare:710
#, fuzzy, c-format
msgid "Mask options"
msgstr "Basiese opsies"
-#: ../tools/draksambashare:723
+#: ../bin/draksambashare:724
#, c-format
msgid "Display options"
msgstr "Vertoon opsies:"
-#: ../tools/draksambashare:745
+#: ../bin/draksambashare:746
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "Nie 'n gids nie"
-#: ../tools/draksambashare:748
+#: ../bin/draksambashare:749
#, c-format
msgid "Share name:"
msgstr "Naam van deelarea :"
-#: ../tools/draksambashare:754
+#: ../bin/draksambashare:755
#, c-format
msgid "Public:"
msgstr "Publiek :"
-#: ../tools/draksambashare:778
+#: ../bin/draksambashare:779
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:785
+#: ../bin/draksambashare:786
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""
-#: ../tools/draksambashare:889
+#: ../bin/draksambashare:890
#, c-format
msgid "Add Samba user"
msgstr ""
-#: ../tools/draksambashare:904
+#: ../bin/draksambashare:905
#, fuzzy, c-format
msgid "User information"
msgstr "Gebruik my Windows-partisie"
-#: ../tools/draksambashare:906
+#: ../bin/draksambashare:907
#, c-format
msgid "User name:"
msgstr "Gebruiker naam:"
-#: ../tools/draksambashare:907
+#: ../bin/draksambashare:908
#, c-format
msgid "Password:"
msgstr "Wagwoord:"
-#: ../tools/draksambashare:1021
+#: ../bin/draksambashare:1022
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "Konfigurasie van e-pos alarm"
-#: ../tools/draksambashare:1109
+#: ../bin/draksambashare:1110
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""
-#: ../tools/draksambashare:1118
+#: ../bin/draksambashare:1119
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""
-#: ../tools/draksambashare:1125
+#: ../bin/draksambashare:1126
#, c-format
msgid "File share"
msgstr ""
-#: ../tools/draksambashare:1140
+#: ../bin/draksambashare:1141
#, c-format
msgid "Failed to Modify."
msgstr ""
-#: ../tools/draksambashare:1149
+#: ../bin/draksambashare:1150
#, c-format
msgid "Failed to remove."
msgstr ""
-#: ../tools/draksambashare:1156
+#: ../bin/draksambashare:1157
#, c-format
msgid "Printers"
msgstr "Drukkers"
-#: ../tools/draksambashare:1168
+#: ../bin/draksambashare:1169
#, c-format
msgid "Failed to add user."
msgstr ""
-#: ../tools/draksambashare:1177
+#: ../bin/draksambashare:1178
#, c-format
msgid "Failed to change user password."
msgstr ""
-#: ../tools/draksambashare:1189
+#: ../bin/draksambashare:1190
#, c-format
msgid "Failed to delete user."
msgstr ""
-#: ../tools/draksambashare:1194
+#: ../bin/draksambashare:1195
#, c-format
msgid "Userdrake"
msgstr "Userdrake"
-#: ../tools/draksambashare:1202
+#: ../bin/draksambashare:1203
#, c-format
msgid "Samba Users"
msgstr ""
-#: ../tools/draksambashare:1211
+#: ../bin/draksambashare:1212
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""
-#: ../tools/drakvpn-old:65
+#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr "DrakVPN"
-#: ../tools/drakvpn-old:87
+#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr "Die VPN-konneksie is geaktiveer"
-#: ../tools/drakvpn-old:88
+#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4367,37 +2247,37 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../tools/drakvpn-old:93
+#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr "deaktiveer"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119 ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../tools/drakvpn-old:97
+#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr "Deaktiveer VPN..."
-#: ../tools/drakvpn-old:106
+#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr "Die VPN-konneksie is nou gedeaktiveer."
-#: ../tools/drakvpn-old:113
+#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr "VPN-konneksie is tans gesper"
-#: ../tools/drakvpn-old:114
+#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4412,27 +2292,27 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr "aktiveer"
-#: ../tools/drakvpn-old:127
+#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr "VPN word geaktiveer..."
-#: ../tools/drakvpn-old:133
+#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr "Die VPN-konneksie is nou geaktiveer."
-#: ../tools/drakvpn-old:147 ../tools/drakvpn-old:164
+#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr "Eenvoudige VPN opstelling."
-#: ../tools/drakvpn-old:148
+#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
@@ -4459,7 +2339,7 @@ msgstr ""
"Maak tog seker dat u netwerk/Internet reeds opgestel is deur\n"
"drakconnect te grbruik alvorens u voortgaan."
-#: ../tools/drakvpn-old:165
+#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
@@ -4486,27 +2366,27 @@ msgstr ""
"Please read AT LEAST the ipsec-howto docs\n"
"before going any further."
-#: ../tools/drakvpn-old:208
+#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr "Sekuriteits Reels"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr "IKE daemon racoon"
-#: ../tools/drakvpn-old:224
+#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr "Konfigurasie-lêer"
-#: ../tools/drakvpn-old:225
+#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
@@ -4525,12 +2405,12 @@ msgstr ""
"\n"
"What would you like to configure?\n"
-#: ../tools/drakvpn-old:245 ../tools/drakvpn-old:382
+#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr ", %s inskrywings"
-#: ../tools/drakvpn-old:246
+#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
@@ -4553,32 +2433,32 @@ msgstr ""
"\n"
"Wat verkies u om te doen?\n"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr "Vertoon"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "Redigeer"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr "Stoor"
-#: ../tools/drakvpn-old:267 ../tools/drakvpn-old:271 ../tools/drakvpn-old:406
-#: ../tools/drakvpn-old:410
+#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
+#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr "Vertoon konfigurasie"
-#: ../tools/drakvpn-old:272
+#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
@@ -4593,7 +2473,7 @@ msgstr ""
"\n"
"Gaan terug en kies \"Voeg by\" .\n"
-#: ../tools/drakvpn-old:301
+#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
@@ -4608,12 +2488,12 @@ msgstr ""
"\n"
"Kies \"gaan voort\" sodra u klaar die data voorsien het.\n"
-#: ../tools/drakvpn-old:333 ../tools/drakvpn-old:523
+#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr "Redigeer die keuse"
-#: ../tools/drakvpn-old:334
+#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4626,13 +2506,13 @@ msgstr ""
"U kan die een om te redigeer hier onder kies\n"
"en dan op \"Volgende\" klik.\n"
-#: ../tools/drakvpn-old:337 ../tools/drakvpn-old:357 ../tools/drakvpn-old:528
-#: ../tools/drakvpn-old:574
+#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
+#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr "Seksienaam"
-#: ../tools/drakvpn-old:344
+#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
@@ -4647,12 +2527,12 @@ msgstr ""
"\n"
"Kies \"gaan voort\" sodra u klaar is daarmee.\n"
-#: ../tools/drakvpn-old:353 ../tools/drakvpn-old:570
+#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr "Verwyder seksie"
-#: ../tools/drakvpn-old:354 ../tools/drakvpn-old:571
+#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4665,7 +2545,7 @@ msgstr ""
"U kan hier onder die een kies om te verwyder\n"
"klik dan op volgende.\n"
-#: ../tools/drakvpn-old:383
+#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
@@ -4688,7 +2568,7 @@ msgstr ""
" - remove \t\t (remove an existing section)\n"
" - commit \t\t (writes the changes to the real file)"
-#: ../tools/drakvpn-old:411
+#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
@@ -4703,12 +2583,12 @@ msgstr ""
"\n"
"Gaan terug en kies \"Konfigureer\" .\n"
-#: ../tools/drakvpn-old:425
+#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr "racoon.conf entries"
-#: ../tools/drakvpn-old:426
+#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
@@ -4729,22 +2609,22 @@ msgstr ""
"\n"
"Choose the section you would like to add.\n"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr "path"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr "remote"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr "sainfo"
-#: ../tools/drakvpn-old:440
+#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
@@ -4759,12 +2639,12 @@ msgstr ""
"\n"
"Put your mouse over the certificate entry to obtain online help."
-#: ../tools/drakvpn-old:443
+#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr "path type"
-#: ../tools/drakvpn-old:447
+#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
@@ -4807,12 +2687,12 @@ msgstr ""
"of the identifier and the shared secret key which are used at\n"
"Pre-shared key authentication method in phase 1."
-#: ../tools/drakvpn-old:467 ../tools/drakvpn-old:560
+#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr "real file"
-#: ../tools/drakvpn-old:490
+#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4827,7 +2707,7 @@ msgstr ""
"You can now choose the remote settings.\n"
"Choose continue or previous when you are done.\n"
-#: ../tools/drakvpn-old:507
+#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4842,7 +2722,7 @@ msgstr ""
"You can now choose the sainfo settings.\n"
"Choose continue or previous when you are done.\n"
-#: ../tools/drakvpn-old:524
+#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4855,7 +2735,7 @@ msgstr ""
"U kan vanaf die onderstaande lys een kies om\n"
"te redigeer, klik dan op volgende.\n"
-#: ../tools/drakvpn-old:535
+#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4872,7 +2752,7 @@ msgstr ""
"\n"
"Kies \"Gaan Voort\" sodra u klaar die data voorsien het.\n"
-#: ../tools/drakvpn-old:544
+#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4887,7 +2767,7 @@ msgstr ""
"\n"
"Kies \"Gaan Voort\" om die veranderinge te stoor."
-#: ../tools/drakvpn-old:552
+#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
@@ -4910,17 +2790,17 @@ msgstr ""
"\n"
"Kies \"gaan voort\" of \"vorige\" sodra u klaar is.\n"
-#: ../tools/drakvpn-old:559
+#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr "path_type"
-#: ../tools/drakvpn-old:599
+#: ../bin/drakvpn-old:599
#, c-format
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../tools/drakvpn-old:600
+#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -4939,12 +2819,12 @@ msgstr ""
"U moet seker maak dat die shorewall se tonnels\n"
"gedeelte opgestel is."
-#: ../tools/drakvpn-old:620
+#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""
-#: ../tools/drakvpn-old:621
+#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4985,12 +2865,12 @@ msgstr ""
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.1.0/24 is the source address"
-#: ../tools/drakvpn-old:638
+#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr "Sainfo source protocol"
-#: ../tools/drakvpn-old:639
+#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -5025,12 +2905,12 @@ msgstr ""
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\tthe first 'any' allows any protocol for the source"
-#: ../tools/drakvpn-old:653
+#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr "Sainfo destination address"
-#: ../tools/drakvpn-old:654
+#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -5071,12 +2951,12 @@ msgstr ""
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.2.0/24 is the destination address"
-#: ../tools/drakvpn-old:671
+#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr "Sainfo destination protocol"
-#: ../tools/drakvpn-old:672
+#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -5111,12 +2991,12 @@ msgstr ""
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\tthe last 'any' allows any protocol for the destination"
-#: ../tools/drakvpn-old:686
+#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr "PFS-groep"
-#: ../tools/drakvpn-old:688
+#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
@@ -5131,12 +3011,12 @@ msgstr ""
"group is one of the following: modp768, modp1024, modp1536.\n"
"Or you can define 1, 2, or 5 as the DH group number."
-#: ../tools/drakvpn-old:693
+#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr "Lifetime number"
-#: ../tools/drakvpn-old:694
+#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -5173,12 +3053,12 @@ msgstr ""
"\n"
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
-#: ../tools/drakvpn-old:710
+#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr "Lifetime unit"
-#: ../tools/drakvpn-old:712
+#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -5217,32 +3097,32 @@ msgstr ""
"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
"'hour'.\n"
-#: ../tools/drakvpn-old:728 ../tools/drakvpn-old:813
+#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, c-format
msgid "Encryption algorithm"
msgstr "Enkripsie-algoritme"
-#: ../tools/drakvpn-old:730
+#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr "Magtigings-algoritme"
-#: ../tools/drakvpn-old:732
+#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr "Kompressie-algoritme"
-#: ../tools/drakvpn-old:733
+#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr ""
-#: ../tools/drakvpn-old:740
+#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr "Remote"
-#: ../tools/drakvpn-old:741
+#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
@@ -5267,12 +3147,12 @@ msgstr ""
"remote anonymous\n"
"remote ::1 [8000]"
-#: ../tools/drakvpn-old:749
+#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr "Exchange mode"
-#: ../tools/drakvpn-old:751
+#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
@@ -5289,22 +3169,22 @@ msgstr ""
"modes are acceptable. The first exchange mode is what\n"
"racoon uses when it is the initiator.\n"
-#: ../tools/drakvpn-old:757
+#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr "Generate policy"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr "af"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "op"
-#: ../tools/drakvpn-old:759
+#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder. Therefore you\n"
@@ -5337,12 +3217,12 @@ msgstr ""
"tiator and the responder. This directive is ignored in\n"
"the initiator case. The default value is off."
-#: ../tools/drakvpn-old:773
+#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr "Pasief"
-#: ../tools/drakvpn-old:775
+#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
@@ -5352,47 +3232,47 @@ msgstr ""
"Indie u nie die onderhandeling wil afskop nie, skakel die\n"
"aan. Die verstek is af. Dit is handig vir 'n bediener."
-#: ../tools/drakvpn-old:778
+#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr "Tipe sertifikaat"
-#: ../tools/drakvpn-old:780
+#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr "My sertifikaat"
-#: ../tools/drakvpn-old:781
+#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr "Naam van die sertifikaat"
-#: ../tools/drakvpn-old:782
+#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr "My privaat sleutel"
-#: ../tools/drakvpn-old:783
+#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr "Naam van die privaat-sleutel"
-#: ../tools/drakvpn-old:784
+#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr "Eweknie se sertifikaat"
-#: ../tools/drakvpn-old:785
+#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr "Naam van die eweknie se sertifikaat"
-#: ../tools/drakvpn-old:786
+#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr "Verivïeer Sertifikaat"
-#: ../tools/drakvpn-old:788
+#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
@@ -5401,12 +3281,12 @@ msgstr ""
"Indien u nie die eweknie se sertifikaat wil verivïeer nie\n"
"sit hierdie dan af. Die verstek is aan."
-#: ../tools/drakvpn-old:790
+#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr "My identifiseerder"
-#: ../tools/drakvpn-old:791
+#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
@@ -5455,17 +3335,17 @@ msgstr ""
"\n"
"my_identifier user_fqdn \"myemail@mydomain.com\""
-#: ../tools/drakvpn-old:811
+#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr "Peers identifier"
-#: ../tools/drakvpn-old:812
+#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr "Voorstelling"
-#: ../tools/drakvpn-old:814
+#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
@@ -5484,393 +3364,395 @@ msgstr ""
"\n"
"For other transforms, this statement should not be used."
-#: ../tools/drakvpn-old:821
+#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr "Hash-algoritme"
-#: ../tools/drakvpn-old:822
+#: ../bin/drakvpn-old:822
#, c-format
msgid "Authentication method"
msgstr "Magtigings-metode"
-#: ../tools/drakvpn-old:823
+#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr "DH-groep"
-#: ../tools/drakvpn-old:830
+#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "Instruksie"
-#: ../tools/drakvpn-old:831
+#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr "Bron se IP-reeks"
-#: ../tools/drakvpn-old:832
+#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr "bestemming se IP-reeks"
-#: ../tools/drakvpn-old:833
+#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr "Bo-laag protokol"
-#: ../tools/drakvpn-old:833 ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr ""
-#: ../tools/drakvpn-old:835
+#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "Flag"
-#: ../tools/drakvpn-old:836
+#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "Rigting"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr "IPsec-reels"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "Modus"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr ""
-#: ../tools/drakvpn-old:842
+#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr "Bron/bestemming"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "Vlak"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "verstek"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr ""
-#: ../tools/net_applet:61
+#: ../bin/net_applet:62
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "Netwerkkoppelvlak"
-#: ../tools/net_applet:62
+#: ../bin/net_applet:63
#, c-format
msgid "IP address: %s"
msgstr "IP-adres: %s"
-#: ../tools/net_applet:63
+#: ../bin/net_applet:64
#, c-format
msgid "Gateway: %s"
msgstr "Deurgang: %s"
-#: ../tools/net_applet:64
+#: ../bin/net_applet:65
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""
-#: ../tools/net_applet:66
+#: ../bin/net_applet:67
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "Netwerkkoppelvlak"
-#: ../tools/net_applet:74 ../tools/net_monitor:468
+#: ../bin/net_applet:75 ../bin/net_monitor:468
#, c-format
msgid "Connect %s"
msgstr "Konnekteer %s"
-#: ../tools/net_applet:75 ../tools/net_monitor:468
+#: ../bin/net_applet:76 ../bin/net_monitor:468
#, c-format
msgid "Disconnect %s"
msgstr "Diskonnekteer %s"
-#: ../tools/net_applet:76
+#: ../bin/net_applet:77
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "Herstel Deur Netwerk"
-#: ../tools/net_applet:78
+#: ../bin/net_applet:79
#, c-format
msgid "Manage wireless networks"
msgstr ""
-#: ../tools/net_applet:80
+#: ../bin/net_applet:81
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "Kabelkonneksie"
-#: ../tools/net_applet:84
+#: ../bin/net_applet:85
#, c-format
msgid "Configure Network"
msgstr "Konfigureer die Netwerk"
-#: ../tools/net_applet:86
+#: ../bin/net_applet:87
#, fuzzy, c-format
msgid "Watched interface"
msgstr "Koppelvlakke"
-#: ../tools/net_applet:87 ../tools/net_applet:88 ../tools/net_applet:90
+#: ../bin/net_applet:88 ../bin/net_applet:89 ../bin/net_applet:91
#, c-format
msgid "Auto-detect"
msgstr "Gebruik outospeuring"
-#: ../tools/net_applet:95
+#: ../bin/net_applet:96
#, c-format
msgid "Active interfaces"
msgstr ""
-#: ../tools/net_applet:119
+#: ../bin/net_applet:120
#, c-format
msgid "Profiles"
msgstr "Profille"
-#: ../tools/net_applet:137
-#, c-format
-msgid "Get Online Help"
-msgstr ""
+#: ../bin/net_applet:130 ../lib/network/connection.pm:149
+#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
+#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
+#, fuzzy, c-format
+msgid "VPN connection"
+msgstr "LAN-konneksie"
-#: ../tools/net_applet:318
+#: ../bin/net_applet:319
#, fuzzy, c-format
msgid "Network connection"
msgstr "Netwerk Opsies:"
-#: ../tools/net_applet:438
+#: ../bin/net_applet:443
#, c-format
msgid "More networks"
msgstr ""
-#: ../tools/net_applet:465
+#: ../bin/net_applet:470
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: ../tools/net_applet:470
+#: ../bin/net_applet:475
#, c-format
msgid "Always launch on startup"
msgstr ""
-#: ../tools/net_applet:475
+#: ../bin/net_applet:480
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "Draadlose konneksie"
-#: ../tools/net_applet:482 ../tools/net_monitor:96
+#: ../bin/net_applet:487 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "Verstellings"
-#: ../tools/net_applet:557
+#: ../bin/net_applet:562
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../tools/net_applet:574
+#: ../bin/net_applet:579
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "Wil Taai-sleutels aktiveer?"
-#: ../tools/net_applet:577
+#: ../bin/net_applet:582
#, fuzzy, c-format
msgid "Attack details"
msgstr "Geen Detail"
-#: ../tools/net_applet:581
+#: ../bin/net_applet:586
#, fuzzy, c-format
msgid "Attack time: %s"
msgstr "Aktiveer %s"
-#: ../tools/net_applet:582
+#: ../bin/net_applet:587
#, c-format
msgid "Network interface: %s"
msgstr "Netwerkkoppelvlak: %s"
-#: ../tools/net_applet:583
+#: ../bin/net_applet:588
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "tipe: %s"
-#: ../tools/net_applet:584
+#: ../bin/net_applet:589
#, c-format
msgid "Protocol: %s"
msgstr "Protokol: %s"
-#: ../tools/net_applet:585
+#: ../bin/net_applet:590
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "Deurgang se IP-adres"
-#: ../tools/net_applet:586
+#: ../bin/net_applet:591
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "Stel gasheer naam %s: "
-#: ../tools/net_applet:589
+#: ../bin/net_applet:594
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "Diens Bestuurder"
-#: ../tools/net_applet:590
+#: ../bin/net_applet:595
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "Poort: %s"
-#: ../tools/net_applet:592
+#: ../bin/net_applet:597
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""
-#: ../tools/net_applet:597
+#: ../bin/net_applet:602
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""
-#: ../tools/net_applet:612
+#: ../bin/net_applet:617
#, c-format
msgid "Ignore"
msgstr "Ignoreer"
-#: ../tools/net_applet:630 ../tools/net_applet:643
+#: ../bin/net_applet:635 ../bin/net_applet:648
#, fuzzy, c-format
msgid "Interactive Firewall: new service"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../tools/net_applet:654
+#: ../bin/net_applet:658
#, fuzzy, c-format
msgid "Do you want to open this service?"
msgstr "Wil u die konfigurasie toets?"
-#: ../tools/net_applet:657
+#: ../bin/net_applet:661
#, fuzzy, c-format
msgid "Remember this answer"
msgstr "Onthou hierdie wagwoord"
-#: ../tools/net_monitor:60 ../tools/net_monitor:65
+#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, c-format
msgid "Network Monitoring"
msgstr "Monitor van Netwerk"
-#: ../tools/net_monitor:101
+#: ../bin/net_monitor:101
#, c-format
msgid "Global statistics"
msgstr "Globale Statistieke"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr "Onmidelike"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Average"
msgstr "Gemiddeld"
-#: ../tools/net_monitor:105
+#: ../bin/net_monitor:105
#, c-format
msgid ""
"Sending\n"
"speed:"
msgstr "Stuurspoed:"
-#: ../tools/net_monitor:105 ../tools/net_monitor:106 ../tools/net_monitor:111
+#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "Onbekend"
-#: ../tools/net_monitor:106
+#: ../bin/net_monitor:106
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr "Ontvangspoed:"
-#: ../tools/net_monitor:110
+#: ../bin/net_monitor:110
#, c-format
msgid ""
"Connection\n"
"time: "
msgstr "Konneksietyd: "
-#: ../tools/net_monitor:117
+#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""
-#: ../tools/net_monitor:136
+#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr "Net 'n oomblik, konneksie word getoets..."
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Disconnecting from Internet "
msgstr "Diskonnekteer van die Internet "
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Connecting to Internet "
msgstr "Konnekteer aan die Internet"
-#: ../tools/net_monitor:229
+#: ../bin/net_monitor:229
#, c-format
msgid "Disconnection from Internet failed."
msgstr "Probleme met die opbreek van die Internerkonneksie."
-#: ../tools/net_monitor:230
+#: ../bin/net_monitor:230
#, c-format
msgid "Disconnection from Internet complete."
msgstr "Ontkoppeling van Internet voltooi."
-#: ../tools/net_monitor:232
+#: ../bin/net_monitor:232
#, c-format
msgid "Connection complete."
msgstr "Voltooide konneksie."
-#: ../tools/net_monitor:233
+#: ../bin/net_monitor:233
#, c-format
msgid ""
"Connection failed.\n"
@@ -5879,32 +3761,32 @@ msgstr ""
"Probleme met die Konneksie\n"
"Maak tog seker van u konfigurasie in die 'Mandriva Linux Control Center'."
-#: ../tools/net_monitor:338
+#: ../bin/net_monitor:338
#, c-format
msgid "Color configuration"
msgstr "Kleurkonfigurasie"
-#: ../tools/net_monitor:395 ../tools/net_monitor:407
+#: ../bin/net_monitor:395 ../bin/net_monitor:407
#, c-format
msgid "sent: "
msgstr "stuur: "
-#: ../tools/net_monitor:398 ../tools/net_monitor:411
+#: ../bin/net_monitor:398 ../bin/net_monitor:411
#, c-format
msgid "received: "
msgstr "ontvang: "
-#: ../tools/net_monitor:401
+#: ../bin/net_monitor:401
#, c-format
msgid "average"
msgstr "gemiddeld"
-#: ../tools/net_monitor:404
+#: ../bin/net_monitor:404
#, c-format
msgid "Local measure"
msgstr "Plaaslike meting"
-#: ../tools/net_monitor:461
+#: ../bin/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
@@ -5913,7 +3795,2137 @@ msgstr ""
"Pasop, daar is 'n ander internet konneksie, wat moontlik u netwerk gebruik, "
"bespeur"
-#: ../tools/net_monitor:472
+#: ../bin/net_monitor:472
#, c-format
msgid "No internet connection configured"
msgstr "Geen internetkonneksie gekonfigureer"
+
+#: ../lib/network/connection.pm:16
+#, c-format
+msgid "Unknown connection type"
+msgstr "Onbekende konneksie tipe"
+
+#: ../lib/network/connection.pm:115
+#, c-format
+msgid "Network access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:116
+#, c-format
+msgid "Access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:117
+#, c-format
+msgid "Address settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
+#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
+#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
+#, c-format
+msgid "None"
+msgstr "Geen"
+
+#: ../lib/network/connection.pm:163
+#, c-format
+msgid "Allow users to manage the connection"
+msgstr ""
+
+#: ../lib/network/connection.pm:164
+#, c-format
+msgid "Start the connection at boot"
+msgstr ""
+
+#: ../lib/network/connection.pm:230
+#, fuzzy, c-format
+msgid "Link detected on interface %s"
+msgstr "(op poort %s bespeur)"
+
+#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:273
+#, c-format
+msgid "Link beat lost on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:13
+#, c-format
+msgid "Cable"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:14
+#, fuzzy, c-format
+msgid "Cable modem"
+msgstr "Model kaart:"
+
+#: ../lib/network/connection/cable.pm:45
+#, c-format
+msgid "Use BPALogin (needed for Telstra)"
+msgstr ""
+
+#: ../lib/network/connection/cellular.pm:47
+#, c-format
+msgid "Access Point Name"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:10
+#, c-format
+msgid "Bluetooth"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:11
+#, c-format
+msgid "Bluetooth Dial Up Networking"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:8
+#, c-format
+msgid "GPRS/Edge/3G"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:67
+#: ../lib/network/vpn/openvpn.pm:391
+#, c-format
+msgid "PIN number"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:130
+#, fuzzy, c-format
+msgid "Unable to open device %s"
+msgstr "Kon nie vurk nie: %s"
+
+#: ../lib/network/connection/cellular_card.pm:155
+#, fuzzy, c-format
+msgid "Please check that your SIM card is inserted."
+msgstr ""
+"\n"
+" Merk asseblief al die opsies wat u benodig.\n"
+
+#: ../lib/network/connection/cellular_card.pm:161
+#, c-format
+msgid ""
+"You entered a wrong PIN code.\n"
+"Entering the wrong PIN code multiple times may lock your SIM card!"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:12
+#, c-format
+msgid "DVB"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:13
+#, c-format
+msgid "Satellite (DVB)"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:56
+#, c-format
+msgid "Adapter card"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:57
+#, c-format
+msgid "Net demux"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:58
+#, c-format
+msgid "PID"
+msgstr "Pid"
+
+#: ../lib/network/connection/ethernet.pm:10
+#, c-format
+msgid "Ethernet"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:53
+#, c-format
+msgid "Unable to find network interface for selected device (using %s driver)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#, c-format
+msgid "Manual configuration"
+msgstr "Selfdoen konfigurasie"
+
+#: ../lib/network/connection/ethernet.pm:62
+#, c-format
+msgid "Automatic IP (BOOTP/DHCP)"
+msgstr "Outomatiese IP (BOOTP/DHCP)"
+
+#: ../lib/network/connection/ethernet.pm:116
+#, fuzzy, c-format
+msgid "IP settings"
+msgstr "PLL verstelling:"
+
+#: ../lib/network/connection/ethernet.pm:129
+#, 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)."
+msgstr ""
+"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
+"Elke item moet as 'n IP-adres in dot-desimalenotasie\n"
+"(1.2.3.4) gegee word."
+
+#: ../lib/network/connection/ethernet.pm:138
+#, c-format
+msgid "DNS server 1"
+msgstr "DNS-bediener 1"
+
+#: ../lib/network/connection/ethernet.pm:139
+#, c-format
+msgid "DNS server 2"
+msgstr "DNS-bediener 2"
+
+#: ../lib/network/connection/ethernet.pm:140
+#, c-format
+msgid "Search domain"
+msgstr "Deursoek domein"
+
+#: ../lib/network/connection/ethernet.pm:141
+#, c-format
+msgid "By default search domain will be set from the fully-qualified host name"
+msgstr ""
+"Die domein om te deursoek, sal by verstek vanaf die \"fully-qualified host "
+"name\" FQHN af kom"
+
+#: ../lib/network/connection/ethernet.pm:149
+#, c-format
+msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:170
+#, c-format
+msgid "Warning: IP address %s is usually reserved!"
+msgstr "Pasop: IP-adres %s is alreeds gebruik !"
+
+#: ../lib/network/connection/ethernet.pm:176
+#, c-format
+msgid "%s already in use\n"
+msgstr "%s is alreeds in gebruik\n"
+
+#: ../lib/network/connection/ethernet.pm:224
+#, c-format
+msgid "Enable IPv6 to IPv4 tunnel"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:272
+#, c-format
+msgid "Link beat detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:275
+#, c-format
+msgid "Requesting a network address on interface %s (%s protocol)..."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:276
+#, c-format
+msgid "Got a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:277
+#, c-format
+msgid "Failed to get a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:8
+#, c-format
+msgid "ISDN"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
+#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
+#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
+#: ../lib/network/netconnect.pm:562
+#, c-format
+msgid "Unlisted - edit manually"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "I do not know"
+msgstr "Ek weet nie"
+
+#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "USB"
+msgstr "USB"
+
+#. -PO: POTS means "Plain old telephone service"
+#: ../lib/network/connection/pots.pm:10
+#, c-format
+msgid "POTS"
+msgstr ""
+
+#. -PO: POTS means "Plain old telephone service"
+#. -PO: remove it if it doesn't have an equivalent in your language
+#. -PO: for example, in French, it can be translated as "RTC"
+#: ../lib/network/connection/pots.pm:16
+#, c-format
+msgid "Analog telephone modem (POTS)"
+msgstr ""
+
+#: ../lib/network/connection/providers/cellular.pm:13
+#: ../lib/network/connection/providers/cellular.pm:18
+#: ../lib/network/connection/providers/cellular.pm:23
+#: ../lib/network/connection/providers/xdsl.pm:492
+#: ../lib/network/connection/providers/xdsl.pm:504
+#: ../lib/network/connection/providers/xdsl.pm:516
+#: ../lib/network/connection/providers/xdsl.pm:528
+#: ../lib/network/connection/providers/xdsl.pm:539
+#: ../lib/network/connection/providers/xdsl.pm:551
+#: ../lib/network/connection/providers/xdsl.pm:563
+#: ../lib/network/connection/providers/xdsl.pm:575
+#: ../lib/network/connection/providers/xdsl.pm:588
+#: ../lib/network/connection/providers/xdsl.pm:599
+#: ../lib/network/connection/providers/xdsl.pm:610
+#: ../lib/network/netconnect.pm:33
+#, c-format
+msgid "France"
+msgstr "Frankryk"
+
+#: ../lib/network/connection/providers/xdsl.pm:47
+#: ../lib/network/connection/providers/xdsl.pm:57
+#, c-format
+msgid "Algeria"
+msgstr "Algerië"
+
+#: ../lib/network/connection/providers/xdsl.pm:67
+#: ../lib/network/connection/providers/xdsl.pm:77
+#, c-format
+msgid "Argentina"
+msgstr "Argentinië"
+
+#: ../lib/network/connection/providers/xdsl.pm:87
+#: ../lib/network/connection/providers/xdsl.pm:96
+#: ../lib/network/connection/providers/xdsl.pm:105
+#, c-format
+msgid "Austria"
+msgstr "Oostenryk"
+
+#: ../lib/network/connection/providers/xdsl.pm:114
+#: ../lib/network/connection/providers/xdsl.pm:124
+#: ../lib/network/connection/providers/xdsl.pm:134
+#, c-format
+msgid "Australia"
+msgstr "Australië"
+
+#: ../lib/network/connection/providers/xdsl.pm:144
+#: ../lib/network/connection/providers/xdsl.pm:153
+#: ../lib/network/connection/providers/xdsl.pm:164
+#: ../lib/network/connection/providers/xdsl.pm:173
+#: ../lib/network/connection/providers/xdsl.pm:182
+#: ../lib/network/netconnect.pm:36
+#, c-format
+msgid "Belgium"
+msgstr "België"
+
+#: ../lib/network/connection/providers/xdsl.pm:191
+#: ../lib/network/connection/providers/xdsl.pm:201
+#: ../lib/network/connection/providers/xdsl.pm:210
+#: ../lib/network/connection/providers/xdsl.pm:219
+#, c-format
+msgid "Brazil"
+msgstr "Brasilië"
+
+#: ../lib/network/connection/providers/xdsl.pm:228
+#: ../lib/network/connection/providers/xdsl.pm:237
+#, c-format
+msgid "Bulgaria"
+msgstr "Bulgaars"
+
+#: ../lib/network/connection/providers/xdsl.pm:246
+#: ../lib/network/connection/providers/xdsl.pm:255
+#: ../lib/network/connection/providers/xdsl.pm:264
+#: ../lib/network/connection/providers/xdsl.pm:273
+#: ../lib/network/connection/providers/xdsl.pm:282
+#: ../lib/network/connection/providers/xdsl.pm:291
+#: ../lib/network/connection/providers/xdsl.pm:300
+#: ../lib/network/connection/providers/xdsl.pm:309
+#: ../lib/network/connection/providers/xdsl.pm:318
+#: ../lib/network/connection/providers/xdsl.pm:327
+#: ../lib/network/connection/providers/xdsl.pm:336
+#: ../lib/network/connection/providers/xdsl.pm:345
+#: ../lib/network/connection/providers/xdsl.pm:354
+#: ../lib/network/connection/providers/xdsl.pm:363
+#: ../lib/network/connection/providers/xdsl.pm:372
+#: ../lib/network/connection/providers/xdsl.pm:381
+#: ../lib/network/connection/providers/xdsl.pm:390
+#: ../lib/network/connection/providers/xdsl.pm:399
+#: ../lib/network/connection/providers/xdsl.pm:408
+#: ../lib/network/connection/providers/xdsl.pm:417
+#, c-format
+msgid "China"
+msgstr "China"
+
+#: ../lib/network/connection/providers/xdsl.pm:426
+#: ../lib/network/connection/providers/xdsl.pm:436
+#, c-format
+msgid "Czech Republic"
+msgstr "Tsjeggiese Republiek"
+
+#: ../lib/network/connection/providers/xdsl.pm:446
+#: ../lib/network/connection/providers/xdsl.pm:455
+#: ../lib/network/connection/providers/xdsl.pm:464
+#, c-format
+msgid "Denmark"
+msgstr "Denemarke"
+
+#: ../lib/network/connection/providers/xdsl.pm:473
+#, c-format
+msgid "Egypt"
+msgstr "Egipte"
+
+#: ../lib/network/connection/providers/xdsl.pm:483
+#, c-format
+msgid "Finland"
+msgstr "Finland"
+
+#: ../lib/network/connection/providers/xdsl.pm:621
+#: ../lib/network/connection/providers/xdsl.pm:630
+#: ../lib/network/connection/providers/xdsl.pm:640
+#, c-format
+msgid "Germany"
+msgstr "Duitsland"
+
+#: ../lib/network/connection/providers/xdsl.pm:650
+#, c-format
+msgid "Greece"
+msgstr "Griekeland"
+
+#: ../lib/network/connection/providers/xdsl.pm:659
+#, c-format
+msgid "Hungary"
+msgstr "Hongarye"
+
+#: ../lib/network/connection/providers/xdsl.pm:668
+#, c-format
+msgid "Ireland"
+msgstr "Ierland"
+
+#: ../lib/network/connection/providers/xdsl.pm:677
+#, c-format
+msgid "Israel"
+msgstr "Israel"
+
+#: ../lib/network/connection/providers/xdsl.pm:687
+#, c-format
+msgid "India"
+msgstr "Indië"
+
+#: ../lib/network/connection/providers/xdsl.pm:696
+#: ../lib/network/connection/providers/xdsl.pm:705
+#, c-format
+msgid "Iceland"
+msgstr "Ysland"
+
+#: ../lib/network/connection/providers/xdsl.pm:714
+#: ../lib/network/connection/providers/xdsl.pm:725
+#: ../lib/network/connection/providers/xdsl.pm:735
+#: ../lib/network/connection/providers/xdsl.pm:746
+#: ../lib/network/netconnect.pm:35
+#, c-format
+msgid "Italy"
+msgstr "Italië"
+
+#: ../lib/network/connection/providers/xdsl.pm:758
+#, c-format
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+
+#: ../lib/network/connection/providers/xdsl.pm:770
+#, c-format
+msgid "Lithuania"
+msgstr "Litaue"
+
+#: ../lib/network/connection/providers/xdsl.pm:779
+#: ../lib/network/connection/providers/xdsl.pm:789
+#, c-format
+msgid "Mauritius"
+msgstr "Mauritius"
+
+#: ../lib/network/connection/providers/xdsl.pm:800
+#, c-format
+msgid "Morocco"
+msgstr "Marokko"
+
+#: ../lib/network/connection/providers/xdsl.pm:810
+#: ../lib/network/connection/providers/xdsl.pm:819
+#: ../lib/network/connection/providers/xdsl.pm:828
+#: ../lib/network/connection/providers/xdsl.pm:837
+#: ../lib/network/netconnect.pm:34
+#, c-format
+msgid "Netherlands"
+msgstr "Nederlands"
+
+#: ../lib/network/connection/providers/xdsl.pm:846
+#: ../lib/network/connection/providers/xdsl.pm:852
+#: ../lib/network/connection/providers/xdsl.pm:858
+#: ../lib/network/connection/providers/xdsl.pm:864
+#: ../lib/network/connection/providers/xdsl.pm:870
+#: ../lib/network/connection/providers/xdsl.pm:876
+#: ../lib/network/connection/providers/xdsl.pm:882
+#, c-format
+msgid "Norway"
+msgstr "Noorweë"
+
+#: ../lib/network/connection/providers/xdsl.pm:890
+#, c-format
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#: ../lib/network/connection/providers/xdsl.pm:901
+#: ../lib/network/connection/providers/xdsl.pm:911
+#, c-format
+msgid "Poland"
+msgstr "Pole"
+
+#: ../lib/network/connection/providers/xdsl.pm:922
+#, c-format
+msgid "Portugal"
+msgstr "Portugal"
+
+#: ../lib/network/connection/providers/xdsl.pm:931
+#, c-format
+msgid "Russia"
+msgstr "Rusland"
+
+#: ../lib/network/connection/providers/xdsl.pm:942
+#, c-format
+msgid "Singapore"
+msgstr "Singapoer"
+
+#: ../lib/network/connection/providers/xdsl.pm:951
+#, c-format
+msgid "Senegal"
+msgstr "Senekal"
+
+#: ../lib/network/connection/providers/xdsl.pm:961
+#, c-format
+msgid "Slovenia"
+msgstr "Slovenië"
+
+#: ../lib/network/connection/providers/xdsl.pm:972
+#: ../lib/network/connection/providers/xdsl.pm:984
+#: ../lib/network/connection/providers/xdsl.pm:996
+#: ../lib/network/connection/providers/xdsl.pm:1009
+#: ../lib/network/connection/providers/xdsl.pm:1019
+#: ../lib/network/connection/providers/xdsl.pm:1029
+#: ../lib/network/connection/providers/xdsl.pm:1040
+#: ../lib/network/connection/providers/xdsl.pm:1050
+#: ../lib/network/connection/providers/xdsl.pm:1060
+#: ../lib/network/connection/providers/xdsl.pm:1070
+#: ../lib/network/connection/providers/xdsl.pm:1080
+#: ../lib/network/connection/providers/xdsl.pm:1090
+#: ../lib/network/connection/providers/xdsl.pm:1101
+#: ../lib/network/connection/providers/xdsl.pm:1112
+#: ../lib/network/connection/providers/xdsl.pm:1124
+#: ../lib/network/connection/providers/xdsl.pm:1136
+#, c-format
+msgid "Spain"
+msgstr "Spanje"
+
+#: ../lib/network/connection/providers/xdsl.pm:1149
+#, c-format
+msgid "Sweden"
+msgstr "Swede"
+
+#: ../lib/network/connection/providers/xdsl.pm:1158
+#: ../lib/network/connection/providers/xdsl.pm:1167
+#: ../lib/network/connection/providers/xdsl.pm:1177
+#, c-format
+msgid "Switzerland"
+msgstr "Switserland"
+
+#: ../lib/network/connection/providers/xdsl.pm:1186
+#, c-format
+msgid "Thailand"
+msgstr "Thailand"
+
+#: ../lib/network/connection/providers/xdsl.pm:1196
+#, c-format
+msgid "Tunisia"
+msgstr "Tunisië"
+
+#: ../lib/network/connection/providers/xdsl.pm:1207
+#, c-format
+msgid "Turkey"
+msgstr "Turkye"
+
+#: ../lib/network/connection/providers/xdsl.pm:1220
+#, c-format
+msgid "United Arab Emirates"
+msgstr "Verenigde Arabiese Emirate"
+
+#: ../lib/network/connection/providers/xdsl.pm:1230
+#: ../lib/network/connection/providers/xdsl.pm:1240
+#: ../lib/network/netconnect.pm:38
+#, c-format
+msgid "United Kingdom"
+msgstr "Verenigde Koninkryk"
+
+#: ../lib/network/connection/wireless.pm:11
+#, c-format
+msgid "Wireless"
+msgstr "Draadloos"
+
+#: ../lib/network/connection/wireless.pm:27
+#, c-format
+msgid "Use a Windows driver (with ndiswrapper)"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:44
+#, c-format
+msgid "Open WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:45
+#, c-format
+msgid "Restricted WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:46
+#, c-format
+msgid "WPA Pre-Shared Key"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:182 ../lib/network/thirdparty.pm:175
+#, c-format
+msgid "Firmware files are required for this device."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:248
+#, c-format
+msgid ""
+"Your wireless card is disabled, please enable the wireless switch (RF kill "
+"switch) first."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:307
+#, fuzzy, c-format
+msgid "Wireless settings"
+msgstr "Draadlose konneksie"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Ad-hoc"
+msgstr "Ad-hoc"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Managed"
+msgstr "Beheerde"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Master"
+msgstr "Meester"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Repeater"
+msgstr "Repeater"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Secondary"
+msgstr "Sekondêre"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Auto"
+msgstr "Outo"
+
+#: ../lib/network/connection/wireless.pm:318
+#, c-format
+msgid "Encryption mode"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:327
+#, c-format
+msgid ""
+"RTS/CTS adds a handshake before each packet transmission to make sure that "
+"the\n"
+"channel is clear. This adds overhead, but increase performance in case of "
+"hidden\n"
+"nodes or large number of active nodes. This parameter sets the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, "
+"fixed\n"
+"or off."
+msgstr ""
+"RTS/CTS voeg 'n handskud by alvorens 'n pakkie gestuur word. Dit\n"
+"is om seker te maak die tonnel is skoon. Dit voeg wel oorhoofse data\n"
+"by, maar kan beter resultate tot gevolge hê.\n"
+"Hierie parameter bepaal die kleinste pakkie vwaarvoor die node 'n RTS\n"
+"sal stuur. 'n Waarde gelyk aan die maksimun pakkie grootte sal dit\n"
+"de-aktiveer. U kan dit ook stel na Outo, bepaald of af."
+
+#: ../lib/network/connection/wireless.pm:336
+#, c-format
+msgid ""
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
+"as the hostname).\n"
+"\n"
+"See iwconfig(8) man page for further information."
+msgstr ""
+"Hier kan u ekstra verstellings bepaal soos: ap, channel, commit, enc, power, "
+"retry, sens, txpower (nick is reeds gestel as die rekenaarnaam).\n"
+"\n"
+"Raadpleeg die iwconfig(8) man vir ekstra inligting."
+
+#: ../lib/network/connection/wireless.pm:344
+#, c-format
+msgid ""
+"iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
+"\n"
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+"iwspy word gebruik om 'n lys op te stel van adresse in 'n draadlose\n"
+"netwerk asook om die gehalte van elke koppeling van elk te lees.\n"
+"\n"
+"Hierdie inligting kan ook bekom word in /proc/net/wireless :\n"
+"gehalte van die koppeling, seinsterkte, en geraasvlakke.\n"
+"\n"
+"Raadpleeg die iwpspy(8) vir verdere inligting."
+
+#: ../lib/network/connection/wireless.pm:354
+#, c-format
+msgid ""
+"iwpriv enable to set up optionals (private) parameters of a wireless "
+"network\n"
+"interface.\n"
+"\n"
+"iwpriv deals with parameters and setting specific to each driver (as opposed "
+"to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to "
+"use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
+msgstr ""
+"iwpriv stel u in staat om privaatheidsverstellings aan\n"
+"die draadlose netwerkkoppelvlak aan te bring.\n"
+"\n"
+"iwpriv maak verstellings aan die spesifieke drywers (in teenstelling met "
+"iwconfig wat generiese verstellings doen)\n"
+"\n"
+"In teorie, behoort u al die nodige inligting vanaf die drywer\n"
+"se dokumentasie te kan bekom)\n"
+"\n"
+"Raadpleeg die iwpriv(8) vir verdere inligting."
+
+#: ../lib/network/connection/wireless.pm:372
+#, c-format
+msgid "An encryption key is required."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:378
+#, 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 ""
+"Freq moet 'n k, M of G agtervoegsel kry. (byvoorbeeld, \"2.6G\" vir 2.46Ghz "
+"frekwensie), of u moet genoeg 0'e (zero's) byvoeg."
+
+#: ../lib/network/connection/wireless.pm:384
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
+"Tempo moet agtervoegsels van k,M, of G kry (byvoorbeeld \"11M\" vir 11M) of "
+"voeg genoeg 0'e (zero'z) by."
+
+#: ../lib/network/connection/wireless.pm:396
+#, c-format
+msgid "Allow access point roaming"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:499
+#, c-format
+msgid "Associated to wireless network \"%s\" on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:500
+#, c-format
+msgid "Lost association to wireless network on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:8
+#, fuzzy, c-format
+msgid "DSL"
+msgstr "Ssl"
+
+#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
+#, c-format
+msgid "Alcatel speedtouch USB modem"
+msgstr "Alcatel speedtouch USB-modem"
+
+#: ../lib/network/connection/xdsl.pm:104
+#, c-format
+msgid ""
+"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
+"problem.\n"
+"\n"
+"You can find a driver on http://eciadsl.flashtux.org/"
+msgstr ""
+"The ECI Hi-Focus modem kan nie uit die boks ondersteun word uit nie.\n"
+"Besoek gerus http://eciadsl.flashtux.org/ vir 'n drywer."
+
+#: ../lib/network/connection/xdsl.pm:176
+#, c-format
+msgid "DSL over CAPI"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:179
+#, c-format
+msgid "Dynamic Host Configuration Protocol (DHCP)"
+msgstr "Dynamic Host Configuration Protocol (DHCP)"
+
+#: ../lib/network/connection/xdsl.pm:180
+#, c-format
+msgid "Manual TCP/IP configuration"
+msgstr "Selfdoen TCP/IP-konfigurasie"
+
+#: ../lib/network/connection/xdsl.pm:181
+#, c-format
+msgid "Point to Point Tunneling Protocol (PPTP)"
+msgstr "Point to Point Tunneling Protocol (PPTP)"
+
+#: ../lib/network/connection/xdsl.pm:182
+#, c-format
+msgid "PPP over Ethernet (PPPoE)"
+msgstr "PPP oor Ethernet (PPPoE)"
+
+#: ../lib/network/connection/xdsl.pm:183
+#, c-format
+msgid "PPP over ATM (PPPoA)"
+msgstr "PPP oor ATM (PPPoA)"
+
+#: ../lib/network/connection/xdsl.pm:223
+#, c-format
+msgid "Virtual Path ID (VPI):"
+msgstr "Virtual Path ID (VPI):"
+
+#: ../lib/network/connection/xdsl.pm:224
+#, c-format
+msgid "Virtual Circuit ID (VCI):"
+msgstr "Virtual Circuit ID (VCI):"
+
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakvpn.pm:45 ../lib/network/netconnect.pm:131
+#: ../lib/network/thirdparty.pm:115
+#, fuzzy, c-format
+msgid "Could not install the packages (%s)!"
+msgstr "Installeer pakket %s"
+
+#: ../lib/network/drakfirewall.pm:12
+#, c-format
+msgid "Web Server"
+msgstr "Web-bediener"
+
+#: ../lib/network/drakfirewall.pm:17
+#, c-format
+msgid "Domain Name Server"
+msgstr "Domeinnaam-bediener"
+
+#: ../lib/network/drakfirewall.pm:22
+#, c-format
+msgid "SSH server"
+msgstr "SSH-bediener"
+
+#: ../lib/network/drakfirewall.pm:27
+#, c-format
+msgid "FTP server"
+msgstr "FTP-bediener"
+
+#: ../lib/network/drakfirewall.pm:32
+#, c-format
+msgid "Mail Server"
+msgstr "e-Pos bediener"
+
+#: ../lib/network/drakfirewall.pm:37
+#, c-format
+msgid "POP and IMAP Server"
+msgstr "POP en IMAP bediener"
+
+#: ../lib/network/drakfirewall.pm:42
+#, c-format
+msgid "Telnet server"
+msgstr "Telnet-bediener"
+
+#: ../lib/network/drakfirewall.pm:48
+#, c-format
+msgid "Windows Files Sharing (SMB)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:54
+#, c-format
+msgid "CUPS server"
+msgstr "CUPS-bediener"
+
+#: ../lib/network/drakfirewall.pm:60
+#, c-format
+msgid "Echo request (ping)"
+msgstr "Echo request (ping)"
+
+#: ../lib/network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
+#, fuzzy, c-format
+msgid "Firewall configuration"
+msgstr "Selfdoen konfigurasie"
+
+#: ../lib/network/drakfirewall.pm:166
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandriva Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized Mandriva Security Firewall distribution."
+msgstr ""
+"drakfirewall konfigurasie\n"
+"\n"
+"Hiermee stel u 'n persoonlike vuurmuur op vir die Mandriva Linux\n"
+"rekenaar. Indien u 'n kragtige en toegewyde vuurmuur verlang, kyk\n"
+"dan gerus na die 'Mandriva Security Firewall'."
+
+#: ../lib/network/drakfirewall.pm:172
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+"drakefirewall assistent\n"
+"\n"
+"Maak seker dat u alreeds die Netwerk/Internet toegang opgestel het\n"
+"deur 'drakconnect' te gebruik."
+
+#: ../lib/network/drakfirewall.pm:189
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "Watter dienste wil u toelaat vanaf die Internet?"
+
+#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
+#, c-format
+msgid "Firewall"
+msgstr "Vuurmuur"
+
+#: ../lib/network/drakfirewall.pm:192
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"U kan uiteenlopende poorte voorsien. \n"
+"Voorbeelde hiervan is: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Kyk gerus na '/etc/services' vir meer inligting."
+
+#: ../lib/network/drakfirewall.pm:198
+#, 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.\n"
+"\n"
+"You can also give a range of ports (eg: 24300:24350/udp)"
+msgstr ""
+"Ongeldige poort: %s.\n"
+"Die regte manier is \"poort/tcp\" of \"poort/udp\",\n"
+"waar poort tussen 1 en 65535 is.\n"
+"\n"
+"U kan ook 'n reeks poorte verskaf (bv. 24300:24350/udp)"
+
+#: ../lib/network/drakfirewall.pm:208
+#, c-format
+msgid "Everything (no firewall)"
+msgstr "Alles (geen vuurmuur)"
+
+#: ../lib/network/drakfirewall.pm:210
+#, c-format
+msgid "Other ports"
+msgstr "Ander poorte"
+
+#: ../lib/network/drakfirewall.pm:211
+#, c-format
+msgid "Log firewall messages in system logs"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:256
+#, c-format
+msgid ""
+"You can be warned when someone accesses to a service or tries to intrude "
+"into your computer.\n"
+"Please select which network activities should be watched."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:261
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:29
+#, c-format
+msgid "No device found"
+msgstr "Geen toestelle gevind nie"
+
+#: ../lib/network/drakroam.pm:63 ../lib/network/drakroam.pm:161
+#, fuzzy, c-format
+msgid "Please enter settings for network"
+msgstr "Gedetaileerde inligting"
+
+#: ../lib/network/drakroam.pm:67 ../lib/network/netconnect.pm:177
+#, fuzzy, c-format
+msgid "Configuring device..."
+msgstr "Konfigurasie in aabou..."
+
+#: ../lib/network/drakroam.pm:95
+#, c-format
+msgid "Hostname changed to \"%s\""
+msgstr ""
+
+#: ../lib/network/drakroam.pm:108 ../lib/network/netconnect.pm:209
+#, fuzzy, c-format
+msgid "Scanning for networks..."
+msgstr "Deursoek die netwerk..."
+
+#: ../lib/network/drakroam.pm:200
+#, fuzzy, c-format
+msgid "Connecting..."
+msgstr "Konnekteer..."
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Disconnect"
+msgstr "Ontkoppel"
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Connect"
+msgstr "Konnekteer"
+
+#: ../lib/network/drakroam.pm:250
+#, fuzzy, c-format
+msgid "Disconnecting..."
+msgstr "Diskonnekteer..."
+
+#: ../lib/network/drakroam.pm:279
+#, c-format
+msgid "SSID"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:280
+#, c-format
+msgid "Signal strength"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:281
+#, c-format
+msgid "Encryption"
+msgstr "Inkripsie"
+
+#: ../lib/network/drakroam.pm:335 ../lib/network/netconnect.pm:761
+#, c-format
+msgid "Wireless connection"
+msgstr "Draadlose konneksie"
+
+#: ../lib/network/drakroam.pm:350
+#, c-format
+msgid "Configure"
+msgstr "Konfigureer"
+
+#: ../lib/network/drakroam.pm:352
+#, c-format
+msgid "Refresh"
+msgstr "Herlaai"
+
+#: ../lib/network/drakvpn.pm:30
+#, fuzzy, c-format
+msgid "VPN configuration"
+msgstr "CUPS-konfigurasie"
+
+#: ../lib/network/drakvpn.pm:34
+#, fuzzy, c-format
+msgid "Choose the VPN type"
+msgstr "Kies die nuwe grootte"
+
+#: ../lib/network/drakvpn.pm:49
+#, c-format
+msgid "Initializing tools and detecting devices for %s..."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:52
+#, fuzzy, c-format
+msgid "Unable to initialize %s connection type!"
+msgstr "Onbekende konneksie tipe"
+
+#: ../lib/network/drakvpn.pm:60
+#, c-format
+msgid "Please select an existing VPN connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:64
+#, fuzzy, c-format
+msgid "Configure a new connection..."
+msgstr "Konneksie word getoets..."
+
+#: ../lib/network/drakvpn.pm:66
+#, fuzzy, c-format
+msgid "New name"
+msgstr "Regte naam"
+
+#: ../lib/network/drakvpn.pm:70
+#, c-format
+msgid "You must select an existing connection or enter a new name."
+msgstr ""
+
+#
+#: ../lib/network/drakvpn.pm:81
+#, fuzzy, c-format
+msgid "Please enter the required key(s)"
+msgstr "Voorsien asseblief die WebDAV-bediener se URL"
+
+#: ../lib/network/drakvpn.pm:86
+#, fuzzy, c-format
+msgid "Please enter the settings of your VPN connection"
+msgstr "Kon nie die spieëlwebplek %s kontak nie"
+
+#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#, c-format
+msgid "Do you want to start the connection now?"
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:100
+#, fuzzy, c-format
+msgid "Connection failed."
+msgstr "Konneksienaam"
+
+#: ../lib/network/drakvpn.pm:108
+#, c-format
+msgid ""
+"The VPN connection is now configured.\n"
+"\n"
+"This VPN connection can be automatically started together with a network "
+"connection.\n"
+"It can be done by reconfiguring the network connection and selecting this "
+"VPN connection.\n"
+msgstr ""
+
+#: ../lib/network/ifw.pm:129
+#, fuzzy, c-format
+msgid "Port scanning"
+msgstr "Geen deling"
+
+#: ../lib/network/ifw.pm:130
+#, fuzzy, c-format
+msgid "Service attack"
+msgstr "Diens Bestuurder"
+
+#: ../lib/network/ifw.pm:131
+#, fuzzy, c-format
+msgid "Password cracking"
+msgstr "Wagwoord (weer)"
+
+#: ../lib/network/ifw.pm:132
+#, c-format
+msgid "\"%s\" attack"
+msgstr ""
+
+#: ../lib/network/ifw.pm:134
+#, c-format
+msgid "A port scanning attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:135
+#, c-format
+msgid "The %s service has been attacked by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:136
+#, c-format
+msgid "A password cracking attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:137
+#, c-format
+msgid "A \"%s\" attack has been attempted by %s"
+msgstr ""
+
+#: ../lib/network/ifw.pm:146
+#, c-format
+msgid ""
+"The \"%s\" application is trying to make a service (%s) available to the "
+"network."
+msgstr ""
+
+#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
+#: ../lib/network/ifw.pm:150
+#, fuzzy, c-format
+msgid "port %d"
+msgstr "Verslag"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#, c-format
+msgid "Manual"
+msgstr "Selfdoen"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
+#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
+#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
+#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#: ../lib/network/netconnect.pm:638
+#, c-format
+msgid "Automatic"
+msgstr "Outomaties"
+
+#: ../lib/network/ndiswrapper.pm:27
+#, c-format
+msgid "No device supporting the %s ndiswrapper driver is present!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:33
+#, c-format
+msgid "Please select the Windows driver (.inf file)"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:42
+#, c-format
+msgid "Unable to install the %s ndiswrapper driver!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:86
+#, c-format
+msgid "Unable to load the ndiswrapper module!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:92
+#, c-format
+msgid ""
+"The selected device has already been configured with the %s driver.\n"
+"Do you really want to use a ndiswrapper driver?"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:102
+#, c-format
+msgid "Unable to find the ndiswrapper interface!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:115
+#, fuzzy, c-format
+msgid "Choose an ndiswrapper driver"
+msgstr "Kies 'n eiemagtige drywer"
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Use the ndiswrapper driver %s"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:118
+#, fuzzy, c-format
+msgid "Install a new driver"
+msgstr "Installeer stelsel"
+
+#: ../lib/network/ndiswrapper.pm:129
+#, c-format
+msgid "Select a device:"
+msgstr ""
+
+#: ../lib/network/netcenter.pm:55
+#, fuzzy, c-format
+msgid "Network Center"
+msgstr "Netwerkkoppelvlak"
+
+#: ../lib/network/netconnect.pm:37
+#, c-format
+msgid "United States"
+msgstr "Verenigde State"
+
+#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
+#: ../lib/network/netconnect.pm:507
+#, fuzzy, c-format
+msgid "Manual choice"
+msgstr "selfdoen"
+
+#: ../lib/network/netconnect.pm:60
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Interne ISDN-kaart"
+
+#: ../lib/network/netconnect.pm:65
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr "Protokol vir die res van die wêreld"
+
+#: ../lib/network/netconnect.pm:123
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Kies die konneksie wat u wil konfigureer"
+
+#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
+#: ../lib/network/netconnect.pm:788
+#, c-format
+msgid "Select the network interface to configure:"
+msgstr "Kies die netwerkkoppelvlak om op te stel:"
+
+#: ../lib/network/netconnect.pm:164
+#, c-format
+msgid "No device can be found for this connection type."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:173
+#, fuzzy, c-format
+msgid "Hardware Configuration"
+msgstr "Netwerkkonfigurasie"
+
+#: ../lib/network/netconnect.pm:194
+#, c-format
+msgid "Please select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:212
+#, c-format
+msgid "Please select your network:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:241
+#, c-format
+msgid ""
+"Please select your connection protocol.\n"
+"If you do not know it, keep the preselected protocol."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#, c-format
+msgid "Connection control"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Connection Configuration"
+msgstr "Konneksiekonfigurasie"
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Vul asb. die velde hieronder in"
+
+#: ../lib/network/netconnect.pm:318
+#, c-format
+msgid "Your personal phone number"
+msgstr "U persoonlike telefoonnommer"
+
+#: ../lib/network/netconnect.pm:319
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Voorsienernaam (bv voorsiener.co.za)"
+
+#: ../lib/network/netconnect.pm:321
+#, c-format
+msgid "Provider DNS 1 (optional)"
+msgstr "Voorsiener DNS 1 (opsioneel)"
+
+#: ../lib/network/netconnect.pm:322
+#, c-format
+msgid "Provider DNS 2 (optional)"
+msgstr "Voorsiener DNS 2 (opsioneel)"
+
+#: ../lib/network/netconnect.pm:332
+#, c-format
+msgid "Card IO_1"
+msgstr "Kaart IO_1"
+
+#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#, c-format
+msgid "External ISDN modem"
+msgstr "Eksterne ISDN modem"
+
+#: ../lib/network/netconnect.pm:384
+#, c-format
+msgid "Select a device!"
+msgstr "Kies 'n toestel !"
+
+#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
+#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid "ISDN Configuration"
+msgstr "ISDN Konfigurasie"
+
+#: ../lib/network/netconnect.pm:394
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Oor watter tipe kaart beskik u?"
+
+#: ../lib/network/netconnect.pm:404
+#, 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"
+"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm\n"
+"reg te wees.\n"
+"\n"
+"Indien u 'n PCMCIA-kaart het, moet u die IRQ en I/O van u kaart weet.\n"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Continue"
+msgstr "Gaan voort"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Abort"
+msgstr "Staak"
+
+#: ../lib/network/netconnect.pm:414
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "Wat is u ISDN-kaart?"
+
+#: ../lib/network/netconnect.pm:432
+#, c-format
+msgid ""
+"A CAPI driver is available for this modem. This CAPI driver can offer more "
+"capabilities than the free driver (like sending faxes). Which driver do you "
+"want to use?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:446
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Watter protokol verlang u?"
+
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it is not listed, choose Unlisted."
+msgstr ""
+"Kies u internetdiensvoorsiener.\n"
+"Indien nie in die lys nie kies Ongelys"
+
+#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
+#, c-format
+msgid "Provider:"
+msgstr "Verskaffer:"
+
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid ""
+"Your modem is not supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+"U modem word nie ten volle deur Linux ondersteun nie.\n"
+"Probeer http://www.linmodems.org vir meer inligting."
+
+#: ../lib/network/netconnect.pm:490
+#, c-format
+msgid "Select the modem to configure:"
+msgstr "Kies die modem om op te stel:"
+
+#: ../lib/network/netconnect.pm:492
+#, c-format
+msgid "Modem"
+msgstr "Modem"
+
+#: ../lib/network/netconnect.pm:527
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Op watter seriepoort is u modem gekoppel?"
+
+#: ../lib/network/netconnect.pm:556
+#, c-format
+msgid "Select your provider:"
+msgstr "Kies u verskaffer:"
+
+#: ../lib/network/netconnect.pm:580
+#, c-format
+msgid "Dialup: account options"
+msgstr "Opbelopsies"
+
+#: ../lib/network/netconnect.pm:583
+#, c-format
+msgid "Connection name"
+msgstr "Konneksienaam"
+
+#: ../lib/network/netconnect.pm:584
+#, c-format
+msgid "Phone number"
+msgstr "Telefoonnommer"
+
+#: ../lib/network/netconnect.pm:585
+#, c-format
+msgid "Login ID"
+msgstr "Aantekenkode"
+
+#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
+#, c-format
+msgid "Dialup: IP parameters"
+msgstr "Opbel: IP-Parameters"
+
+#: ../lib/network/netconnect.pm:603
+#, c-format
+msgid "IP parameters"
+msgstr "IP-Parameters"
+
+#: ../lib/network/netconnect.pm:605
+#, c-format
+msgid "Subnet mask"
+msgstr "Subnet-masker"
+
+#: ../lib/network/netconnect.pm:617
+#, c-format
+msgid "Dialup: DNS parameters"
+msgstr "Opbel: DNS-inligting"
+
+#: ../lib/network/netconnect.pm:620
+#, c-format
+msgid "DNS"
+msgstr "DNS"
+
+#: ../lib/network/netconnect.pm:621
+#, c-format
+msgid "Domain name"
+msgstr "Domeinnaam"
+
+#: ../lib/network/netconnect.pm:624
+#, c-format
+msgid "Set hostname from IP"
+msgstr "Verkry rekenaarnaam vanaf IP"
+
+#: ../lib/network/netconnect.pm:637
+#, c-format
+msgid "Gateway IP address"
+msgstr "Deurgang se IP-adres"
+
+#: ../lib/network/netconnect.pm:670
+#, fuzzy, c-format
+msgid "Automatically at boot"
+msgstr "Begin tydens herlaaityd"
+
+#: ../lib/network/netconnect.pm:672
+#, c-format
+msgid "By using Net Applet in the system tray"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:674
+#, c-format
+msgid "Manually (the interface would still be activated at boot)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:683
+#, fuzzy, c-format
+msgid "How do you want to dial this connection?"
+msgstr "Wil u die konneksie met herlaaityd aanskakel?"
+
+#: ../lib/network/netconnect.pm:696
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Wil u nou aan die internet konnekteer?"
+
+#: ../lib/network/netconnect.pm:723
+#, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Die stelsel is nou aan die internet gekonnekteer."
+
+#: ../lib/network/netconnect.pm:724
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "Vir sekuriteitsreDES, word u nou gediskonnekteer."
+
+#: ../lib/network/netconnect.pm:725
+#, c-format
+msgid ""
+"The system does not seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"Dit blyk dat u rekenaar geen toegang tot die Internet het nie.\n"
+"Probeer weer u konneksie konfigureer."
+
+#: ../lib/network/netconnect.pm:740
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr ""
+"Daarsy dude / duDES, die netwerk en Internetkonfigurasie is voltooi.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:743
+#, 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 wees om u X-omgewing te herlaai om die "
+"rekenaarnaamverandering-probleem te voorkom."
+
+#: ../lib/network/netconnect.pm:744
+#, c-format
+msgid ""
+"Problems occurred during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection does not "
+"work, you might want to relaunch the configuration."
+msgstr ""
+"Probleme is tydens die konfigurasie ondervind.\n"
+"Toets u konneksie deur 'net_monitor' of 'mcc'. Indien u steeds probleme "
+"ondervind, konfigureer weer van voor af."
+
+#: ../lib/network/netconnect.pm:756
+#, c-format
+msgid "Sagem USB modem"
+msgstr "Sagem USB-modem"
+
+#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
+#, c-format
+msgid "Bewan modem"
+msgstr "Bewan PCI-modem"
+
+#: ../lib/network/netconnect.pm:759
+#, c-format
+msgid "ECI Hi-Focus modem"
+msgstr "ECI Hi-Focus modem"
+
+#: ../lib/network/netconnect.pm:760
+#, c-format
+msgid "LAN connection"
+msgstr "LAN-konneksie"
+
+#: ../lib/network/netconnect.pm:762
+#, c-format
+msgid "ADSL connection"
+msgstr "ADSL-konneksie"
+
+#: ../lib/network/netconnect.pm:763
+#, c-format
+msgid "Cable connection"
+msgstr "Kabelkonneksie"
+
+#: ../lib/network/netconnect.pm:764
+#, c-format
+msgid "ISDN connection"
+msgstr "ISDN konneksie"
+
+#: ../lib/network/netconnect.pm:765
+#, c-format
+msgid "Modem connection"
+msgstr "Modemkonfigurasie"
+
+#: ../lib/network/netconnect.pm:766
+#, c-format
+msgid "DVB connection"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:768
+#, c-format
+msgid "(detected on port %s)"
+msgstr "(op poort %s bespeur)"
+
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected %s)"
+msgstr "(%s bespeur)"
+
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected)"
+msgstr "(bespeur)"
+
+#: ../lib/network/netconnect.pm:771
+#, c-format
+msgid "Network Configuration"
+msgstr "Netwerkkonfigurasie"
+
+#: ../lib/network/netconnect.pm:772
+#, c-format
+msgid "Zeroconf hostname resolution"
+msgstr "Zeroconf rekenaarnaam resolusie"
+
+#: ../lib/network/netconnect.pm:773
+#, c-format
+msgid ""
+"If desired, enter a Zeroconf hostname.\n"
+"This is the name your machine will use to advertise any of\n"
+"its shared resources that are not managed by the network.\n"
+"It is not necessary on most networks."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:777
+#, c-format
+msgid "Zeroconf Host name"
+msgstr "Zeroconf Rekenaarnaam"
+
+#: ../lib/network/netconnect.pm:778
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr "'Zeroconf'-naam mag nie 'n '.' bevat nie"
+
+#: ../lib/network/netconnect.pm:779
+#, 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\n"
+"& Netwerkkonneksie te herkonfigureer.\n"
+
+#: ../lib/network/netconnect.pm:782
+#, c-format
+msgid "The network needs to be restarted. Do you want to restart it?"
+msgstr "Die netwerk moet herbegin word. Wil u dit nou doen?"
+
+#: ../lib/network/netconnect.pm:783
+#, c-format
+msgid ""
+"A problem occurred while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"Daar was 'n probleem met die herlaai van die netwerk.\n"
+"\n"
+"%s"
+
+#: ../lib/network/netconnect.pm:784
+#, c-format
+msgid ""
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press \"%s\" to continue."
+msgstr ""
+"Ons gaan nou die %s konneksie konfigureer.\n"
+"\n"
+"\n"
+"Druk \"%s\" om voort te gaan."
+
+#: ../lib/network/netconnect.pm:785
+#, c-format
+msgid "Configuration is complete, do you want to apply settings?"
+msgstr "Konfigurasie is voltooi, wil u hierdie verstellings toepas?"
+
+#: ../lib/network/netconnect.pm:786
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+"U het meer as een internetkonneksiemetode opgstel.\n"
+"Kies die een wat u verlang.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:787
+#, c-format
+msgid "Internet connection"
+msgstr "Internetkonneksie"
+
+#: ../lib/network/netconnect.pm:789
+#, c-format
+msgid "Configuring network device %s (driver %s)"
+msgstr "Konfigureer netwerktoestel %s (drywer %s)"
+
+#: ../lib/network/netconnect.pm:790
+#, c-format
+msgid ""
+"The following protocols can be used to configure a LAN connection. Please "
+"choose the one you want to use."
+msgstr ""
+"Die volgende protokolle kan gebruik word vir 'n LAN konneksie. Kies "
+"asseblief die een om te gebruik."
+
+#: ../lib/network/netconnect.pm:791
+#, 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"
+
+#: ../lib/network/netconnect.pm:796
+#, c-format
+msgid "Last but not least you can also type in your DNS server IP addresses."
+msgstr ""
+"Laaste, maar nie die minste nie, kan u ook die DNS-bediener(s) se IP(s) "
+"voorsien."
+
+#: ../lib/network/netconnect.pm:797
+#, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "DNS-adres moet in 1.2.3.4. formaat wees"
+
+#: ../lib/network/netconnect.pm:799
+#, c-format
+msgid "Gateway device"
+msgstr "Deurgangtoestel"
+
+#: ../lib/network/netconnect.pm:813
+#, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr ""
+"'n Onvoorsiene fout het gebeur:\n"
+"%s"
+
+#: ../lib/network/network.pm:429
+#, c-format
+msgid "Proxies configuration"
+msgstr "Instaanbediener-konfigurasie"
+
+#: ../lib/network/network.pm:430
+#, c-format
+msgid ""
+"Here you can set up your proxies configuration (eg: http://"
+"my_caching_server:8080)"
+msgstr ""
+
+#: ../lib/network/network.pm:431
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP instaanbediener"
+
+#: ../lib/network/network.pm:432
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: ../lib/network/network.pm:433
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: ../lib/network/network.pm:434
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP-instaanbediener"
+
+#: ../lib/network/network.pm:435
+#, fuzzy, c-format
+msgid "No proxy for (comma separated list):"
+msgstr "%d komma-afgeskeie teks"
+
+#: ../lib/network/network.pm:440
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "Instaanbediener moet begin met http://..."
+
+#: ../lib/network/network.pm:441
+#, fuzzy, c-format
+msgid "Proxy should be http://... or https://..."
+msgstr "Instaanbediener moet begin met http://..."
+
+#: ../lib/network/network.pm:442
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "URL moet begin met 'ftp' of 'http':"
+
+#: ../lib/network/shorewall.pm:61
+#, c-format
+msgid ""
+"Please select the interfaces that will be protected by the firewall.\n"
+"\n"
+"All interfaces directly connected to Internet should be selected,\n"
+"while interfaces connected to a local network may be unselected.\n"
+"\n"
+"Which interfaces should be protected?\n"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:136
+#, c-format
+msgid "Keep custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:137
+#, c-format
+msgid "Drop custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:142
+#, c-format
+msgid ""
+"Your firewall configuration has been manually edited and contains\n"
+"rules that may conflict with the configuration that has just been set up.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:135
+#, c-format
+msgid "Some components (%s) are required but aren't available for %s hardware."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:136
+#, c-format
+msgid "Some packages (%s) are required but aren't available."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:138
+#, c-format
+msgid ""
+"These packages can be found in Mandriva Club or in Mandriva commercial "
+"releases."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:139
+#, c-format
+msgid "The following component is missing: %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:141
+#, c-format
+msgid ""
+"The required files can also be installed from this URL:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:183
+#, c-format
+msgid "Use a floppy"
+msgstr "Gebruik 'n disket"
+
+#: ../lib/network/thirdparty.pm:179 ../lib/network/thirdparty.pm:186
+#, c-format
+msgid "Use my Windows partition"
+msgstr "Gebruik my Windows-partisie"
+
+#: ../lib/network/thirdparty.pm:180
+#, c-format
+msgid "Select file"
+msgstr "Kies lêer"
+
+#: ../lib/network/thirdparty.pm:191
+#, c-format
+msgid "Please select the firmware file (for example: %s)"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:215
+#, fuzzy, c-format
+msgid "Unable to find \"%s\" on your Windows system!"
+msgstr "Verwyder lettertipes vanaf u rekenaar"
+
+#: ../lib/network/thirdparty.pm:217
+#, c-format
+msgid "No Windows system has been detected!"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:227
+#, c-format
+msgid "Insert floppy"
+msgstr "Plaas skyf in aandrywer"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+"Plaas 'n FAT-geformatteerde skyf in aandrywer %s met %s in die 'root' "
+"lêergids en druk %s"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid "Next"
+msgstr "Volgende"
+
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "Disket-toegangsfout, kan nie toestel %s heg nie"
+
+#: ../lib/network/thirdparty.pm:327
+#, c-format
+msgid "Looking for required software and drivers..."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:338
+#, fuzzy, c-format
+msgid "Please wait, running device configuration commands..."
+msgstr "Net 'n oomblik, spoor en konfigureer us toestelle"
+
+#: ../lib/network/vpn/openvpn.pm:107
+#, c-format
+msgid "X509 Public Key Infrastructure"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:108
+#, c-format
+msgid "Static Key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:115
+#, c-format
+msgid "Type"
+msgstr "Tipe"
+
+#. -PO: please don't translate the CA acronym
+#: ../lib/network/vpn/openvpn.pm:142
+#, c-format
+msgid "Certificate Authority (CA)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:148
+#, c-format
+msgid "Certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:154
+#, fuzzy, c-format
+msgid "Key"
+msgstr "Kenia"
+
+#
+#: ../lib/network/vpn/openvpn.pm:160
+#, fuzzy, c-format
+msgid "TLS control channel key"
+msgstr "Linker 'Control'-sleutel"
+
+#: ../lib/network/vpn/openvpn.pm:167
+#, c-format
+msgid "Key direction"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:175
+#, fuzzy, c-format
+msgid "Authenticate using username and password"
+msgstr "Kan nie met gebruikernaam %s inteken nie (werkeerde wagwoord?)"
+
+#: ../lib/network/vpn/openvpn.pm:181
+#, c-format
+msgid "Check server certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:187
+#, fuzzy, c-format
+msgid "Cipher algorithm"
+msgstr "Enkripsie-algoritme"
+
+#: ../lib/network/vpn/openvpn.pm:191
+#, c-format
+msgid "Default"
+msgstr "Verstek"
+
+#: ../lib/network/vpn/openvpn.pm:195
+#, c-format
+msgid "Size of cipher key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:206
+#, fuzzy, c-format
+msgid "Get from server"
+msgstr "Telnet-bediener"
+
+#: ../lib/network/vpn/openvpn.pm:216
+#, fuzzy, c-format
+msgid "Gateway port"
+msgstr "Portaal"
+
+#
+#: ../lib/network/vpn/openvpn.pm:232
+#, fuzzy, c-format
+msgid "Remote IP address"
+msgstr "Deurgang se IP-adres"
+
+#: ../lib/network/vpn/openvpn.pm:237
+#, fuzzy, c-format
+msgid "Use TCP protocol"
+msgstr "Protokol"
+
+#: ../lib/network/vpn/openvpn.pm:243
+#, c-format
+msgid "Virtual network device type"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:250
+#, c-format
+msgid "Virtual network device number (optional)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:365
+#, c-format
+msgid "Starting connection.."
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:380
+#, c-format
+msgid "Please insert your token"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:9
+#, c-format
+msgid "Cisco VPN Concentrator"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:43
+#, fuzzy, c-format
+msgid "Group name"
+msgstr "Groep ID"
+
+#: ../lib/network/vpn/vpnc.pm:47
+#, c-format
+msgid "Group secret"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:52
+#, c-format
+msgid "Username"
+msgstr "Gebruikernaam"
+
+#: ../lib/network/vpn/vpnc.pm:61
+#, c-format
+msgid "Use Cisco-UDP encapsulation"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:67
+#, c-format
+msgid "Use specific UDP port"
+msgstr ""
diff --git a/po/am.po b/po/am.po
index bea6b30..f25ec65 100644
--- a/po/am.po
+++ b/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2007-01-10 15:18+0100\n"
+"POT-Creation-Date: 2007-08-09 11:47+0200\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -13,2559 +13,543 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../lib/network/connection.pm:16
+#: ../bin/drakconnect:61 ../lib/network/netconnect.pm:118
#, c-format
-msgid "Unknown connection type"
-msgstr "ያልታወቀ የግንኙነት አይነት"
-
-#: ../lib/network/connection.pm:115
-#, c-format
-msgid "Network access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:116
-#, c-format
-msgid "Access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:117
-#, c-format
-msgid "Address settings"
-msgstr ""
+msgid "Network & Internet Configuration"
+msgstr "የመረብ እና ኢንተርኔት ምርጫ"
-#: ../lib/network/connection.pm:149 ../lib/network/drakvpn.pm:62
-#: ../lib/network/vpn/openvpn.pm:365 ../lib/network/vpn/openvpn.pm:379
-#: ../lib/network/vpn/openvpn.pm:390 ../tools/net_applet:129
+#: ../bin/drakconnect:81
#, fuzzy, c-format
-msgid "VPN connection"
-msgstr "የቅርብ መረብ ግንኙነት"
-
-#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
-#: ../lib/network/connection/wireless.pm:37 ../lib/network/vpn/openvpn.pm:127
-#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
-#, c-format
-msgid "None"
-msgstr "ምንም"
-
-#: ../lib/network/connection.pm:163
-#, c-format
-msgid "Allow users to manage the connection"
-msgstr ""
+msgid "Network configuration (%d adapters)"
+msgstr "የቀይ ባርኔታ መረብ"
-#: ../lib/network/connection.pm:164
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Start the connection at boot"
+msgid "Gateway:"
msgstr ""
-#: ../lib/network/connection.pm:165 ../tools/drakconnect:462
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "ሜክሲኮ"
-
-#: ../lib/network/connection.pm:230
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, fuzzy, c-format
-msgid "Link detected on interface %s"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
+msgid "Interface:"
+msgstr "የተጠቃሚው እይታ"
-#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:278
+#: ../bin/drakconnect:97 ../bin/net_monitor:119
#, c-format
-msgid "Link beat lost on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:13
-#, c-format
-msgid "Cable"
-msgstr ""
+msgid "Wait please"
+msgstr "ይጠብቁ እባክዎ"
-#: ../lib/network/connection/cable.pm:14
+#: ../bin/drakconnect:113 ../bin/drakinvictus:105
#, fuzzy, c-format
-msgid "Cable modem"
-msgstr "የካርድ ሞዴል፦"
-
-#: ../lib/network/connection/cable.pm:45
-#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:48 ../lib/network/netconnect.pm:587
-#: ../tools/drakconnect:482
-#, c-format
-msgid "Authentication"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:50 ../lib/network/connection/ppp.pm:22
-#: ../lib/network/netconnect.pm:326 ../lib/network/vpn/openvpn.pm:393
-#: ../tools/drakconnect:492
-#, c-format
-msgid "Account Login (user name)"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:52 ../lib/network/connection/ppp.pm:23
-#: ../lib/network/netconnect.pm:327 ../lib/network/vpn/openvpn.pm:394
-#: ../tools/drakconnect:493
-#, c-format
-msgid "Account Password"
-msgstr "የመዝገብ ሚስጢራዊ ቃል"
+msgid "Interface"
+msgstr "የተጠቃሚው እይታ"
-#: ../lib/network/connection/cellular.pm:47
+#: ../bin/drakconnect:113 ../bin/drakconnect:321 ../bin/drakconnect:888
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:125
+#: ../lib/network/netconnect.pm:604 ../lib/network/vpn/openvpn.pm:221
#, c-format
-msgid "Access Point Name"
-msgstr ""
+msgid "IP address"
+msgstr "IP አድራሻ"
-#: ../lib/network/connection/cellular_bluetooth.pm:10
+#: ../bin/drakconnect:113 ../bin/drakconnect:305 ../bin/drakconnect:563
+#: ../bin/drakids:252 ../bin/drakvpn-old:839 ../lib/network/netconnect.pm:448
#, c-format
-msgid "Bluetooth"
+msgid "Protocol"
msgstr ""
-#: ../lib/network/connection/cellular_bluetooth.pm:11
+#: ../bin/drakconnect:113 ../lib/network/netconnect.pm:434
#, c-format
-msgid "Bluetooth Dial Up Networking"
+msgid "Driver"
msgstr ""
-#: ../lib/network/connection/cellular_card.pm:8
+#: ../bin/drakconnect:113
#, c-format
-msgid "GPRS/Edge/3G"
-msgstr ""
+msgid "State"
+msgstr "ሁኔታ"
-#: ../lib/network/connection/cellular_card.pm:67
-#: ../lib/network/vpn/openvpn.pm:391
+#: ../bin/drakconnect:130
#, c-format
-msgid "PIN number"
-msgstr ""
+msgid "Hostname: "
+msgstr "የእንግዳ ተቀባይ ስም፦ "
-#: ../lib/network/connection/cellular_card.pm:130
+#: ../bin/drakconnect:132
#, fuzzy, c-format
-msgid "Unable to open device %s"
-msgstr "እንደገና የሚሰራ ምንም የለም።"
+msgid "Configure hostname..."
+msgstr "ፕሮግራሙን አስተካክል"
-#: ../lib/network/connection/cellular_card.pm:155
+#: ../bin/drakconnect:146 ../bin/drakconnect:851
#, c-format
-msgid "Please check that your SIM card is inserted."
-msgstr ""
-
-#: ../lib/network/connection/cellular_card.pm:161
-#, c-format
-msgid ""
-"You entered a wrong PIN code.\n"
-"Entering the wrong PIN code multiple times may lock your SIM card!"
-msgstr ""
+msgid "LAN configuration"
+msgstr "የቅርብ መረብ ምርጫ"
-#: ../lib/network/connection/dvb.pm:12
+#: ../bin/drakconnect:151
#, c-format
-msgid "DVB"
+msgid "Configure Local Area Network..."
msgstr ""
-#: ../lib/network/connection/dvb.pm:13
+#: ../bin/drakconnect:157 ../bin/drakconnect:240 ../bin/draknfs:183
+#: ../bin/net_applet:138
#, c-format
-msgid "Satellite (DVB)"
-msgstr ""
+msgid "Help"
+msgstr "እርዳታ"
-#: ../lib/network/connection/dvb.pm:56
+#: ../bin/drakconnect:159 ../bin/drakconnect:241 ../bin/drakconnect:245
+#: ../bin/drakinvictus:140
#, c-format
-msgid "Adapter card"
-msgstr ""
+msgid "Apply"
+msgstr "ተጠቀም"
-#: ../lib/network/connection/dvb.pm:57
+#: ../bin/drakconnect:161 ../bin/drakconnect:943 ../bin/drakconnect:1034
+#: ../bin/draknetprofile:106 ../bin/net_monitor:341
#, c-format
-msgid "Net demux"
-msgstr ""
+msgid "Cancel"
+msgstr "ተወው"
-#: ../lib/network/connection/dvb.pm:58
+#: ../bin/drakconnect:162 ../bin/drakconnect:858 ../bin/drakconnect:945
+#: ../bin/drakconnect:1035 ../bin/draknetprofile:108 ../bin/net_monitor:342
#, c-format
-msgid "PID"
-msgstr ""
+msgid "Ok"
+msgstr "እሺ"
-#: ../lib/network/connection/ethernet.pm:10
+#: ../bin/drakconnect:164 ../bin/drakconnect:636 ../bin/drakgw:359
+#: ../bin/draksambashare:208 ../lib/network/drakroam.pm:200
+#: ../lib/network/drakroam.pm:250
#, c-format
-msgid "Ethernet"
-msgstr ""
+msgid "Please wait"
+msgstr "እባክዎ ይጠብቁ"
-#: ../lib/network/connection/ethernet.pm:53
+#: ../bin/drakconnect:166 ../bin/drakconnect:638
#, c-format
-msgid "Unable to find network interface for selected device (using %s driver)."
-msgstr ""
+msgid "Please Wait... Applying the configuration"
+msgstr "እባክዎ ይጠብቁ... ምርጫውን በስራ ላይ አያዋለ ነው"
-#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#: ../bin/drakconnect:192
#, c-format
-msgid "Manual configuration"
-msgstr "በእጅ ምርጫ"
+msgid "Manage connections"
+msgstr "ግንኙነቶችን ይቆጣጠሩ"
-#: ../lib/network/connection/ethernet.pm:62
+#: ../bin/drakconnect:219 ../lib/network/drakroam.pm:346
#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr ""
+msgid "Device: "
+msgstr "መሳሪያ: "
-#: ../lib/network/connection/ethernet.pm:116
+#: ../bin/drakconnect:302
#, fuzzy, c-format
-msgid "IP settings"
-msgstr "የPLL ምርጫ"
-
-#: ../lib/network/connection/ethernet.pm:125 ../lib/network/netconnect.pm:604
-#: ../lib/network/vpn/openvpn.pm:221 ../tools/drakconnect:113
-#: ../tools/drakconnect:321 ../tools/drakconnect:887 ../tools/drakhosts:196
-#, c-format
-msgid "IP address"
-msgstr "IP አድራሻ"
-
-#: ../lib/network/connection/ethernet.pm:129
-#, 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)."
-msgstr ""
+msgid "IP configuration"
+msgstr "የማስተካከያው አራሚ"
-#: ../lib/network/connection/ethernet.pm:132 ../tools/drakconnect:326
-#: ../tools/drakconnect:888 ../tools/drakgw:177
+#: ../bin/drakconnect:326 ../bin/drakconnect:889 ../bin/drakgw:177
+#: ../lib/network/connection/ethernet.pm:132
#, c-format
msgid "Netmask"
msgstr "Netmask"
-#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:636
-#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
-#: ../tools/drakconnect:332
+#: ../bin/drakconnect:332 ../lib/network/connection/ethernet.pm:133
+#: ../lib/network/netconnect.pm:636 ../lib/network/vpn/openvpn.pm:212
+#: ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "Gateway"
-#: ../lib/network/connection/ethernet.pm:136 ../tools/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-
-#: ../lib/network/connection/ethernet.pm:138
+#: ../bin/drakconnect:337
#, c-format
-msgid "DNS server 1"
-msgstr "DNS ሰርቨር 1"
-
-#: ../lib/network/connection/ethernet.pm:139
-#, c-format
-msgid "DNS server 2"
-msgstr "DNS ሰርቨር 2"
+msgid "DNS servers"
+msgstr ""
-#: ../lib/network/connection/ethernet.pm:140
+#: ../bin/drakconnect:343
#, fuzzy, c-format
-msgid "Search domain"
+msgid "Search Domain"
msgstr "የObjectDirectory ዶሜን"
-#: ../lib/network/connection/ethernet.pm:141
+#: ../bin/drakconnect:351 ../bin/drakvpn-old:837
#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
+msgid "none"
+msgstr "ምንም"
-#: ../lib/network/connection/ethernet.pm:143 ../tools/drakconnect:369
-#: ../tools/drakconnect:891
+#: ../bin/drakconnect:351
#, c-format
-msgid "DHCP client"
+msgid "static"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:144 ../tools/drakconnect:379
+#: ../bin/drakconnect:351
#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr ""
+msgid "DHCP"
+msgstr "DHCP"
-#: ../lib/network/connection/ethernet.pm:145 ../tools/drakconnect:383
+#: ../bin/drakconnect:369 ../bin/drakconnect:892
+#: ../lib/network/connection/ethernet.pm:143
#, c-format
-msgid "Get YP servers from DHCP"
+msgid "DHCP client"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:146 ../tools/drakconnect:384
+#: ../bin/drakconnect:373 ../lib/network/connection/ethernet.pm:200
#, c-format
-msgid "Get NTPD servers from DHCP"
+msgid "Assign host name from DHCP address"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:147 ../tools/drakconnect:375
+#: ../bin/drakconnect:375 ../lib/network/connection/ethernet.pm:147
#, fuzzy, c-format
msgid "DHCP host name"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: ../lib/network/connection/ethernet.pm:149
-#, c-format
-msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:160 ../tools/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:165 ../tools/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:170
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:176
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s አስቀድሞ ጥቅም ላይ ነው\n"
-
-#: ../lib/network/connection/ethernet.pm:200 ../tools/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:202 ../tools/drakhosts:196
-#, c-format
-msgid "Host name"
-msgstr "የእንግዳ ተቀባይ ስም"
-
-#: ../lib/network/connection/ethernet.pm:220 ../tools/drakconnect:440
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Name=መረብ"
-
-#: ../lib/network/connection/ethernet.pm:224
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:277
-#, c-format
-msgid "Link beat detected on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:280
-#, c-format
-msgid "Requesting a network address on interface %s (%s protocol)..."
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:281
-#, c-format
-msgid "Got a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:282
-#, c-format
-msgid "Failed to get a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:8
-#, c-format
-msgid "ISDN"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
-#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
-#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
-#: ../lib/network/netconnect.pm:562
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "ያልተዘረዘሩ - በእጅ ያስተካክሉ"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "አላውቅም"
-
-#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#. -PO: POTS means "Plain old telephone service"
-#: ../lib/network/connection/pots.pm:10
+#: ../bin/drakconnect:379 ../lib/network/connection/ethernet.pm:144
#, c-format
-msgid "POTS"
-msgstr ""
-
-#. -PO: POTS means "Plain old telephone service"
-#. -PO: remove it if it doesn't have an equivalent in your language
-#. -PO: for example, in French, it can be translated as "RTC"
-#: ../lib/network/connection/pots.pm:16
-#, c-format
-msgid "Analog telephone modem (POTS)"
+msgid "DHCP timeout (in seconds)"
msgstr ""
-#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:74
-#: ../tools/drakconnect:499
+#: ../bin/drakconnect:382 ../lib/network/connection/ethernet.pm:136
#, fuzzy, c-format
-msgid "Script-based"
-msgstr "የተመሠረተው፦"
-
-#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:75
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:76
-#: ../tools/drakconnect:499
-#, fuzzy, c-format
-msgid "Terminal-based"
-msgstr "የተመሠረተው፦"
-
-#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:77
-#: ../tools/drakconnect:499
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:78
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: ../lib/network/connection/providers/cellular.pm:13
-#: ../lib/network/connection/providers/cellular.pm:18
-#: ../lib/network/connection/providers/cellular.pm:23
-#: ../lib/network/connection/providers/xdsl.pm:492
-#: ../lib/network/connection/providers/xdsl.pm:504
-#: ../lib/network/connection/providers/xdsl.pm:516
-#: ../lib/network/connection/providers/xdsl.pm:528
-#: ../lib/network/connection/providers/xdsl.pm:539
-#: ../lib/network/connection/providers/xdsl.pm:551
-#: ../lib/network/connection/providers/xdsl.pm:563
-#: ../lib/network/connection/providers/xdsl.pm:575
-#: ../lib/network/connection/providers/xdsl.pm:588
-#: ../lib/network/connection/providers/xdsl.pm:599
-#: ../lib/network/connection/providers/xdsl.pm:610
-#: ../lib/network/netconnect.pm:33
-#, c-format
-msgid "France"
-msgstr "ፈረንሳይ"
-
-#: ../lib/network/connection/providers/xdsl.pm:47
-#: ../lib/network/connection/providers/xdsl.pm:57
-#, c-format
-msgid "Algeria"
-msgstr "አልጄሪያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:67
-#: ../lib/network/connection/providers/xdsl.pm:77
-#, c-format
-msgid "Argentina"
-msgstr "አርጀንቲና"
-
-#: ../lib/network/connection/providers/xdsl.pm:87
-#: ../lib/network/connection/providers/xdsl.pm:96
-#: ../lib/network/connection/providers/xdsl.pm:105
-#, c-format
-msgid "Austria"
-msgstr "ኦስትሪያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:114
-#: ../lib/network/connection/providers/xdsl.pm:124
-#: ../lib/network/connection/providers/xdsl.pm:134
-#, c-format
-msgid "Australia"
-msgstr "አውስትሬሊያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:144
-#: ../lib/network/connection/providers/xdsl.pm:153
-#: ../lib/network/connection/providers/xdsl.pm:164
-#: ../lib/network/connection/providers/xdsl.pm:173
-#: ../lib/network/connection/providers/xdsl.pm:182
-#: ../lib/network/netconnect.pm:36
-#, c-format
-msgid "Belgium"
-msgstr "ቤልጄም"
-
-#: ../lib/network/connection/providers/xdsl.pm:191
-#: ../lib/network/connection/providers/xdsl.pm:201
-#: ../lib/network/connection/providers/xdsl.pm:210
-#: ../lib/network/connection/providers/xdsl.pm:219
-#, c-format
-msgid "Brazil"
-msgstr "ብራዚል"
-
-#: ../lib/network/connection/providers/xdsl.pm:228
-#: ../lib/network/connection/providers/xdsl.pm:237
-#, c-format
-msgid "Bulgaria"
-msgstr "ቡልጌሪያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:246
-#: ../lib/network/connection/providers/xdsl.pm:255
-#: ../lib/network/connection/providers/xdsl.pm:264
-#: ../lib/network/connection/providers/xdsl.pm:273
-#: ../lib/network/connection/providers/xdsl.pm:282
-#: ../lib/network/connection/providers/xdsl.pm:291
-#: ../lib/network/connection/providers/xdsl.pm:300
-#: ../lib/network/connection/providers/xdsl.pm:309
-#: ../lib/network/connection/providers/xdsl.pm:318
-#: ../lib/network/connection/providers/xdsl.pm:327
-#: ../lib/network/connection/providers/xdsl.pm:336
-#: ../lib/network/connection/providers/xdsl.pm:345
-#: ../lib/network/connection/providers/xdsl.pm:354
-#: ../lib/network/connection/providers/xdsl.pm:363
-#: ../lib/network/connection/providers/xdsl.pm:372
-#: ../lib/network/connection/providers/xdsl.pm:381
-#: ../lib/network/connection/providers/xdsl.pm:390
-#: ../lib/network/connection/providers/xdsl.pm:399
-#: ../lib/network/connection/providers/xdsl.pm:408
-#: ../lib/network/connection/providers/xdsl.pm:417
-#, c-format
-msgid "China"
-msgstr "ቻይና"
-
-#: ../lib/network/connection/providers/xdsl.pm:426
-#: ../lib/network/connection/providers/xdsl.pm:436
-#, c-format
-msgid "Czech Republic"
-msgstr "ቼክ ሪፑብሊክ"
-
-#: ../lib/network/connection/providers/xdsl.pm:446
-#: ../lib/network/connection/providers/xdsl.pm:455
-#: ../lib/network/connection/providers/xdsl.pm:464
-#, c-format
-msgid "Denmark"
-msgstr "ዴንማርክ"
-
-#: ../lib/network/connection/providers/xdsl.pm:473
-#, c-format
-msgid "Egypt"
-msgstr "ግብጽ"
-
-#: ../lib/network/connection/providers/xdsl.pm:483
-#, c-format
-msgid "Finland"
-msgstr "ፊንላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:621
-#: ../lib/network/connection/providers/xdsl.pm:630
-#: ../lib/network/connection/providers/xdsl.pm:640
-#, c-format
-msgid "Germany"
-msgstr "ጀርመን"
-
-#: ../lib/network/connection/providers/xdsl.pm:650
-#, c-format
-msgid "Greece"
-msgstr "ግሪክ"
-
-#: ../lib/network/connection/providers/xdsl.pm:659
-#, c-format
-msgid "Hungary"
-msgstr "ሀንጋሪ"
-
-#: ../lib/network/connection/providers/xdsl.pm:668
-#, c-format
-msgid "Ireland"
-msgstr "አየርላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:677
-#, c-format
-msgid "Israel"
-msgstr "እስራኤል"
-
-#: ../lib/network/connection/providers/xdsl.pm:687
-#, c-format
-msgid "India"
-msgstr "ህንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:696
-#: ../lib/network/connection/providers/xdsl.pm:705
-#, c-format
-msgid "Iceland"
-msgstr "አይስላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:714
-#: ../lib/network/connection/providers/xdsl.pm:725
-#: ../lib/network/connection/providers/xdsl.pm:735
-#: ../lib/network/connection/providers/xdsl.pm:746
-#: ../lib/network/netconnect.pm:35
-#, c-format
-msgid "Italy"
-msgstr "ጣሊያን"
-
-#: ../lib/network/connection/providers/xdsl.pm:758
-#, c-format
-msgid "Sri Lanka"
-msgstr "ሲሪላንካ"
-
-#: ../lib/network/connection/providers/xdsl.pm:770
-#, c-format
-msgid "Lithuania"
-msgstr "ሊቱዌኒያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:779
-#: ../lib/network/connection/providers/xdsl.pm:789
-#, c-format
-msgid "Mauritius"
-msgstr "ማሩሸስ"
-
-#: ../lib/network/connection/providers/xdsl.pm:800
-#, c-format
-msgid "Morocco"
-msgstr "ሞሮኮ"
-
-#: ../lib/network/connection/providers/xdsl.pm:810
-#: ../lib/network/connection/providers/xdsl.pm:819
-#: ../lib/network/connection/providers/xdsl.pm:828
-#: ../lib/network/connection/providers/xdsl.pm:837
-#: ../lib/network/netconnect.pm:34
-#, c-format
-msgid "Netherlands"
-msgstr "ኔዘርላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:846
-#: ../lib/network/connection/providers/xdsl.pm:852
-#: ../lib/network/connection/providers/xdsl.pm:858
-#: ../lib/network/connection/providers/xdsl.pm:864
-#: ../lib/network/connection/providers/xdsl.pm:870
-#: ../lib/network/connection/providers/xdsl.pm:876
-#: ../lib/network/connection/providers/xdsl.pm:882
-#, c-format
-msgid "Norway"
-msgstr "ኖርዌይ"
-
-#: ../lib/network/connection/providers/xdsl.pm:890
-#, c-format
-msgid "Pakistan"
-msgstr "ፓኪስታን"
-
-#: ../lib/network/connection/providers/xdsl.pm:901
-#: ../lib/network/connection/providers/xdsl.pm:911
-#, c-format
-msgid "Poland"
-msgstr "ፖላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:922
-#, c-format
-msgid "Portugal"
-msgstr "ፖርቱጋል"
-
-#: ../lib/network/connection/providers/xdsl.pm:931
-#, c-format
-msgid "Russia"
-msgstr "ራሺያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:942
-#, c-format
-msgid "Singapore"
-msgstr "ሲንጋፖር"
-
-#: ../lib/network/connection/providers/xdsl.pm:951
-#, c-format
-msgid "Senegal"
-msgstr "ሴኔጋል"
-
-#: ../lib/network/connection/providers/xdsl.pm:961
-#, c-format
-msgid "Slovenia"
-msgstr "ስሎቬኒያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:972
-#: ../lib/network/connection/providers/xdsl.pm:984
-#: ../lib/network/connection/providers/xdsl.pm:996
-#: ../lib/network/connection/providers/xdsl.pm:1009
-#: ../lib/network/connection/providers/xdsl.pm:1019
-#: ../lib/network/connection/providers/xdsl.pm:1029
-#: ../lib/network/connection/providers/xdsl.pm:1040
-#: ../lib/network/connection/providers/xdsl.pm:1050
-#: ../lib/network/connection/providers/xdsl.pm:1060
-#: ../lib/network/connection/providers/xdsl.pm:1070
-#: ../lib/network/connection/providers/xdsl.pm:1080
-#: ../lib/network/connection/providers/xdsl.pm:1090
-#: ../lib/network/connection/providers/xdsl.pm:1101
-#: ../lib/network/connection/providers/xdsl.pm:1112
-#: ../lib/network/connection/providers/xdsl.pm:1124
-#: ../lib/network/connection/providers/xdsl.pm:1136
-#, c-format
-msgid "Spain"
-msgstr "ስፔን"
-
-#: ../lib/network/connection/providers/xdsl.pm:1149
-#, c-format
-msgid "Sweden"
-msgstr "ስዊድን"
-
-#: ../lib/network/connection/providers/xdsl.pm:1158
-#: ../lib/network/connection/providers/xdsl.pm:1167
-#: ../lib/network/connection/providers/xdsl.pm:1177
-#, c-format
-msgid "Switzerland"
-msgstr "ስዊዘርላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:1186
-#, c-format
-msgid "Thailand"
-msgstr "ታይላንድ"
-
-#: ../lib/network/connection/providers/xdsl.pm:1196
-#, c-format
-msgid "Tunisia"
-msgstr "ቱኒዚያ"
-
-#: ../lib/network/connection/providers/xdsl.pm:1207
-#, c-format
-msgid "Turkey"
-msgstr "ቱርክ"
-
-#: ../lib/network/connection/providers/xdsl.pm:1220
-#, c-format
-msgid "United Arab Emirates"
-msgstr "የተባበሩት አረብ ኤምሬትስ"
-
-#: ../lib/network/connection/providers/xdsl.pm:1230
-#: ../lib/network/connection/providers/xdsl.pm:1240
-#: ../lib/network/netconnect.pm:38
-#, c-format
-msgid "United Kingdom"
-msgstr "እንግሊዝ"
-
-#: ../lib/network/connection/wireless.pm:11
-#, c-format
-msgid "Wireless"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:21
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:38
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:39
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:40
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
+msgid "Get DNS servers from DHCP"
+msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-#: ../lib/network/connection/wireless.pm:181 ../lib/network/thirdparty.pm:174
+#: ../bin/drakconnect:383 ../lib/network/connection/ethernet.pm:145
#, c-format
-msgid "Firmware files are required for this device."
+msgid "Get YP servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:209
+#: ../bin/drakconnect:384 ../lib/network/connection/ethernet.pm:146
#, c-format
-msgid ""
-"Your wireless card is disabled, please enable the wireless switch (RF kill "
-"switch) first."
+msgid "Get NTPD servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:270
-#, fuzzy, c-format
-msgid "Wireless settings"
-msgstr "ሽቦ አልባ ግንኙነት"
-
-#: ../lib/network/connection/wireless.pm:275 ../tools/drakconnect:406
-#: ../tools/drakroam:119
+#: ../bin/drakconnect:406 ../lib/network/connection/wireless.pm:312
+#: ../lib/network/drakroam.pm:282
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "የመሸፈኛ ዘዴ"
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Managed"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Master"
-msgstr "ገዢ"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Repeater"
-msgstr "ደጋሚ"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Secondary"
-msgstr "ሁለተኛ"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Auto"
-msgstr "ራስ-ገዝ"
-
-#: ../lib/network/connection/wireless.pm:279 ../tools/drakconnect:407
+#: ../bin/drakconnect:407 ../lib/network/connection/wireless.pm:316
#, c-format
msgid "Network name (ESSID)"
msgstr "የመረብ ስም (ESSID)"
-#: ../lib/network/connection/wireless.pm:281
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:283 ../tools/drakconnect:421
-#, c-format
-msgid "Encryption key"
-msgstr "የሚስጢራዊ ግልበጣ ቁልፍ"
-
-#: ../lib/network/connection/wireless.pm:285 ../tools/drakconnect:408
+#: ../bin/drakconnect:408 ../lib/network/connection/wireless.pm:322
#, c-format
msgid "Network ID"
msgstr "የመረብ መለያ"
-#: ../lib/network/connection/wireless.pm:286 ../tools/drakconnect:409
+#: ../bin/drakconnect:409 ../lib/network/connection/wireless.pm:323
#, c-format
msgid "Operating frequency"
msgstr ""
-#: ../lib/network/connection/wireless.pm:287 ../tools/drakconnect:410
+#: ../bin/drakconnect:410 ../lib/network/connection/wireless.pm:324
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: ../lib/network/connection/wireless.pm:288 ../tools/drakconnect:411
+#: ../bin/drakconnect:411 ../lib/network/connection/wireless.pm:325
#, fuzzy, c-format
msgid "Bitrate (in b/s)"
msgstr "በጥቅም ላይ ያለ"
-#: ../lib/network/connection/wireless.pm:289 ../tools/drakconnect:422
+#: ../bin/drakconnect:421 ../lib/network/connection/wireless.pm:320
#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
+msgid "Encryption key"
+msgstr "የሚስጢራዊ ግልበጣ ቁልፍ"
-#: ../lib/network/connection/wireless.pm:290
+#: ../bin/drakconnect:422 ../lib/network/connection/wireless.pm:326
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
+msgid "RTS/CTS"
+msgstr "RTS/CTS"
-#: ../lib/network/connection/wireless.pm:297 ../tools/drakconnect:423
+#: ../bin/drakconnect:423 ../lib/network/connection/wireless.pm:334
#, c-format
msgid "Fragmentation"
msgstr ""
-#: ../lib/network/connection/wireless.pm:298 ../tools/drakconnect:424
+#: ../bin/drakconnect:424 ../lib/network/connection/wireless.pm:335
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:299
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: ../lib/network/connection/wireless.pm:306 ../tools/drakconnect:425
+#: ../bin/drakconnect:425 ../lib/network/connection/wireless.pm:343
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:307
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:315 ../tools/drakconnect:426
+#: ../bin/drakconnect:426 ../lib/network/connection/wireless.pm:352
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:317
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:335
-#, c-format
-msgid "An encryption key is required."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:341
-#, 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 ""
-
-#: ../lib/network/connection/wireless.pm:347
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:359
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:460
-#, c-format
-msgid "Associated to wireless network \"%s\" on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:461
-#, c-format
-msgid "Lost association to wireless network on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:8
+#: ../bin/drakconnect:434
#, fuzzy, c-format
-msgid "DSL"
-msgstr "DNS"
-
-#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB ሞዴም"
-
-#: ../lib/network/connection/xdsl.pm:104
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:176
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:179
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:180
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:181
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:182
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:183
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:223
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:224
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:27
-#: ../lib/network/ndiswrapper.pm:42 ../lib/network/ndiswrapper.pm:86
-#: ../lib/network/ndiswrapper.pm:102 ../lib/network/netconnect.pm:131
-#: ../lib/network/netconnect.pm:179 ../lib/network/netconnect.pm:268
-#: ../lib/network/netconnect.pm:813 ../lib/network/thirdparty.pm:114
-#: ../lib/network/thirdparty.pm:131 ../lib/network/thirdparty.pm:214
-#: ../lib/network/thirdparty.pm:216 ../lib/network/thirdparty.pm:237
-#: ../tools/drakconnect:676 ../tools/drakconnect:680 ../tools/drakconnect:689
-#: ../tools/drakconnect:705 ../tools/drakgw:184 ../tools/drakhosts:100
-#: ../tools/drakhosts:245 ../tools/drakhosts:252 ../tools/drakhosts:259
-#: ../tools/drakinvictus:72 ../tools/draknetprofile:113 ../tools/draknfs:85
-#: ../tools/draknfs:106 ../tools/draknfs:273 ../tools/draknfs:400
-#: ../tools/draknfs:402 ../tools/draknfs:405 ../tools/draknfs:497
-#: ../tools/draknfs:504 ../tools/draknfs:567 ../tools/draknfs:574
-#: ../tools/draknfs:581 ../tools/drakroam:79 ../tools/drakroam:92
-#: ../tools/draksambashare:372 ../tools/draksambashare:379
-#: ../tools/draksambashare:382 ../tools/draksambashare:428
-#: ../tools/draksambashare:452 ../tools/draksambashare:518
-#: ../tools/draksambashare:533 ../tools/draksambashare:611
-#: ../tools/draksambashare:678 ../tools/draksambashare:778
-#: ../tools/draksambashare:785 ../tools/draksambashare:916
-#: ../tools/draksambashare:1109 ../tools/draksambashare:1118
-#: ../tools/draksambashare:1140 ../tools/draksambashare:1149
-#: ../tools/draksambashare:1168 ../tools/draksambashare:1177
-#: ../tools/draksambashare:1189
-#, c-format
-msgid "Error"
-msgstr "ስህተት"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/netconnect.pm:131 ../lib/network/thirdparty.pm:114
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "የ%s ጥቅሎችን መትከል አልተቻለም!"
-
-#: ../lib/network/drakfirewall.pm:12
-#, c-format
-msgid "Web Server"
-msgstr "የመረብ ሰርቨር"
-
-#: ../lib/network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "የዘርፍ ስም ሰርቨር"
-
-#: ../lib/network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH ሰርቨር"
-
-#: ../lib/network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "የFTP ተጠሪ"
-
-#: ../lib/network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "የመልዕክት ተጠሪ"
-
-#: ../lib/network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "የቴልኔት ሰርቨር"
-
-#: ../lib/network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "የCUPS ሰርቨር"
-
-#: ../lib/network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
-#, fuzzy, c-format
-msgid "Firewall configuration"
-msgstr "በእጅ ምርጫ"
-
-#: ../lib/network/drakfirewall.pm:166
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:172
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:189
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
-#, c-format
-msgid "Firewall"
-msgstr "የእሳት ግድግዳ"
-
-#: ../lib/network/drakfirewall.pm:192
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:198
-#, 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.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:208
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "ማንኛውም (የእሳት ግድግዳ የለም)"
-
-#: ../lib/network/drakfirewall.pm:210
-#, c-format
-msgid "Other ports"
-msgstr "ሌላ ወደቦች"
-
-#: ../lib/network/drakfirewall.pm:211
-#, c-format
-msgid "Log firewall messages in system logs"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:255 ../lib/network/drakfirewall.pm:258
-#: ../tools/drakids:40 ../tools/drakids:65 ../tools/drakids:181
-#: ../tools/drakids:190 ../tools/drakids:215 ../tools/drakids:224
-#: ../tools/drakids:234 ../tools/drakids:326 ../tools/net_applet:77
-#: ../tools/net_applet:238 ../tools/net_applet:514 ../tools/net_applet:541
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "የእሳት ግድግዳ"
-
-#: ../lib/network/drakfirewall.pm:256
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activities should be watched."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:261
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:30
-#, fuzzy, c-format
-msgid "VPN configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: ../lib/network/drakvpn.pm:34
-#, fuzzy, c-format
-msgid "Choose the VPN type"
-msgstr "አዲሱን መጠን ይምረጡ"
-
-#: ../lib/network/drakvpn.pm:49
-#, c-format
-msgid "Initializing tools and detecting devices for %s..."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:52
-#, fuzzy, c-format
-msgid "Unable to initialize %s connection type!"
-msgstr "ያልታወቀ የግንኙነት አይነት"
-
-#: ../lib/network/drakvpn.pm:60
-#, c-format
-msgid "Please select an existing VPN connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:64
-#, fuzzy, c-format
-msgid "Configure a new connection..."
-msgstr "ግንኙነትዎን በመሞከር ላይ..."
-
-#: ../lib/network/drakvpn.pm:66
-#, fuzzy, c-format
-msgid "New name"
-msgstr "እውነተኛ ስም"
-
-#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
-#: ../lib/network/ndiswrapper.pm:92 ../lib/network/netconnect.pm:471
-#: ../tools/drakconnect:978 ../tools/draknetprofile:129
-#: ../tools/draknetprofile:131 ../tools/drakproxy:36
-#, c-format
-msgid "Warning"
-msgstr "ማስጠንቀቂያ"
-
-#: ../lib/network/drakvpn.pm:70
-#, c-format
-msgid "You must select an existing connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:81
-#, fuzzy, c-format
-msgid "Please enter the required key(s)"
-msgstr "እባክዎ የWebDAV ሰርቨር URL ያስገቡ"
-
-#: ../lib/network/drakvpn.pm:86
-#, fuzzy, c-format
-msgid "Please enter the settings of your VPN connection"
-msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
-
-#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
-#, c-format
-msgid "Do you want to start the connection now?"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:100
-#, fuzzy, c-format
-msgid "Connection failed."
-msgstr "የግንኙነት ስም"
-
-#: ../lib/network/drakvpn.pm:108
-#, c-format
-msgid ""
-"The VPN connection is now configured.\n"
-"\n"
-"This VPN connection can be automatically started together with a network "
-"connection.\n"
-"It can be done by reconfiguring the network connection and selecting this "
-"VPN connection.\n"
-msgstr ""
-
-#: ../lib/network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "መጋራት የለም"
-
-#: ../lib/network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "የአገልግሎቶች መቆጣጠሪያ"
-
-#: ../lib/network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "ሚስጢራዊ ቃል (እንደገና)"
-
-#: ../lib/network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: ../lib/network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:137
-#, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr ""
-
-#: ../lib/network/ifw.pm:146
-#, c-format
-msgid ""
-"The \"%s\" application is trying to make a service (%s) available to the "
-"network."
-msgstr ""
-
-#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
-#: ../lib/network/ifw.pm:150
-#, fuzzy, c-format
-msgid "port %d"
-msgstr "ሪፖርት"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#, c-format
-msgid "Manual"
-msgstr "መመሪያ"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
-#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
-#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
-#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#: ../lib/network/netconnect.pm:638
-#, c-format
-msgid "Automatic"
-msgstr "ራስ-ገዝ"
-
-#: ../lib/network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:86
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:92
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:102
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:115
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "የነሲብ URLን አታስችል"
-
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:118
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "ሲስተም ትከል"
-
-#: ../lib/network/ndiswrapper.pm:129
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:37
-#, c-format
-msgid "United States"
-msgstr "አሜሪካ"
-
-#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
-#: ../lib/network/netconnect.pm:507
-#, c-format
-msgid "Manual choice"
-msgstr "የመመሪያ ምርጫ"
-
-#: ../lib/network/netconnect.pm:60
-#, c-format
-msgid "Internal ISDN card"
-msgstr "ውስጣዊ ISDN ካርድ"
-
-#: ../lib/network/netconnect.pm:65
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:67 ../tools/drakconnect:564
-#, fuzzy, c-format
-msgid "European protocol (EDSS1)"
-msgstr "መካከለኛ አውሮፓውያን፣ Macintosh"
-
-#: ../lib/network/netconnect.pm:68 ../tools/drakconnect:565
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:118 ../tools/drakconnect:61
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "የመረብ እና ኢንተርኔት ምርጫ"
-
-#: ../lib/network/netconnect.pm:123
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "ለማስተካከል የሚፈልጉትን ግንኙነት ይምረጡ"
-
-#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
-#: ../lib/network/netconnect.pm:788
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "ለማስተካከል የመረብ እይታ ይምረጡ:"
-
-#: ../lib/network/netconnect.pm:164
-#, c-format
-msgid "No device can be found for this connection type."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:173
-#, fuzzy, c-format
-msgid "Hardware Configuration"
-msgstr "የመረብ ምርጫ"
-
-#: ../lib/network/netconnect.pm:177 ../tools/drakroam:90
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "አገልግሎቶችን ሰይም"
-
-#: ../lib/network/netconnect.pm:194
-#, c-format
-msgid "Please select your provider:"
-msgstr ""
+msgid "Start at boot"
+msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
-#: ../lib/network/netconnect.pm:209 ../tools/drakroam:170
+#: ../bin/drakconnect:440 ../lib/network/connection/ethernet.pm:220
#, fuzzy, c-format
-msgid "Scanning for networks..."
+msgid "Network Hotplugging"
msgstr "Name=መረብ"
-#: ../lib/network/netconnect.pm:212
-#, c-format
-msgid "Please select your network:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:241
-#, c-format
-msgid ""
-"Please select your connection protocol.\n"
-"If you do not know it, keep the preselected protocol."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
-#, c-format
-msgid "Connection control"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Connection Configuration"
-msgstr "የግንኙነት ምርጫ"
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Please fill or check the field below"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:318
-#, c-format
-msgid "Your personal phone number"
-msgstr "የራስዎ ስልክ ቁጥር"
-
-#: ../lib/network/netconnect.pm:319
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "የአገልግሎት ሰጪው ስም (ለምሳሌ: provider.net)"
-
-#: ../lib/network/netconnect.pm:320 ../tools/drakconnect:494
-#, c-format
-msgid "Provider phone number"
-msgstr "የአገልግሎት ሰጪው ስልክ ቁጥር"
-
-#: ../lib/network/netconnect.pm:321
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "የአገልግሎት ሰጪ ስልክ ቁጥር"
-
-#: ../lib/network/netconnect.pm:322
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "የአገልግሎት ሰጪ ስልክ ቁጥር"
-
-#: ../lib/network/netconnect.pm:323 ../tools/drakconnect:446
+#: ../bin/drakconnect:446 ../lib/network/netconnect.pm:323
#, fuzzy, c-format
msgid "Dialing mode"
msgstr "የመሸፈኛ ዘዴ"
-#: ../lib/network/netconnect.pm:324 ../tools/drakconnect:451
-#: ../tools/drakconnect:518
+#: ../bin/drakconnect:451 ../bin/drakconnect:518
+#: ../lib/network/netconnect.pm:324
#, c-format
msgid "Connection speed"
msgstr "የግንኙነት ፍጥነት"
-#: ../lib/network/netconnect.pm:325 ../tools/drakconnect:456
+#: ../bin/drakconnect:456 ../lib/network/netconnect.pm:325
#, c-format
msgid "Connection timeout (in sec)"
msgstr ""
-#: ../lib/network/netconnect.pm:328 ../tools/drakconnect:555
-#, c-format
-msgid "Card IRQ"
-msgstr "ካርድ IRQ"
-
-#: ../lib/network/netconnect.pm:329 ../tools/drakconnect:556
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "ካርድ mem (DMA)"
-
-#: ../lib/network/netconnect.pm:330 ../tools/drakconnect:557
-#, c-format
-msgid "Card IO"
-msgstr "ካርድ IO"
-
-#: ../lib/network/netconnect.pm:331 ../tools/drakconnect:558
-#, c-format
-msgid "Card IO_0"
-msgstr "ካርድ IO_0"
-
-#: ../lib/network/netconnect.pm:332
-#, c-format
-msgid "Card IO_1"
-msgstr "ካርድ IO_1"
-
-#: ../lib/network/netconnect.pm:350 ../lib/network/netconnect.pm:385
-#: ../tools/drakconnect:719 ../tools/drakgw:123
-#, c-format
-msgid "Net Device"
-msgstr "የመረብ መሳሪያ"
-
-#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "ውጫዊ የISDN ሞዴም"
-
-#: ../lib/network/netconnect.pm:384
-#, fuzzy, c-format
-msgid "Select a device!"
-msgstr "የመረብ ዕቃ"
-
-#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
-#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "የISDN ምርጫ"
-
-#: ../lib/network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "ምን አይነት ካርድ ነው ያልዎት?"
-
-#: ../lib/network/netconnect.pm:404
-#, 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 ""
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "ቀጥል"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "ይቁም"
-
-#: ../lib/network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "ከሚከተሉት የISDN ካርዶች ውስጥ የትኛው ነው የእርሶ?"
-
-#: ../lib/network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:434 ../tools/drakconnect:113
-#, c-format
-msgid "Driver"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:448 ../tools/drakconnect:113
-#: ../tools/drakconnect:305 ../tools/drakconnect:563 ../tools/drakids:252
-#: ../tools/drakvpn-old:839
-#, c-format
-msgid "Protocol"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
-#, c-format
-msgid "Provider:"
-msgstr "አገልግሎት ሰጪ:"
-
-#: ../lib/network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "ለማስተካከል ሞዴም ይምረጡ:"
-
-#: ../lib/network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr "ሞደም"
-
-#: ../lib/network/netconnect.pm:527
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:556
-#, c-format
-msgid "Select your provider:"
-msgstr "አግልግሎት ሰጪዎን ይምረጡ"
-
-#: ../lib/network/netconnect.pm:580
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "ባለሁለት አቅጣጫ ምርጫዎች"
-
-#: ../lib/network/netconnect.pm:583
-#, c-format
-msgid "Connection name"
-msgstr "የግንኙነት ስም"
-
-#: ../lib/network/netconnect.pm:584
-#, c-format
-msgid "Phone number"
-msgstr "የስልክ ቁጥር"
-
-#: ../lib/network/netconnect.pm:585
-#, fuzzy, c-format
-msgid "Login ID"
-msgstr "መለያ አስገባ"
-
-#: ../lib/network/netconnect.pm:586 ../lib/network/vpn/vpnc.pm:56
-#: ../tools/drakinvictus:110
-#, c-format
-msgid "Password"
-msgstr "ሚስጢራዊ ቃል"
-
-#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:603
-#, c-format
-msgid "IP parameters"
-msgstr "IP መለኪያዎች"
-
-#: ../lib/network/netconnect.pm:605
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnet mask"
-
-#: ../lib/network/netconnect.pm:617
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:620
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: ../lib/network/netconnect.pm:621
-#, c-format
-msgid "Domain name"
-msgstr "የዶሜን ስም"
-
-#: ../lib/network/netconnect.pm:622 ../tools/drakconnect:996
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:623 ../tools/drakconnect:997
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:624
-#, c-format
-msgid "Set hostname from IP"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:637
-#, c-format
-msgid "Gateway IP address"
-msgstr "የGateway IP አድራሻ"
-
-#: ../lib/network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
-
-#: ../lib/network/netconnect.pm:672
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:674
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:683
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-
-#: ../lib/network/netconnect.pm:696
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:704 ../tools/drakconnect:1027
-#, c-format
-msgid "Testing your connection..."
-msgstr "ግንኙነትዎን በመሞከር ላይ..."
-
-#: ../lib/network/netconnect.pm:723
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "ሲስተሙ አሁን ከኢንተርኔት ጋር ተገናኝቷል።"
-
-#: ../lib/network/netconnect.pm:724
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "ለድህንነት ሲባል፣ ግንኙነቱ አሁን ይቋረጣል።"
-
-#: ../lib/network/netconnect.pm:725
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:740
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:743
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:744
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:756
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB ሞዴም"
-
-#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan ሞዴም"
-
-#: ../lib/network/netconnect.pm:759
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus ሞዴም"
-
-#: ../lib/network/netconnect.pm:760
-#, c-format
-msgid "LAN connection"
-msgstr "የቅርብ መረብ ግንኙነት"
-
-#: ../lib/network/netconnect.pm:761 ../tools/drakroam:29
-#, c-format
-msgid "Wireless connection"
-msgstr "ሽቦ አልባ ግንኙነት"
-
-#: ../lib/network/netconnect.pm:762
-#, c-format
-msgid "ADSL connection"
-msgstr "የADSL ግንኙነት"
-
-#: ../lib/network/netconnect.pm:763
-#, c-format
-msgid "Cable connection"
-msgstr "የኬብል ግንኙነት"
-
-#: ../lib/network/netconnect.pm:764
-#, c-format
-msgid "ISDN connection"
-msgstr "የISDN ግንኙነት"
-
-#: ../lib/network/netconnect.pm:765
-#, c-format
-msgid "Modem connection"
-msgstr "የሞዴም ግንኙነት"
-
-#: ../lib/network/netconnect.pm:766
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:768
+#: ../bin/drakconnect:462 ../lib/network/connection.pm:165
#, fuzzy, c-format
-msgid "(detected on port %s)"
-msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-
-# -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../lib/network/netconnect.pm:770
-#, fuzzy, c-format
-msgid "(detected %s)"
-msgstr "አውቶማቲካሊ ተፈልጎ የተገኘ"
-
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected)"
-msgstr "(ተገኝቷል)"
-
-#: ../lib/network/netconnect.pm:771
-#, c-format
-msgid "Network Configuration"
-msgstr "የመረብ ምርጫ"
-
-#: ../lib/network/netconnect.pm:772
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:773
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:777
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "ህገ ወጥ የዶሴ ስም"
-
-#: ../lib/network/netconnect.pm:778
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:779
-#, 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 ""
-
-#: ../lib/network/netconnect.pm:782
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:783
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:784
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:785
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:786
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:787
-#, c-format
-msgid "Internet connection"
-msgstr "የኢንተርኔት ግንኙነት"
-
-#: ../lib/network/netconnect.pm:789
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:790
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:791
-#, 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 ""
-
-#: ../lib/network/netconnect.pm:796
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:797
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:798 ../tools/drakconnect:689
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:799
-#, c-format
-msgid "Gateway device"
-msgstr "የGateway መሳሪያ"
-
-#: ../lib/network/netconnect.pm:813
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/network.pm:429
-#, c-format
-msgid "Proxies configuration"
-msgstr "የወኪሎች ምርጫ"
-
-#: ../lib/network/network.pm:430
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: ../lib/network/network.pm:431
-#, c-format
-msgid "HTTP proxy"
-msgstr "የHTTP ወኪል"
-
-#: ../lib/network/network.pm:432
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: ../lib/network/network.pm:433
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: ../lib/network/network.pm:434
-#, c-format
-msgid "FTP proxy"
-msgstr "የFTP ወኪል"
-
-#: ../lib/network/network.pm:435
-#, fuzzy, c-format
-msgid "No proxy for (comma separated list):"
-msgstr "%d በነጠላ ሰረዝ የተለዩ ሐረጎች"
-
-#: ../lib/network/network.pm:440
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "ወኪል http://... መሆን አለበት"
-
-#: ../lib/network/network.pm:441
-#, fuzzy, c-format
-msgid "Proxy should be http://... or https://..."
-msgstr "ወኪል http://... መሆን አለበት"
-
-#: ../lib/network/network.pm:442
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL በ'ftp:' ወይም በ'http:' መጀመር አለበት"
-
-#: ../lib/network/shorewall.pm:61
-#, c-format
-msgid ""
-"Please select the interfaces that will be protected by the firewall.\n"
-"\n"
-"All interfaces directly connected to Internet should be selected,\n"
-"while interfaces connected to a local network may be unselected.\n"
-"\n"
-"Which interfaces should be protected?\n"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:136
-#, c-format
-msgid "Keep custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:137
-#, c-format
-msgid "Drop custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:142
-#, c-format
-msgid ""
-"Your firewall configuration has been manually edited and contains\n"
-"rules that may conflict with the configuration that has just been set up.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:134
-#, c-format
-msgid "Some components (%s) are required but aren't available for %s hardware."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:135
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:137
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:138
-#, c-format
-msgid "The following component is missing: %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:140
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:177 ../lib/network/thirdparty.pm:182
-#, c-format
-msgid "Use a floppy"
-msgstr "ፍሎፒ ተጠቀም"
-
-#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:185
-#, c-format
-msgid "Use my Windows partition"
-msgstr "የWindows ክፋዬን ተጠቀም"
-
-#: ../lib/network/thirdparty.pm:179
-#, c-format
-msgid "Select file"
-msgstr "ፋይል ይምረጡ"
-
-#: ../lib/network/thirdparty.pm:190
-#, c-format
-msgid "Please select the firmware file (for example: %s)"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:214
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "ከሲስተሜ ውስጥ ፊደላትን አስወግድ"
-
-#: ../lib/network/thirdparty.pm:216
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:226
-#, c-format
-msgid "Insert floppy"
-msgstr "ፍሎፒ ያስገቡ"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid "Next"
-msgstr "የሚቀጥለው"
-
-#: ../lib/network/thirdparty.pm:237
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:319
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:330
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግኘት እና በማስተካከል ላይ ነው..."
-
-#: ../lib/network/vpn/openvpn.pm:107
-#, c-format
-msgid "X509 Public Key Infrastructure"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:108
-#, c-format
-msgid "Static Key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:115
-#, c-format
-msgid "Type"
-msgstr "አይነት"
-
-#. -PO: please don't translate the CA acronym
-#: ../lib/network/vpn/openvpn.pm:142
-#, c-format
-msgid "Certificate Authority (CA)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:148
-#, c-format
-msgid "Certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:154
-#, fuzzy, c-format
-msgid "Key"
-msgstr "ኬንያ"
-
-#: ../lib/network/vpn/openvpn.pm:160
-#, fuzzy, c-format
-msgid "TLS control channel key"
-msgstr "የግራ Control ቁልፍ"
-
-#: ../lib/network/vpn/openvpn.pm:167
-#, c-format
-msgid "Key direction"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:175
-#, c-format
-msgid "Authenticate using username and password"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:181
-#, c-format
-msgid "Check server certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:187
-#, c-format
-msgid "Cipher algorithm"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:191
-#, c-format
-msgid "Default"
-msgstr "ቀዳሚ"
-
-#: ../lib/network/vpn/openvpn.pm:195
-#, c-format
-msgid "Size of cipher key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:206
-#, fuzzy, c-format
-msgid "Get from server"
-msgstr "የቴልኔት ሰርቨር"
-
-#: ../lib/network/vpn/openvpn.pm:216
-#, fuzzy, c-format
-msgid "Gateway port"
-msgstr "Gateway"
-
-#: ../lib/network/vpn/openvpn.pm:227 ../tools/drakgw:176
-#, fuzzy, c-format
-msgid "Local IP address"
-msgstr "IP አድራሻ"
-
-#: ../lib/network/vpn/openvpn.pm:232
-#, fuzzy, c-format
-msgid "Remote IP address"
-msgstr "የGateway IP አድራሻ"
-
-#: ../lib/network/vpn/openvpn.pm:237
-#, c-format
-msgid "Use TCP protocol"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:243
-#, c-format
-msgid "Virtual network device type"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:250
-#, c-format
-msgid "Virtual network device number (optional)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:365
-#, c-format
-msgid "Starting connection.."
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:380
-#, c-format
-msgid "Please insert your token"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:9
-#, c-format
-msgid "Cisco VPN Concentrator"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:43
-#, fuzzy, c-format
-msgid "Group name"
-msgstr "የብድን መለያ ቁጥር"
-
-#: ../lib/network/vpn/vpnc.pm:47
-#, c-format
-msgid "Group secret"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:52
-#, c-format
-msgid "Username"
-msgstr "የተጠቃሚ ስም"
-
-#: ../lib/network/vpn/vpnc.pm:61
-#, c-format
-msgid "Use Cisco-UDP encapsulation"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:67
-#, c-format
-msgid "Use specific UDP port"
-msgstr ""
-
-#: ../tools/drakconnect:81
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "የቀይ ባርኔታ መረብ"
+msgid "Metric"
+msgstr "ሜክሲኮ"
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
+#: ../bin/drakconnect:482 ../lib/network/connection/cable.pm:48
+#: ../lib/network/netconnect.pm:587
#, c-format
-msgid "Gateway:"
+msgid "Authentication"
msgstr ""
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, fuzzy, c-format
-msgid "Interface:"
-msgstr "የተጠቃሚው እይታ"
-
-#: ../tools/drakconnect:97 ../tools/net_monitor:119
+#: ../bin/drakconnect:492 ../lib/network/connection/cable.pm:50
+#: ../lib/network/connection/ppp.pm:22 ../lib/network/netconnect.pm:326
+#: ../lib/network/vpn/openvpn.pm:393
#, c-format
-msgid "Wait please"
-msgstr "ይጠብቁ እባክዎ"
-
-#: ../tools/drakconnect:113 ../tools/drakinvictus:105
-#, fuzzy, c-format
-msgid "Interface"
-msgstr "የተጠቃሚው እይታ"
-
-#: ../tools/drakconnect:113
-#, c-format
-msgid "State"
-msgstr "ሁኔታ"
-
-#: ../tools/drakconnect:130
-#, c-format
-msgid "Hostname: "
-msgstr "የእንግዳ ተቀባይ ስም፦ "
-
-#: ../tools/drakconnect:132
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "ፕሮግራሙን አስተካክል"
-
-#: ../tools/drakconnect:146 ../tools/drakconnect:850
-#, c-format
-msgid "LAN configuration"
-msgstr "የቅርብ መረብ ምርጫ"
-
-#: ../tools/drakconnect:151
-#, c-format
-msgid "Configure Local Area Network..."
+msgid "Account Login (user name)"
msgstr ""
-#: ../tools/drakconnect:157 ../tools/drakconnect:240 ../tools/draknfs:181
-#, c-format
-msgid "Help"
-msgstr "እርዳታ"
-
-#: ../tools/drakconnect:159 ../tools/drakconnect:241 ../tools/drakconnect:245
-#: ../tools/drakinvictus:140
-#, c-format
-msgid "Apply"
-msgstr "ተጠቀም"
-
-#: ../tools/drakconnect:161 ../tools/drakconnect:942 ../tools/drakconnect:1033
-#: ../tools/draknetprofile:106 ../tools/net_monitor:341
-#, c-format
-msgid "Cancel"
-msgstr "ተወው"
-
-#: ../tools/drakconnect:162 ../tools/drakconnect:857 ../tools/drakconnect:944
-#: ../tools/drakconnect:1034 ../tools/draknetprofile:108
-#: ../tools/net_monitor:342
-#, c-format
-msgid "Ok"
-msgstr "እሺ"
-
-#: ../tools/drakconnect:164 ../tools/drakconnect:636 ../tools/drakgw:359
-#: ../tools/drakroam:251 ../tools/drakroam:289 ../tools/draksambashare:208
+#: ../bin/drakconnect:493 ../lib/network/connection/cable.pm:52
+#: ../lib/network/connection/ppp.pm:23 ../lib/network/netconnect.pm:327
+#: ../lib/network/vpn/openvpn.pm:394
#, c-format
-msgid "Please wait"
-msgstr "እባክዎ ይጠብቁ"
-
-#: ../tools/drakconnect:166 ../tools/drakconnect:638
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "እባክዎ ይጠብቁ... ምርጫውን በስራ ላይ አያዋለ ነው"
+msgid "Account Password"
+msgstr "የመዝገብ ሚስጢራዊ ቃል"
-#: ../tools/drakconnect:192
+#: ../bin/drakconnect:494 ../lib/network/netconnect.pm:320
#, c-format
-msgid "Manage connections"
-msgstr "ግንኙነቶችን ይቆጣጠሩ"
+msgid "Provider phone number"
+msgstr "የአገልግሎት ሰጪው ስልክ ቁጥር"
-#: ../tools/drakconnect:219 ../tools/drakroam:302
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:10
+#: ../lib/network/netconnect.pm:75
#, c-format
-msgid "Device: "
-msgstr "መሳሪያ: "
+msgid "PAP"
+msgstr "PAP"
-#: ../tools/drakconnect:302
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:11
+#: ../lib/network/netconnect.pm:76
#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "የማስተካከያው አራሚ"
-
-#: ../tools/drakconnect:337
-#, c-format
-msgid "DNS servers"
-msgstr ""
+msgid "Terminal-based"
+msgstr "የተመሠረተው፦"
-#: ../tools/drakconnect:343
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:9
+#: ../lib/network/netconnect.pm:74
#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "የObjectDirectory ዶሜን"
-
-#: ../tools/drakconnect:351 ../tools/drakvpn-old:837
-#, c-format
-msgid "none"
-msgstr "ምንም"
+msgid "Script-based"
+msgstr "የተመሠረተው፦"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:12
+#: ../lib/network/netconnect.pm:77
#, c-format
-msgid "static"
-msgstr ""
+msgid "CHAP"
+msgstr "CHAP"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:13
+#: ../lib/network/netconnect.pm:78
#, c-format
-msgid "DHCP"
-msgstr "DHCP"
-
-#: ../tools/drakconnect:434
-#, fuzzy, c-format
-msgid "Start at boot"
-msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
+msgid "PAP/CHAP"
+msgstr "PAP/CHAP"
-#: ../tools/drakconnect:516
+#: ../bin/drakconnect:516
#, c-format
msgid "Flow control"
msgstr "የፍሰት ቁጥጥር"
-#: ../tools/drakconnect:517
+#: ../bin/drakconnect:517
#, fuzzy, c-format
msgid "Line termination"
msgstr " መለያ መስመር፦"
-#: ../tools/drakconnect:528
+#: ../bin/drakconnect:528
#, c-format
msgid "Modem timeout"
msgstr ""
-#: ../tools/drakconnect:532
+#: ../bin/drakconnect:532
#, fuzzy, c-format
msgid "Use lock file"
msgstr "ፋይሉ በፊትም ነበር። የ-yes ምርጫን ተጠቀሙ።"
-#: ../tools/drakconnect:534
+#: ../bin/drakconnect:534
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr ""
-#: ../tools/drakconnect:537
+#: ../bin/drakconnect:537
#, c-format
msgid "Busy wait"
msgstr "እባክዎ ይጠብቁ.."
-#: ../tools/drakconnect:542
+#: ../bin/drakconnect:542
#, fuzzy, c-format
msgid "Modem sound"
msgstr "ድምፅ የለም"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "ይቻል"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "አይቻል"
-#: ../tools/drakconnect:592
+#: ../bin/drakconnect:555 ../lib/network/netconnect.pm:328
+#, c-format
+msgid "Card IRQ"
+msgstr "ካርድ IRQ"
+
+#: ../bin/drakconnect:556 ../lib/network/netconnect.pm:329
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "ካርድ mem (DMA)"
+
+#: ../bin/drakconnect:557 ../lib/network/netconnect.pm:330
+#, c-format
+msgid "Card IO"
+msgstr "ካርድ IO"
+
+#: ../bin/drakconnect:558 ../lib/network/netconnect.pm:331
+#, c-format
+msgid "Card IO_0"
+msgstr "ካርድ IO_0"
+
+#: ../bin/drakconnect:564 ../lib/network/netconnect.pm:67
+#, fuzzy, c-format
+msgid "European protocol (EDSS1)"
+msgstr "መካከለኛ አውሮፓውያን፣ Macintosh"
+
+#: ../bin/drakconnect:565 ../lib/network/netconnect.pm:68
+#, c-format
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+
+#: ../bin/drakconnect:592
#, c-format
msgid "Vendor"
msgstr ""
-#: ../tools/drakconnect:593
+#: ../bin/drakconnect:593
#, c-format
msgid "Description"
msgstr "መግለጫ"
-#: ../tools/drakconnect:594
+#: ../bin/drakconnect:594
#, c-format
msgid "Media class"
msgstr ""
-#: ../tools/drakconnect:595
+#: ../bin/drakconnect:595
#, fuzzy, c-format
msgid "Module name"
msgstr "የፋይል ስም አቅድ"
-#: ../tools/drakconnect:596
+#: ../bin/drakconnect:596
#, fuzzy, c-format
msgid "Mac Address"
msgstr "ኢሜያል አድራሻ"
-#: ../tools/drakconnect:597
+#: ../bin/drakconnect:597
#, c-format
msgid "Bus"
msgstr ""
-#: ../tools/drakconnect:598
+#: ../bin/drakconnect:598
#, fuzzy, c-format
msgid "Location on the bus"
msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-#: ../tools/drakconnect:685 ../tools/drakconnect:766 ../tools/drakconnect:952
+#: ../bin/drakconnect:676 ../bin/drakconnect:680 ../bin/drakconnect:689
+#: ../bin/drakconnect:705 ../bin/drakgw:184 ../bin/drakhosts:100
+#: ../bin/drakhosts:245 ../bin/drakhosts:252 ../bin/drakhosts:259
+#: ../bin/drakinvictus:72 ../bin/draknetprofile:113 ../bin/draknfs:85
+#: ../bin/draknfs:106 ../bin/draknfs:276 ../bin/draknfs:409 ../bin/draknfs:411
+#: ../bin/draknfs:414 ../bin/draknfs:506 ../bin/draknfs:513 ../bin/draknfs:576
+#: ../bin/draknfs:583 ../bin/draknfs:590 ../bin/draksambashare:373
+#: ../bin/draksambashare:380 ../bin/draksambashare:383
+#: ../bin/draksambashare:429 ../bin/draksambashare:453
+#: ../bin/draksambashare:519 ../bin/draksambashare:534
+#: ../bin/draksambashare:612 ../bin/draksambashare:679
+#: ../bin/draksambashare:779 ../bin/draksambashare:786
+#: ../bin/draksambashare:917 ../bin/draksambashare:1110
+#: ../bin/draksambashare:1119 ../bin/draksambashare:1141
+#: ../bin/draksambashare:1150 ../bin/draksambashare:1169
+#: ../bin/draksambashare:1178 ../bin/draksambashare:1190
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakroam.pm:56 ../lib/network/drakroam.pm:69
+#: ../lib/network/drakvpn.pm:45 ../lib/network/drakvpn.pm:52
+#: ../lib/network/ndiswrapper.pm:27 ../lib/network/ndiswrapper.pm:42
+#: ../lib/network/ndiswrapper.pm:86 ../lib/network/ndiswrapper.pm:102
+#: ../lib/network/netconnect.pm:131 ../lib/network/netconnect.pm:179
+#: ../lib/network/netconnect.pm:268 ../lib/network/netconnect.pm:813
+#: ../lib/network/thirdparty.pm:115 ../lib/network/thirdparty.pm:132
+#: ../lib/network/thirdparty.pm:215 ../lib/network/thirdparty.pm:217
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Error"
+msgstr "ስህተት"
+
+#: ../bin/drakconnect:676 ../lib/network/connection/ethernet.pm:160
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../bin/drakconnect:680 ../lib/network/connection/ethernet.pm:165
+#, c-format
+msgid "Netmask should be in format 255.255.224.0"
+msgstr ""
+
+#: ../bin/drakconnect:685 ../bin/drakconnect:767 ../bin/drakconnect:953
#, fuzzy, c-format
msgid "No IP"
msgstr "የማተሚያ IP"
-#: ../tools/drakconnect:686 ../tools/drakconnect:767
+#: ../bin/drakconnect:686 ../bin/drakconnect:768
#, fuzzy, c-format
msgid "No Mask"
msgstr "ፋይል የለም"
-#: ../tools/drakconnect:705 ../tools/drakgw:307
+#: ../bin/drakconnect:689 ../lib/network/netconnect.pm:798
+#, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../bin/drakconnect:705 ../bin/drakgw:307
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../tools/drakconnect:714
+#: ../bin/drakconnect:714
#, fuzzy, c-format
msgid "Remove a network interface"
msgstr "የአቢወርድ ቋንቋ፦"
-#: ../tools/drakconnect:718
+#: ../bin/drakconnect:718
#, c-format
msgid "Select the network interface to remove:"
msgstr ""
-#: ../tools/drakconnect:750
+#: ../bin/drakconnect:719 ../bin/drakgw:123 ../lib/network/netconnect.pm:350
+#: ../lib/network/netconnect.pm:385
+#, c-format
+msgid "Net Device"
+msgstr "የመረብ መሳሪያ"
+
+#: ../bin/drakconnect:751
#, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
@@ -2573,92 +557,100 @@ msgid ""
"%s"
msgstr ""
-#: ../tools/drakconnect:751
+#: ../bin/drakconnect:752
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr ""
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "up"
msgstr "ወደላይ"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "down"
msgstr "ወደታች"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Connected"
msgstr "ተገናኝቷል"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Not connected"
msgstr "አልተገናኘም"
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Disconnect..."
msgstr "ግንኙነት አቋርጥ..."
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Connect..."
msgstr ""
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, fuzzy, c-format
msgid "Deactivate now"
msgstr "አሁኑኑ ይተላለፍ"
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, fuzzy, c-format
msgid "Activate now"
msgstr "አሁኑኑ ይተላለፍ"
-#: ../tools/drakconnect:854
+#: ../bin/drakconnect:855
#, c-format
msgid ""
"You do not have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../tools/drakconnect:868
+#: ../bin/drakconnect:869
#, c-format
msgid "LAN Configuration"
msgstr "የቅርብ መረብ ምርጫ"
-#: ../tools/drakconnect:880
+#: ../bin/drakconnect:881
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../tools/drakconnect:889
+#: ../bin/drakconnect:890
#, c-format
msgid "Boot Protocol"
msgstr ""
-#: ../tools/drakconnect:890
+#: ../bin/drakconnect:891
#, fuzzy, c-format
msgid "Started on boot"
msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-#: ../tools/drakconnect:926
+#: ../bin/drakconnect:927
#, c-format
msgid ""
"This interface has not been configured yet.\n"
"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
msgstr ""
-#: ../tools/drakconnect:974
+#: ../bin/drakconnect:975
#, fuzzy, c-format
msgid "Internet connection configuration"
msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-#: ../tools/drakconnect:980 ../tools/net_applet:68
+#: ../bin/drakconnect:979 ../bin/draknetprofile:129 ../bin/draknetprofile:131
+#: ../bin/drakproxy:36 ../lib/network/drakvpn.pm:70
+#: ../lib/network/drakvpn.pm:100 ../lib/network/ndiswrapper.pm:92
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid "Warning"
+msgstr "ማስጠንቀቂያ"
+
+#: ../bin/drakconnect:981 ../bin/net_applet:69
#, c-format
msgid ""
"You do not have any configured Internet connection.\n"
@@ -2666,52 +658,67 @@ msgid ""
msgstr ""
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: ../tools/drakconnect:981 ../tools/net_applet:69
+#: ../bin/drakconnect:982 ../bin/net_applet:70
#, fuzzy, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "የአቢወርድ ቋንቋ፦"
-#: ../tools/drakconnect:995
+#: ../bin/drakconnect:996
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: ../tools/drakconnect:998
+#: ../bin/drakconnect:997 ../lib/network/netconnect.pm:622
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr ""
+
+#: ../bin/drakconnect:998 ../lib/network/netconnect.pm:623
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr ""
+
+#: ../bin/drakconnect:999
#, c-format
msgid "Third DNS server (optional)"
msgstr ""
-#: ../tools/drakconnect:1020
+#: ../bin/drakconnect:1021
#, fuzzy, c-format
msgid "Internet Connection Configuration"
msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-#: ../tools/drakconnect:1021
+#: ../bin/drakconnect:1022
#, fuzzy, c-format
msgid "Internet access"
msgstr "Name=ኢንተርኔት"
-#: ../tools/drakconnect:1023 ../tools/net_monitor:98
+#: ../bin/drakconnect:1024 ../bin/net_monitor:98
#, fuzzy, c-format
msgid "Connection type: "
msgstr "የፋይሉ ዓይነት"
-#: ../tools/drakconnect:1026
+#: ../bin/drakconnect:1027
#, c-format
msgid "Status:"
msgstr "ሁኔታ፦"
-#: ../tools/drakconnect:1031
+#: ../bin/drakconnect:1028 ../lib/network/netconnect.pm:704
+#, c-format
+msgid "Testing your connection..."
+msgstr "ግንኙነትዎን በመሞከር ላይ..."
+
+#: ../bin/drakconnect:1032
#, c-format
msgid "Parameters"
msgstr "መለኪያዎች"
-#: ../tools/drakgw:71
+#: ../bin/drakgw:71
#, fuzzy, c-format
msgid "Internet Connection Sharing"
msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-#: ../tools/drakgw:75
+#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -2725,7 +732,7 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../tools/drakgw:91
+#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
@@ -2734,7 +741,7 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakgw:95
+#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -2743,17 +750,17 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakgw:101
+#: ../bin/drakgw:101
#, fuzzy, c-format
msgid "Reconfigure"
msgstr "ተስተካክሏል"
-#: ../tools/drakgw:122
+#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""
-#: ../tools/drakgw:141
+#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -2763,44 +770,49 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../tools/drakgw:152
+#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../tools/drakgw:173
+#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "የቀይ ባርኔታ መረብ"
-#: ../tools/drakgw:178
+#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
+#, fuzzy, c-format
+msgid "Local IP address"
+msgstr "IP አድራሻ"
+
+#: ../bin/drakgw:178
#, fuzzy, c-format
msgid "The internal domain name"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: ../tools/drakgw:184
+#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../tools/drakgw:200
+#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-#: ../tools/drakgw:204
+#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""
-#: ../tools/drakgw:205
+#: ../bin/drakgw:205
#, fuzzy, c-format
msgid "The DNS Server IP"
msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-#: ../tools/drakgw:232
+#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
@@ -2809,77 +821,77 @@ msgid ""
"If you do not know the meaning of an option, simply leave it as it is."
msgstr ""
-#: ../tools/drakgw:239
+#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "ራስ-ገዝ ትርጉሞች"
-#: ../tools/drakgw:240
+#: ../bin/drakgw:240
#, fuzzy, c-format
msgid "The DHCP start range"
msgstr "አዲስ ዝርዝር ጀምር"
-#: ../tools/drakgw:241
+#: ../bin/drakgw:241
#, fuzzy, c-format
msgid "The DHCP end range"
msgstr "አሁን ያለውን ጨዋታ ጨርስ"
-#: ../tools/drakgw:242
+#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr ""
-#: ../tools/drakgw:243
+#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../tools/drakgw:266
+#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""
-#: ../tools/drakgw:270
+#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""
-#: ../tools/drakgw:271
+#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""
-#: ../tools/drakgw:272
+#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: ../tools/drakgw:273
+#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "ፀባይ"
-#: ../tools/drakgw:274
+#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "የፊደል ቅርጽ መጠን፦"
-#: ../tools/drakgw:296
+#: ../bin/drakgw:296
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "የቋሚ ዲስክ መረጃ"
-#: ../tools/drakgw:313
+#: ../bin/drakgw:313
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr ""
-#: ../tools/drakgw:319
+#: ../bin/drakgw:319
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr ""
-#: ../tools/drakgw:325
+#: ../bin/drakgw:325
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -2888,477 +900,496 @@ msgid ""
" a Transparent Proxy Cache server (SQUID)."
msgstr ""
-#: ../tools/drakgw:359
+#: ../bin/drakgw:359
#, c-format
msgid "Disabling servers..."
msgstr ""
-#: ../tools/drakgw:373
+#: ../bin/drakgw:373
#, fuzzy, c-format
msgid "Firewalling configuration detected!"
msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-#: ../tools/drakgw:374
+#: ../bin/drakgw:374
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
-#: ../tools/drakgw:379
+#: ../bin/drakgw:379
#, c-format
msgid "Configuring..."
msgstr ""
-#: ../tools/drakgw:380
+#: ../bin/drakgw:380
#, c-format
msgid "Configuring firewall..."
msgstr ""
-#: ../tools/drakhosts:100
+#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""
-#: ../tools/drakhosts:110
+#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "ዝርዝር መረጃ"
-#: ../tools/drakhosts:111
+#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "ዝርዝር መረጃ"
-#: ../tools/drakhosts:112
+#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "ዝርዝር መረጃ"
-#: ../tools/drakhosts:116
+#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "የIP አድራሻ፦"
-#: ../tools/drakhosts:117
+#: ../bin/drakhosts:117
#, c-format
msgid "Host name:"
msgstr "የእንግዳ ተቀባይ ስም፦"
-#: ../tools/drakhosts:118
+#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "የእንግዳ ተቀባይ ስም"
-#: ../tools/drakhosts:122 ../tools/drakhosts:128 ../tools/draksambashare:209
-#: ../tools/draksambashare:230 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:209
+#: ../bin/draksambashare:230 ../bin/draksambashare:377
+#: ../bin/draksambashare:608 ../bin/draksambashare:775
#, c-format
msgid "Error!"
msgstr "ስህተት!"
-#: ../tools/drakhosts:122
+#: ../bin/drakhosts:122
#, fuzzy, c-format
msgid "Please enter a valid IP address."
msgstr "የGateway IP አድራሻ"
-#: ../tools/drakhosts:128
+#: ../bin/drakhosts:128
#, fuzzy, c-format
msgid "Same IP is already in %s file."
msgstr "%s አስቀድሞ ጥቅም ላይ ነው\n"
-#: ../tools/drakhosts:196
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:202
+#, c-format
+msgid "Host name"
+msgstr "የእንግዳ ተቀባይ ስም"
+
+#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "የእንግዳ ተቀባይ ስም"
-#: ../tools/drakhosts:206 ../tools/drakhosts:236
+#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, fuzzy, c-format
msgid "Manage hosts definitions"
msgstr "ግንኙነቶችን ይቆጣጠሩ"
-#: ../tools/drakhosts:222 ../tools/drakhosts:249
+#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""
-#: ../tools/drakhosts:241 ../tools/draknfs:563 ../tools/draksambashare:1102
-#: ../tools/draksambashare:1133 ../tools/draksambashare:1164
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakhosts:241 ../bin/draknfs:572 ../bin/draksambashare:1103
+#: ../bin/draksambashare:1134 ../bin/draksambashare:1165
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "ጨምር"
-#: ../tools/drakhosts:242
+#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "ማተሚያ ይጨመር"
-#: ../tools/drakhosts:245
+#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""
-#: ../tools/drakhosts:248 ../tools/draknfs:570 ../tools/draksambashare:1059
-#: ../tools/draksambashare:1104 ../tools/draksambashare:1135
-#: ../tools/draksambashare:1172
+#: ../bin/drakhosts:248 ../bin/draknfs:579 ../bin/draksambashare:1060
+#: ../bin/draksambashare:1105 ../bin/draksambashare:1136
+#: ../bin/draksambashare:1173
#, c-format
msgid "Modify"
msgstr "ለውጥ"
-#: ../tools/drakhosts:252
+#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""
-#: ../tools/drakhosts:255 ../tools/drakids:87 ../tools/drakids:96
-#: ../tools/draknfs:577 ../tools/draksambashare:1060
-#: ../tools/draksambashare:1112 ../tools/draksambashare:1143
-#: ../tools/draksambashare:1180 ../tools/drakvpn-old:253
-#: ../tools/drakvpn-old:391
+#: ../bin/drakhosts:255 ../bin/drakids:87 ../bin/drakids:96 ../bin/draknfs:586
+#: ../bin/draksambashare:1061 ../bin/draksambashare:1113
+#: ../bin/draksambashare:1144 ../bin/draksambashare:1181
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "አስወግድ"
-#: ../tools/drakhosts:259
+#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""
-#: ../tools/drakhosts:262 ../tools/drakinvictus:141
-#: ../tools/draknetprofile:147 ../tools/drakroam:309 ../tools/net_applet:138
+#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:147
+#: ../bin/net_applet:139 ../lib/network/drakroam.pm:353
#, c-format
msgid "Quit"
msgstr "ውጣ"
-#: ../tools/drakids:28
+#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: ../tools/drakids:65 ../tools/drakids:181 ../tools/drakids:190
-#: ../tools/drakids:215 ../tools/drakids:224 ../tools/drakids:234
-#: ../tools/drakids:326 ../tools/net_applet:238 ../tools/net_applet:514
+#: ../bin/drakids:40 ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190
+#: ../bin/drakids:215 ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:78 ../bin/net_applet:239 ../bin/net_applet:519
+#: ../bin/net_applet:546 ../lib/network/drakfirewall.pm:255
+#: ../lib/network/drakfirewall.pm:258
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "የእሳት ግድግዳ"
+
+#: ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190 ../bin/drakids:215
+#: ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:239 ../bin/net_applet:519
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
-#: ../tools/drakids:74 ../tools/drakids:102
+#: ../bin/drakids:74 ../bin/drakids:102
#, c-format
msgid "Log"
msgstr "Log"
-#: ../tools/drakids:78 ../tools/drakids:97 ../tools/net_applet:659
+#: ../bin/drakids:78 ../bin/drakids:97 ../bin/net_applet:663
#, fuzzy, c-format
msgid "Allow"
msgstr "ሁሉንም"
-#: ../tools/drakids:79 ../tools/drakids:88 ../tools/net_applet:660
+#: ../bin/drakids:79 ../bin/drakids:88 ../bin/net_applet:664
#, c-format
msgid "Block"
msgstr ""
-#: ../tools/drakids:80 ../tools/drakids:89 ../tools/drakids:98
-#: ../tools/drakids:109 ../tools/drakids:122 ../tools/drakids:130
-#: ../tools/draknfs:186 ../tools/net_monitor:120
+#: ../bin/drakids:80 ../bin/drakids:89 ../bin/drakids:98 ../bin/drakids:109
+#: ../bin/drakids:122 ../bin/drakids:130 ../bin/draknfs:188
+#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: ../tools/drakids:83
+#: ../bin/drakids:83
#, fuzzy, c-format
msgid "Allowed services"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: ../tools/drakids:92
+#: ../bin/drakids:92
#, fuzzy, c-format
msgid "Blocked services"
msgstr "ሁሉንም የምስል ፋይሎች"
-#: ../tools/drakids:106
+#: ../bin/drakids:106
#, fuzzy, c-format
msgid "Clear logs"
msgstr "ሁሉንም ሰርዝ"
-#: ../tools/drakids:107 ../tools/drakids:112 ../tools/net_applet:602
+#: ../bin/drakids:107 ../bin/drakids:112 ../bin/net_applet:607
#, c-format
msgid "Blacklist"
msgstr ""
-#: ../tools/drakids:108 ../tools/drakids:125 ../tools/net_applet:607
+#: ../bin/drakids:108 ../bin/drakids:125 ../bin/net_applet:612
#, c-format
msgid "Whitelist"
msgstr ""
-#: ../tools/drakids:116
+#: ../bin/drakids:116
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "ከLVM አስወግድ"
-#: ../tools/drakids:117
+#: ../bin/drakids:117
#, c-format
msgid "Move to whitelist"
msgstr ""
-#: ../tools/drakids:129
+#: ../bin/drakids:129
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "ከLVM አስወግድ"
-#: ../tools/drakids:247
+#: ../bin/drakids:247
#, c-format
msgid "Date"
msgstr "ቀን"
-#: ../tools/drakids:248
+#: ../bin/drakids:248
#, fuzzy, c-format
msgid "Attacker"
msgstr "ያለ ዝርዝሮች"
-#: ../tools/drakids:249
+#: ../bin/drakids:249
#, fuzzy, c-format
msgid "Attack type"
msgstr "ዓይነት፦"
-#: ../tools/drakids:250 ../tools/drakids:283
+#: ../bin/drakids:250 ../bin/drakids:283
#, fuzzy, c-format
msgid "Service"
msgstr "አገልግሎት"
-#: ../tools/drakids:251
+#: ../bin/drakids:251
#, fuzzy, c-format
msgid "Network interface"
msgstr "የተጠቃሚው እይታ"
-#: ../tools/drakids:282
+#: ../bin/drakids:282
#, c-format
msgid "Application"
msgstr "መጠቀሚያ ፕሮግራም"
-#: ../tools/drakids:284
+#: ../bin/drakids:284
#, c-format
msgid "Status"
msgstr "ሁኔታ"
-#: ../tools/drakids:286
+#: ../bin/drakids:286
#, fuzzy, c-format
msgid "Allowed"
msgstr "ሁሉንም"
-#: ../tools/drakids:287
+#: ../bin/drakids:287
#, c-format
msgid "Blocked"
msgstr ""
-#: ../tools/drakinvictus:36
+#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr ""
-#: ../tools/drakinvictus:53
+#: ../bin/drakinvictus:53
#, fuzzy, c-format
msgid "Start as master"
msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-#: ../tools/drakinvictus:72
+#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "ሚስጥር-ቃል ያስፈልጋል"
-#: ../tools/drakinvictus:100
+#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
-#: ../tools/drakinvictus:102
+#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "ኢሜያል አድራሻ"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Virtual shared address"
msgstr "የቡድኑ ኤ-መልዕክት አድራሻ"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""
-#: ../tools/drakinvictus:114
+#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:586
+#: ../lib/network/vpn/vpnc.pm:56
+#, c-format
+msgid "Password"
+msgstr "ሚስጢራዊ ቃል"
+
+#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "የተመረጠውን አጥፉ"
-#: ../tools/drakinvictus:116
+#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""
-#: ../tools/drakinvictus:123
+#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "የመስሪያውን ምልክት"
-#: ../tools/drakinvictus:132
+#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "ግንኙነት"
-#: ../tools/draknetprofile:36
+#: ../bin/draknetprofile:36
#, fuzzy, c-format
msgid "Network profiles"
msgstr "ምርጫዎችን አስገባ"
-#: ../tools/draknetprofile:67
+#: ../bin/draknetprofile:67
#, fuzzy, c-format
msgid "Profile"
msgstr "ወኪሎች"
-#: ../tools/draknetprofile:99
+#: ../bin/draknetprofile:99
#, fuzzy, c-format
msgid "New profile..."
msgstr "እንደ...ያስቀምጡ"
-#: ../tools/draknetprofile:102
+#: ../bin/draknetprofile:102
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one):"
msgstr ""
-#: ../tools/draknetprofile:113
+#: ../bin/draknetprofile:113
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr ""
-#: ../tools/draknetprofile:129
+#: ../bin/draknetprofile:129
#, c-format
msgid "You can not delete the default profile"
msgstr ""
-#: ../tools/draknetprofile:131
+#: ../bin/draknetprofile:131
#, c-format
msgid "You can not delete the current profile"
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""
-#: ../tools/draknetprofile:144
+#: ../bin/draknetprofile:144
#, c-format
msgid "Activate"
msgstr "አስጀምር"
-#: ../tools/draknetprofile:145
+#: ../bin/draknetprofile:145
#, fuzzy, c-format
msgid "Clone"
msgstr "አገናኝ"
-#: ../tools/draknetprofile:146
+#: ../bin/draknetprofile:146
#, c-format
msgid "Delete"
msgstr "አጥፋ"
-#: ../tools/draknfs:41
+#: ../bin/draknfs:41
#, c-format
msgid "map root user as anonymous"
msgstr ""
-#: ../tools/draknfs:42
+#: ../bin/draknfs:42
#, c-format
msgid "map all users to anonymous user"
msgstr ""
-#: ../tools/draknfs:43
+#: ../bin/draknfs:43
#, c-format
msgid "No user UID mapping"
msgstr ""
-#: ../tools/draknfs:44
+#: ../bin/draknfs:44
#, c-format
msgid "allow real remote root access"
msgstr ""
-#: ../tools/draknfs:58 ../tools/draknfs:59 ../tools/draknfs:60
-#: ../tools/draksambashare:161 ../tools/draksambashare:162
-#: ../tools/draksambashare:163
+#: ../bin/draknfs:58 ../bin/draknfs:59 ../bin/draknfs:60
+#: ../bin/draksambashare:161 ../bin/draksambashare:162
+#: ../bin/draksambashare:163
#, c-format
msgid "/_File"
msgstr "/ፋይል (_F)"
-#: ../tools/draknfs:59 ../tools/draksambashare:162
+#: ../bin/draknfs:59 ../bin/draksambashare:162
#, c-format
msgid "/_Write conf"
msgstr ""
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "/_Quit"
msgstr "/ውጣ (_Q)"
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
-#: ../tools/draknfs:63 ../tools/draknfs:64 ../tools/draknfs:65
+#: ../bin/draknfs:63 ../bin/draknfs:64 ../bin/draknfs:65
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "DNS ሰርቨር 1"
-#: ../tools/draknfs:64 ../tools/draksambashare:166
+#: ../bin/draknfs:64 ../bin/draksambashare:166
#, c-format
msgid "/_Restart"
msgstr ""
-#: ../tools/draknfs:65 ../tools/draksambashare:167
+#: ../bin/draknfs:65 ../bin/draksambashare:167
#, c-format
msgid "/R_eload"
msgstr ""
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, fuzzy, c-format
msgid "NFS server"
msgstr "DNS ሰርቨር 1"
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""
-#: ../tools/draknfs:85
+#: ../bin/draknfs:85
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""
-#: ../tools/draknfs:101 ../tools/draksambashare:225
+#: ../bin/draknfs:101 ../bin/draksambashare:225
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "አቅጣጫ"
-#: ../tools/draknfs:106 ../tools/draksambashare:230
+#: ../bin/draknfs:106 ../bin/draksambashare:230
#, c-format
msgid "Should be a directory."
msgstr ""
-#: ../tools/draknfs:137
+#: ../bin/draknfs:137
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
@@ -3385,7 +1416,7 @@ msgid ""
"result.\n"
msgstr ""
-#: ../tools/draknfs:152
+#: ../bin/draknfs:152
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
@@ -3411,27 +1442,32 @@ msgid ""
"the uid and gid of the anonymous account.\n"
msgstr ""
-#: ../tools/draknfs:168
+#: ../bin/draknfs:168
#, c-format
msgid "Synchronous access:"
msgstr ""
-#: ../tools/draknfs:169
+#: ../bin/draknfs:169
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "የኢንተርኔት ግንኙነት"
-#: ../tools/draknfs:170
+#: ../bin/draknfs:170
#, c-format
msgid "Read-Only share:"
msgstr ""
-#: ../tools/draknfs:172
+#: ../bin/draknfs:171
+#, c-format
+msgid "Subtree checking:"
+msgstr ""
+
+#: ../bin/draknfs:173
#, c-format
msgid "Advanced Options"
msgstr ""
-#: ../tools/draknfs:173
+#: ../bin/draknfs:174
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
@@ -3439,7 +1475,7 @@ msgid ""
"is on by default."
msgstr ""
-#: ../tools/draknfs:174
+#: ../bin/draknfs:175
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
@@ -3448,7 +1484,7 @@ msgid ""
"using this option."
msgstr ""
-#: ../tools/draknfs:175
+#: ../bin/draknfs:176
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
@@ -3456,746 +1492,693 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: ../tools/draknfs:180 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draknfs:177
+#, c-format
+msgid ""
+"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "መረጃ"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "ዶሴ"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "ዶሴ:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "የእንግዳ ተቀባይ ስም"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr ""
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr ""
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, c-format
msgid "Please specify a directory to share."
msgstr ""
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: ../tools/drakroam:61
-#, fuzzy, c-format
-msgid "No device found"
-msgstr "ምንም ጽሑፍ አልተገኘም"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "ዝርዝር መረጃ"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "አገለባበጥ"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, fuzzy, c-format
-msgid "Connecting..."
-msgstr "ግንኙነት"
-
-#: ../tools/drakroam:273
-#, fuzzy, c-format
-msgid "Disconnect"
-msgstr "ግንኙነት አቋርጥ..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "አገናኝ"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "ግንኙነት አቋርጥ..."
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "ለውጥ"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "አድስ"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "የተጠቃሚ ስም"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "የጋራ ስም"
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "ዶሴ አይደለም"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, fuzzy, c-format
msgid "Comment"
msgstr "ትእዛዝ"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "ቃኝ"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr ""
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, fuzzy, c-format
msgid "Writable"
msgstr "ይጻፍ"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "ፍጠር"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "አኃዞች (ከክፍተት ጋር)"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "አንብብ"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "ይጻፍ"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "ተጠቃሚ ጨምር"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "ተጠቃሚ ጨምር"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "ፈቃዶች"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "ፋይሎች ደብቅ"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, c-format
msgid "Hide files"
msgstr "ፋይሎች ደብቅ"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "ምርጫዎች"
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, fuzzy, c-format
msgid "Force create mode"
msgstr "ማተሚያው ሞዴል"
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "አዲስ መድረክ"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "የተጠቃሚ ስም"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "የማተሚያ ስም"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "መተላለፊያ"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, fuzzy, c-format
msgid "Printable"
msgstr "ይቻል"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "ትእዛዝ"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "ትእዛዝ"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "ፈቃዶች"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "በማተም ላይ"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "የካርድ ሞዴል፦"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"
msgstr "የቴልኔት ሰርቨር"
-#: ../tools/draksambashare:142
+#: ../bin/draksambashare:142
#, fuzzy, c-format
msgid "Read List"
msgstr "ከዝርዝር አጥፋ (_R)"
-#: ../tools/draksambashare:143
+#: ../bin/draksambashare:143
#, fuzzy, c-format
msgid "Write List"
msgstr "ይጻፍ"
-#: ../tools/draksambashare:148
+#: ../bin/draksambashare:148
#, fuzzy, c-format
msgid "Force Group"
msgstr "የውይይት መድረክ"
-#: ../tools/draksambashare:149
+#: ../bin/draksambashare:149
#, c-format
msgid "Force create group"
msgstr ""
-#: ../tools/draksambashare:165 ../tools/draksambashare:166
-#: ../tools/draksambashare:167
+#: ../bin/draksambashare:165 ../bin/draksambashare:166
+#: ../bin/draksambashare:167
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "የመረብ ሰርቨር"
-#: ../tools/draksambashare:169 ../tools/draksambashare:170
+#: ../bin/draksambashare:169 ../bin/draksambashare:170
#, fuzzy, c-format
msgid "/_About"
msgstr "ይቁም"
-#: ../tools/draksambashare:169
+#: ../bin/draksambashare:169
#, c-format
msgid "/_Report Bug"
msgstr "/የሶፍትዌርን ችግር ዘግብ (_R)"
-#: ../tools/draksambashare:170
+#: ../bin/draksambashare:170
#, c-format
msgid "/About..."
msgstr ""
-#: ../tools/draksambashare:173
+#: ../bin/draksambashare:173
#, c-format
msgid "Draksambashare"
msgstr ""
-#: ../tools/draksambashare:175
+#: ../bin/draksambashare:175
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""
-#: ../tools/draksambashare:177
+#: ../bin/draksambashare:177
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""
-#: ../tools/draksambashare:179
+#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Online"
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
-#: ../tools/draksambashare:184
+#: ../bin/draksambashare:184
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Alemayehu <alemayehu@gmx.at>\n"
-#: ../tools/draksambashare:208
+#: ../bin/draksambashare:208
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""
-#: ../tools/draksambashare:209
+#: ../bin/draksambashare:209
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""
-#: ../tools/draksambashare:349 ../tools/draksambashare:549
-#: ../tools/draksambashare:670
+#: ../bin/draksambashare:349 ../bin/draksambashare:550
+#: ../bin/draksambashare:671
#, c-format
msgid "Open"
msgstr "ክፈት"
-#: ../tools/draksambashare:352
+#: ../bin/draksambashare:352
#, c-format
msgid "DrakSamba add entry"
msgstr ""
-#: ../tools/draksambashare:356
+#: ../bin/draksambashare:356
#, fuzzy, c-format
msgid "Add a share"
msgstr "ሰነዶችን ጨምር"
-#: ../tools/draksambashare:359
+#: ../bin/draksambashare:359
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "የምስክር ፀባይ"
-#: ../tools/draksambashare:360 ../tools/draksambashare:569
-#: ../tools/draksambashare:750
+#: ../bin/draksambashare:360 ../bin/draksambashare:570
+#: ../bin/draksambashare:751
#, fuzzy, c-format
msgid "Comment:"
msgstr "ትእዛዝ"
-#: ../tools/draksambashare:372
+#: ../bin/draksambashare:373
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
-#: ../tools/draksambashare:379
+#: ../bin/draksambashare:380
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""
-#: ../tools/draksambashare:382 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draksambashare:383 ../bin/draksambashare:606
+#: ../bin/draksambashare:773
#, c-format
msgid "Please enter a Comment for this share."
msgstr ""
-#: ../tools/draksambashare:413
+#: ../bin/draksambashare:414
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""
-#: ../tools/draksambashare:414
+#: ../bin/draksambashare:415
#, c-format
msgid "printers - all printers available"
msgstr ""
-#: ../tools/draksambashare:418
+#: ../bin/draksambashare:419
#, c-format
msgid "Add Special Printer share"
msgstr ""
-#: ../tools/draksambashare:421
+#: ../bin/draksambashare:422
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
-#: ../tools/draksambashare:428
+#: ../bin/draksambashare:429
#, c-format
msgid "A PDF generator already exists."
msgstr ""
-#: ../tools/draksambashare:452
+#: ../bin/draksambashare:453
#, c-format
msgid "Printers and print$ already exist."
msgstr ""
-#: ../tools/draksambashare:502
+#: ../bin/draksambashare:503
#, c-format
msgid "Congratulations"
msgstr "እንኳን ደስ ያለዎ!"
-#: ../tools/draksambashare:503
+#: ../bin/draksambashare:504
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""
-#: ../tools/draksambashare:518
+#: ../bin/draksambashare:519
#, c-format
msgid "Failed to add printers."
msgstr ""
-#: ../tools/draksambashare:533
+#: ../bin/draksambashare:534
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:552
+#: ../bin/draksambashare:553
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""
-#: ../tools/draksambashare:565
+#: ../bin/draksambashare:566
#, c-format
msgid "Printer share"
msgstr ""
-#: ../tools/draksambashare:568
+#: ../bin/draksambashare:569
#, c-format
msgid "Printer name:"
msgstr ""
-#: ../tools/draksambashare:574 ../tools/draksambashare:755
+#: ../bin/draksambashare:575 ../bin/draksambashare:756
#, fuzzy, c-format
msgid "Writable:"
msgstr "ይጻፍ"
-#: ../tools/draksambashare:575 ../tools/draksambashare:756
+#: ../bin/draksambashare:576 ../bin/draksambashare:757
#, fuzzy, c-format
msgid "Browseable:"
msgstr "ቃኝ"
-#: ../tools/draksambashare:580
+#: ../bin/draksambashare:581
#, c-format
msgid "Advanced options"
msgstr ""
-#: ../tools/draksambashare:582
+#: ../bin/draksambashare:583
#, c-format
msgid "Printer access"
msgstr ""
-#: ../tools/draksambashare:586
+#: ../bin/draksambashare:587
#, c-format
msgid "Guest ok:"
msgstr ""
-#: ../tools/draksambashare:587
+#: ../bin/draksambashare:588
#, fuzzy, c-format
msgid "Create mode:"
msgstr "የካርድ ሞዴል፦"
-#: ../tools/draksambashare:591
+#: ../bin/draksambashare:592
#, c-format
msgid "Printer command"
msgstr ""
-#: ../tools/draksambashare:593
+#: ../bin/draksambashare:594
#, c-format
msgid "Print command:"
msgstr ""
-#: ../tools/draksambashare:594
+#: ../bin/draksambashare:595
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "ትእዛዝ"
-#: ../tools/draksambashare:595
+#: ../bin/draksambashare:596
#, fuzzy, c-format
msgid "Printing:"
msgstr "ማስጠንቀቂያ"
-#: ../tools/draksambashare:611
+#: ../bin/draksambashare:612
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:673
+#: ../bin/draksambashare:674
#, c-format
msgid "DrakSamba entry"
msgstr ""
-#: ../tools/draksambashare:678
+#: ../bin/draksambashare:679
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:701
+#: ../bin/draksambashare:702
#, fuzzy, c-format
msgid "Samba user access"
msgstr "የሳምባ ተጠሪ"
-#: ../tools/draksambashare:709
+#: ../bin/draksambashare:710
#, fuzzy, c-format
msgid "Mask options"
msgstr "መሠረታዊ ምርጫዎች"
-#: ../tools/draksambashare:723
+#: ../bin/draksambashare:724
#, fuzzy, c-format
msgid "Display options"
msgstr "ምርጫዎችን ይግለጹ"
-#: ../tools/draksambashare:745
+#: ../bin/draksambashare:746
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "ዶሴ አይደለም"
-#: ../tools/draksambashare:748
+#: ../bin/draksambashare:749
#, fuzzy, c-format
msgid "Share name:"
msgstr "የጋራ ስም"
-#: ../tools/draksambashare:754
+#: ../bin/draksambashare:755
#, c-format
msgid "Public:"
msgstr ""
-#: ../tools/draksambashare:778
+#: ../bin/draksambashare:779
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:785
+#: ../bin/draksambashare:786
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""
-#: ../tools/draksambashare:889
+#: ../bin/draksambashare:890
#, c-format
msgid "Add Samba user"
msgstr ""
-#: ../tools/draksambashare:904
+#: ../bin/draksambashare:905
#, fuzzy, c-format
msgid "User information"
msgstr "የWindows ክፋዬን ተጠቀም"
-#: ../tools/draksambashare:906
+#: ../bin/draksambashare:907
#, c-format
msgid "User name:"
msgstr "የተጠቃሚ ስም፦"
-#: ../tools/draksambashare:907
+#: ../bin/draksambashare:908
#, c-format
msgid "Password:"
msgstr "ሚስጢራዊ ቃል"
-#: ../tools/draksambashare:1021
+#: ../bin/draksambashare:1022
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "ፈጣን ደብዳቤ"
-#: ../tools/draksambashare:1109
+#: ../bin/draksambashare:1110
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""
-#: ../tools/draksambashare:1118
+#: ../bin/draksambashare:1119
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""
-#: ../tools/draksambashare:1125
+#: ../bin/draksambashare:1126
#, c-format
msgid "File share"
msgstr ""
-#: ../tools/draksambashare:1140
+#: ../bin/draksambashare:1141
#, c-format
msgid "Failed to Modify."
msgstr ""
-#: ../tools/draksambashare:1149
+#: ../bin/draksambashare:1150
#, c-format
msgid "Failed to remove."
msgstr ""
-#: ../tools/draksambashare:1156
+#: ../bin/draksambashare:1157
#, c-format
msgid "Printers"
msgstr "አታሚዎች"
-#: ../tools/draksambashare:1168
+#: ../bin/draksambashare:1169
#, c-format
msgid "Failed to add user."
msgstr ""
-#: ../tools/draksambashare:1177
+#: ../bin/draksambashare:1178
#, c-format
msgid "Failed to change user password."
msgstr ""
-#: ../tools/draksambashare:1189
+#: ../bin/draksambashare:1190
#, c-format
msgid "Failed to delete user."
msgstr ""
-#: ../tools/draksambashare:1194
+#: ../bin/draksambashare:1195
#, c-format
msgid "Userdrake"
msgstr "Userdrake"
-#: ../tools/draksambashare:1202
+#: ../bin/draksambashare:1203
#, c-format
msgid "Samba Users"
msgstr ""
-#: ../tools/draksambashare:1211
+#: ../bin/draksambashare:1212
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""
-#: ../tools/drakvpn-old:65
+#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr ""
-#: ../tools/drakvpn-old:87
+#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr ""
-#: ../tools/drakvpn-old:88
+#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4205,37 +2188,37 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:93
+#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr "አይቻል"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr ""
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119 ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr ""
-#: ../tools/drakvpn-old:97
+#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr ""
-#: ../tools/drakvpn-old:106
+#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr ""
-#: ../tools/drakvpn-old:113
+#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr ""
-#: ../tools/drakvpn-old:114
+#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4245,27 +2228,27 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr "ይቻል"
-#: ../tools/drakvpn-old:127
+#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr ""
-#: ../tools/drakvpn-old:133
+#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr ""
-#: ../tools/drakvpn-old:147 ../tools/drakvpn-old:164
+#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr ""
-#: ../tools/drakvpn-old:148
+#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
@@ -4281,7 +2264,7 @@ msgid ""
"drakconnect before going any further."
msgstr ""
-#: ../tools/drakvpn-old:165
+#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
@@ -4297,27 +2280,27 @@ msgid ""
"before going any further."
msgstr ""
-#: ../tools/drakvpn-old:208
+#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr ""
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr ""
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr ""
-#: ../tools/drakvpn-old:224
+#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr ""
-#: ../tools/drakvpn-old:225
+#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
@@ -4329,12 +2312,12 @@ msgid ""
"What would you like to configure?\n"
msgstr ""
-#: ../tools/drakvpn-old:245 ../tools/drakvpn-old:382
+#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr ""
-#: ../tools/drakvpn-old:246
+#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
@@ -4348,32 +2331,32 @@ msgid ""
"What would you like to do?\n"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "አስተካክል"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr ""
-#: ../tools/drakvpn-old:267 ../tools/drakvpn-old:271 ../tools/drakvpn-old:406
-#: ../tools/drakvpn-old:410
+#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
+#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr ""
-#: ../tools/drakvpn-old:272
+#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
@@ -4383,7 +2366,7 @@ msgid ""
"You'll have to go back and choose 'add'.\n"
msgstr ""
-#: ../tools/drakvpn-old:301
+#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
@@ -4393,12 +2376,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:333 ../tools/drakvpn-old:523
+#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr ""
-#: ../tools/drakvpn-old:334
+#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4407,13 +2390,13 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:337 ../tools/drakvpn-old:357 ../tools/drakvpn-old:528
-#: ../tools/drakvpn-old:574
+#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
+#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr ""
-#: ../tools/drakvpn-old:344
+#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
@@ -4423,12 +2406,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:353 ../tools/drakvpn-old:570
+#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr ""
-#: ../tools/drakvpn-old:354 ../tools/drakvpn-old:571
+#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4437,7 +2420,7 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:383
+#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
@@ -4451,7 +2434,7 @@ msgid ""
" - commit \t\t (writes the changes to the real file)"
msgstr ""
-#: ../tools/drakvpn-old:411
+#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
@@ -4461,12 +2444,12 @@ msgid ""
"You'll have to go back and choose configure.\n"
msgstr ""
-#: ../tools/drakvpn-old:425
+#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr ""
-#: ../tools/drakvpn-old:426
+#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
@@ -4479,22 +2462,22 @@ msgid ""
"Choose the section you would like to add.\n"
msgstr ""
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr "መተላለፊያ"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr "የርቀት"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr "sainfo"
-#: ../tools/drakvpn-old:440
+#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
@@ -4504,12 +2487,12 @@ msgid ""
"Put your mouse over the certificate entry to obtain online help."
msgstr ""
-#: ../tools/drakvpn-old:443
+#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr ""
-#: ../tools/drakvpn-old:447
+#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
@@ -4533,12 +2516,12 @@ msgid ""
"Pre-shared key authentication method in phase 1."
msgstr ""
-#: ../tools/drakvpn-old:467 ../tools/drakvpn-old:560
+#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr ""
-#: ../tools/drakvpn-old:490
+#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4548,7 +2531,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:507
+#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4558,7 +2541,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:524
+#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4567,7 +2550,7 @@ msgid ""
"to edit and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:535
+#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4578,7 +2561,7 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:544
+#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4588,7 +2571,7 @@ msgid ""
"Choose continue when you are done to write the data."
msgstr ""
-#: ../tools/drakvpn-old:552
+#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
@@ -4602,17 +2585,17 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:559
+#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr ""
-#: ../tools/drakvpn-old:599
+#: ../bin/drakvpn-old:599
#, fuzzy, c-format
msgid "Congratulations!"
msgstr "እንኳን ደስ ያለዎ!"
-#: ../tools/drakvpn-old:600
+#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -4624,12 +2607,12 @@ msgid ""
"section is configured."
msgstr ""
-#: ../tools/drakvpn-old:620
+#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""
-#: ../tools/drakvpn-old:621
+#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4652,12 +2635,12 @@ msgid ""
"\t172.16.1.0/24 is the source address"
msgstr ""
-#: ../tools/drakvpn-old:638
+#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr ""
-#: ../tools/drakvpn-old:639
+#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4677,12 +2660,12 @@ msgid ""
"\tthe first 'any' allows any protocol for the source"
msgstr ""
-#: ../tools/drakvpn-old:653
+#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr ""
-#: ../tools/drakvpn-old:654
+#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4705,12 +2688,12 @@ msgid ""
"\t172.16.2.0/24 is the destination address"
msgstr ""
-#: ../tools/drakvpn-old:671
+#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr ""
-#: ../tools/drakvpn-old:672
+#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4730,12 +2713,12 @@ msgid ""
"\tthe last 'any' allows any protocol for the destination"
msgstr ""
-#: ../tools/drakvpn-old:686
+#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr ""
-#: ../tools/drakvpn-old:688
+#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
@@ -4745,12 +2728,12 @@ msgid ""
"Or you can define 1, 2, or 5 as the DH group number."
msgstr ""
-#: ../tools/drakvpn-old:693
+#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr ""
-#: ../tools/drakvpn-old:694
+#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4771,12 +2754,12 @@ msgid ""
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
msgstr ""
-#: ../tools/drakvpn-old:710
+#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr ""
-#: ../tools/drakvpn-old:712
+#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4798,32 +2781,32 @@ msgid ""
"'hour'.\n"
msgstr ""
-#: ../tools/drakvpn-old:728 ../tools/drakvpn-old:813
+#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, c-format
msgid "Encryption algorithm"
msgstr ""
-#: ../tools/drakvpn-old:730
+#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr ""
-#: ../tools/drakvpn-old:732
+#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr ""
-#: ../tools/drakvpn-old:733
+#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr ""
-#: ../tools/drakvpn-old:740
+#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr "የሩቅ"
-#: ../tools/drakvpn-old:741
+#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
@@ -4838,12 +2821,12 @@ msgid ""
"remote ::1 [8000]"
msgstr ""
-#: ../tools/drakvpn-old:749
+#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr ""
-#: ../tools/drakvpn-old:751
+#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
@@ -4854,22 +2837,22 @@ msgid ""
"racoon uses when it is the initiator.\n"
msgstr ""
-#: ../tools/drakvpn-old:757
+#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr ""
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr "አጥፋ"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "አብራ"
-#: ../tools/drakvpn-old:759
+#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder. Therefore you\n"
@@ -4888,12 +2871,12 @@ msgid ""
"the initiator case. The default value is off."
msgstr ""
-#: ../tools/drakvpn-old:773
+#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr ""
-#: ../tools/drakvpn-old:775
+#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
@@ -4901,59 +2884,59 @@ msgid ""
"server."
msgstr ""
-#: ../tools/drakvpn-old:778
+#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr ""
-#: ../tools/drakvpn-old:780
+#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr ""
-#: ../tools/drakvpn-old:781
+#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr ""
-#: ../tools/drakvpn-old:782
+#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr ""
-#: ../tools/drakvpn-old:783
+#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr ""
-#: ../tools/drakvpn-old:784
+#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr ""
-#: ../tools/drakvpn-old:785
+#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr ""
-#: ../tools/drakvpn-old:786
+#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr ""
-#: ../tools/drakvpn-old:788
+#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
"some reason, set this to off. The default is on."
msgstr ""
-#: ../tools/drakvpn-old:790
+#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr ""
-#: ../tools/drakvpn-old:791
+#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
@@ -4980,17 +2963,17 @@ msgid ""
"my_identifier user_fqdn \"myemail@mydomain.com\""
msgstr ""
-#: ../tools/drakvpn-old:811
+#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr ""
-#: ../tools/drakvpn-old:812
+#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr ""
-#: ../tools/drakvpn-old:814
+#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
@@ -5002,432 +2985,2461 @@ msgid ""
"For other transforms, this statement should not be used."
msgstr ""
-#: ../tools/drakvpn-old:821
+#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr ""
-#: ../tools/drakvpn-old:822
+#: ../bin/drakvpn-old:822
#, fuzzy, c-format
msgid "Authentication method"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: ../tools/drakvpn-old:823
+#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr ""
-#: ../tools/drakvpn-old:830
+#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "ትእዛዝ"
-#: ../tools/drakvpn-old:831
+#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr ""
-#: ../tools/drakvpn-old:832
+#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr ""
-#: ../tools/drakvpn-old:833
+#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr ""
-#: ../tools/drakvpn-old:833 ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr "ማነኛውም"
-#: ../tools/drakvpn-old:835
+#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "ባንዲራ"
-#: ../tools/drakvpn-old:836
+#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "አቅጣጫ"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "የአሠራሩ ዘዴ"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr ""
-#: ../tools/drakvpn-old:842
+#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "ደረጃ"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "ቀዳሚ"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr "ጥቅም"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr "የተለየ"
-#: ../tools/net_applet:61
+#: ../bin/net_applet:62
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "የተጠቃሚው እይታ"
-#: ../tools/net_applet:62
+#: ../bin/net_applet:63
#, c-format
msgid "IP address: %s"
msgstr "የIP አድራሻ፦ %s"
-#: ../tools/net_applet:63
+#: ../bin/net_applet:64
#, fuzzy, c-format
msgid "Gateway: %s"
msgstr "ዓይነት፦"
-#: ../tools/net_applet:64
+#: ../bin/net_applet:65
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""
-#: ../tools/net_applet:66
+#: ../bin/net_applet:67
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "የተጠቃሚው እይታ"
-#: ../tools/net_applet:74 ../tools/net_monitor:468
+#: ../bin/net_applet:75 ../bin/net_monitor:468
#, c-format
msgid "Connect %s"
msgstr ""
-#: ../tools/net_applet:75 ../tools/net_monitor:468
+#: ../bin/net_applet:76 ../bin/net_monitor:468
#, fuzzy, c-format
msgid "Disconnect %s"
msgstr "ግንኙነት አቋርጥ"
-#: ../tools/net_applet:76
+#: ../bin/net_applet:77
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "የቀይ ባርኔታ መረብ"
-#: ../tools/net_applet:78
+#: ../bin/net_applet:79
#, c-format
msgid "Manage wireless networks"
msgstr ""
-#: ../tools/net_applet:80
+#: ../bin/net_applet:81
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "ግንኙነቶችን ይቆጣጠሩ"
-#: ../tools/net_applet:84
+#: ../bin/net_applet:85
#, fuzzy, c-format
msgid "Configure Network"
msgstr "መልዕክቶችን አሁን አምጣ"
-#: ../tools/net_applet:86
+#: ../bin/net_applet:87
#, fuzzy, c-format
msgid "Watched interface"
msgstr "ንድፋዊ እይታ"
-#: ../tools/net_applet:87 ../tools/net_applet:88 ../tools/net_applet:90
+#: ../bin/net_applet:88 ../bin/net_applet:89 ../bin/net_applet:91
#, c-format
msgid "Auto-detect"
msgstr "በራስ-ገዝ ፈልጎ አግኝ"
-#: ../tools/net_applet:95
+#: ../bin/net_applet:96
#, c-format
msgid "Active interfaces"
msgstr ""
-#: ../tools/net_applet:119
+#: ../bin/net_applet:120
#, fuzzy, c-format
msgid "Profiles"
msgstr "ወኪሎች"
-#: ../tools/net_applet:137
-#, c-format
-msgid "Get Online Help"
-msgstr ""
+#: ../bin/net_applet:130 ../lib/network/connection.pm:149
+#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
+#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
+#, fuzzy, c-format
+msgid "VPN connection"
+msgstr "የቅርብ መረብ ግንኙነት"
-#: ../tools/net_applet:318
+#: ../bin/net_applet:319
#, fuzzy, c-format
msgid "Network connection"
msgstr "ምርጫዎችን አስገባ"
-#: ../tools/net_applet:438
+#: ../bin/net_applet:443
#, c-format
msgid "More networks"
msgstr ""
-#: ../tools/net_applet:465
+#: ../bin/net_applet:470
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: ../tools/net_applet:470
+#: ../bin/net_applet:475
#, c-format
msgid "Always launch on startup"
msgstr ""
-#: ../tools/net_applet:475
+#: ../bin/net_applet:480
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "ሽቦ አልባ ግንኙነት"
-#: ../tools/net_applet:482 ../tools/net_monitor:96
+#: ../bin/net_applet:487 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "ስየማዎች"
-#: ../tools/net_applet:557
+#: ../bin/net_applet:562
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-#: ../tools/net_applet:574
+#: ../bin/net_applet:579
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-#: ../tools/net_applet:577
+#: ../bin/net_applet:582
#, fuzzy, c-format
msgid "Attack details"
msgstr "ያለ ዝርዝሮች"
-#: ../tools/net_applet:581
+#: ../bin/net_applet:586
#, fuzzy, c-format
msgid "Attack time: %s"
msgstr "%s አስጀምርs"
-#: ../tools/net_applet:582
+#: ../bin/net_applet:587
#, fuzzy, c-format
msgid "Network interface: %s"
msgstr "የተጠቃሚው እይታ"
-#: ../tools/net_applet:583
+#: ../bin/net_applet:588
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "ዓይነት፦"
-#: ../tools/net_applet:584
+#: ../bin/net_applet:589
#, fuzzy, c-format
msgid "Protocol: %s"
msgstr "&ፖርት፦"
-#: ../tools/net_applet:585
+#: ../bin/net_applet:590
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "የIP አድራሻ፦"
-#: ../tools/net_applet:586
+#: ../bin/net_applet:591
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "ዞሮ መመለሻ ፋይል ስም: %s"
-#: ../tools/net_applet:589
+#: ../bin/net_applet:594
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "የአገልግሎቶች መቆጣጠሪያ"
-#: ../tools/net_applet:590
+#: ../bin/net_applet:595
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "&ፖርት፦"
-#: ../tools/net_applet:592
+#: ../bin/net_applet:597
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""
-#: ../tools/net_applet:597
+#: ../bin/net_applet:602
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""
-#: ../tools/net_applet:612
+#: ../bin/net_applet:617
#, c-format
msgid "Ignore"
msgstr "ይተዉ"
-#: ../tools/net_applet:630 ../tools/net_applet:643
+#: ../bin/net_applet:635 ../bin/net_applet:648
#, fuzzy, c-format
msgid "Interactive Firewall: new service"
msgstr "ተስተካክሎ የተቀመጠውን ባዕድ መነሻ ጥቀስ"
-#: ../tools/net_applet:654
+#: ../bin/net_applet:658
#, fuzzy, c-format
msgid "Do you want to open this service?"
msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-#: ../tools/net_applet:657
+#: ../bin/net_applet:661
#, fuzzy, c-format
msgid "Remember this answer"
msgstr "ይህን ሚስጢራዊ ቃል አስታውስ"
-#: ../tools/net_monitor:60 ../tools/net_monitor:65
+#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, fuzzy, c-format
msgid "Network Monitoring"
msgstr "Name=መረብ"
-#: ../tools/net_monitor:101
+#: ../bin/net_monitor:101
#, c-format
msgid "Global statistics"
msgstr ""
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr ""
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Average"
msgstr ""
-#: ../tools/net_monitor:105
+#: ../bin/net_monitor:105
#, fuzzy, c-format
msgid ""
"Sending\n"
"speed:"
msgstr "ያልተላኩ መልዕክቶችን በመላክ ላይ"
-#: ../tools/net_monitor:105 ../tools/net_monitor:106 ../tools/net_monitor:111
+#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "ያልታወቀ"
-#: ../tools/net_monitor:106
+#: ../bin/net_monitor:106
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr ""
-#: ../tools/net_monitor:110
+#: ../bin/net_monitor:110
#, fuzzy, c-format
msgid ""
"Connection\n"
"time: "
msgstr "የቅርብ መረብ ማገናኛ"
-#: ../tools/net_monitor:117
+#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""
-#: ../tools/net_monitor:136
+#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr ""
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, fuzzy, c-format
msgid "Disconnecting from Internet "
msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, fuzzy, c-format
msgid "Connecting to Internet "
msgstr "የኢንተርኔት ሰዓትን ተጠቀም"
-#: ../tools/net_monitor:229
+#: ../bin/net_monitor:229
#, c-format
msgid "Disconnection from Internet failed."
msgstr ""
-#: ../tools/net_monitor:230
+#: ../bin/net_monitor:230
#, c-format
msgid "Disconnection from Internet complete."
msgstr ""
-#: ../tools/net_monitor:232
+#: ../bin/net_monitor:232
#, fuzzy, c-format
msgid "Connection complete."
msgstr "የቅርብ መረብ ማገናኛ"
-#: ../tools/net_monitor:233
+#: ../bin/net_monitor:233
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandriva Linux Control Center."
msgstr ""
-#: ../tools/net_monitor:338
+#: ../bin/net_monitor:338
#, c-format
msgid "Color configuration"
msgstr "የቀለም ምርጫ"
-#: ../tools/net_monitor:395 ../tools/net_monitor:407
+#: ../bin/net_monitor:395 ../bin/net_monitor:407
#, c-format
msgid "sent: "
msgstr "የተላከ፦"
-#: ../tools/net_monitor:398 ../tools/net_monitor:411
+#: ../bin/net_monitor:398 ../bin/net_monitor:411
#, c-format
msgid "received: "
msgstr ""
-#: ../tools/net_monitor:401
+#: ../bin/net_monitor:401
#, c-format
msgid "average"
msgstr ""
-#: ../tools/net_monitor:404
+#: ../bin/net_monitor:404
#, c-format
msgid "Local measure"
msgstr ""
-#: ../tools/net_monitor:461
+#: ../bin/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../tools/net_monitor:472
+#: ../bin/net_monitor:472
#, c-format
msgid "No internet connection configured"
msgstr ""
+
+#: ../lib/network/connection.pm:16
+#, c-format
+msgid "Unknown connection type"
+msgstr "ያልታወቀ የግንኙነት አይነት"
+
+#: ../lib/network/connection.pm:115
+#, c-format
+msgid "Network access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:116
+#, c-format
+msgid "Access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:117
+#, c-format
+msgid "Address settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
+#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
+#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
+#, c-format
+msgid "None"
+msgstr "ምንም"
+
+#: ../lib/network/connection.pm:163
+#, c-format
+msgid "Allow users to manage the connection"
+msgstr ""
+
+#: ../lib/network/connection.pm:164
+#, c-format
+msgid "Start the connection at boot"
+msgstr ""
+
+#: ../lib/network/connection.pm:230
+#, fuzzy, c-format
+msgid "Link detected on interface %s"
+msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
+
+#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:273
+#, c-format
+msgid "Link beat lost on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:13
+#, c-format
+msgid "Cable"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:14
+#, fuzzy, c-format
+msgid "Cable modem"
+msgstr "የካርድ ሞዴል፦"
+
+#: ../lib/network/connection/cable.pm:45
+#, c-format
+msgid "Use BPALogin (needed for Telstra)"
+msgstr ""
+
+#: ../lib/network/connection/cellular.pm:47
+#, c-format
+msgid "Access Point Name"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:10
+#, c-format
+msgid "Bluetooth"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:11
+#, c-format
+msgid "Bluetooth Dial Up Networking"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:8
+#, c-format
+msgid "GPRS/Edge/3G"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:67
+#: ../lib/network/vpn/openvpn.pm:391
+#, c-format
+msgid "PIN number"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:130
+#, fuzzy, c-format
+msgid "Unable to open device %s"
+msgstr "እንደገና የሚሰራ ምንም የለም።"
+
+#: ../lib/network/connection/cellular_card.pm:155
+#, c-format
+msgid "Please check that your SIM card is inserted."
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:161
+#, c-format
+msgid ""
+"You entered a wrong PIN code.\n"
+"Entering the wrong PIN code multiple times may lock your SIM card!"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:12
+#, c-format
+msgid "DVB"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:13
+#, c-format
+msgid "Satellite (DVB)"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:56
+#, c-format
+msgid "Adapter card"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:57
+#, c-format
+msgid "Net demux"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:58
+#, c-format
+msgid "PID"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:10
+#, c-format
+msgid "Ethernet"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:53
+#, c-format
+msgid "Unable to find network interface for selected device (using %s driver)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#, c-format
+msgid "Manual configuration"
+msgstr "በእጅ ምርጫ"
+
+#: ../lib/network/connection/ethernet.pm:62
+#, c-format
+msgid "Automatic IP (BOOTP/DHCP)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:116
+#, fuzzy, c-format
+msgid "IP settings"
+msgstr "የPLL ምርጫ"
+
+#: ../lib/network/connection/ethernet.pm:129
+#, 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)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:138
+#, c-format
+msgid "DNS server 1"
+msgstr "DNS ሰርቨር 1"
+
+#: ../lib/network/connection/ethernet.pm:139
+#, c-format
+msgid "DNS server 2"
+msgstr "DNS ሰርቨር 2"
+
+#: ../lib/network/connection/ethernet.pm:140
+#, fuzzy, c-format
+msgid "Search domain"
+msgstr "የObjectDirectory ዶሜን"
+
+#: ../lib/network/connection/ethernet.pm:141
+#, c-format
+msgid "By default search domain will be set from the fully-qualified host name"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:149
+#, c-format
+msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:170
+#, c-format
+msgid "Warning: IP address %s is usually reserved!"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:176
+#, c-format
+msgid "%s already in use\n"
+msgstr "%s አስቀድሞ ጥቅም ላይ ነው\n"
+
+#: ../lib/network/connection/ethernet.pm:224
+#, c-format
+msgid "Enable IPv6 to IPv4 tunnel"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:272
+#, c-format
+msgid "Link beat detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:275
+#, c-format
+msgid "Requesting a network address on interface %s (%s protocol)..."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:276
+#, c-format
+msgid "Got a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:277
+#, c-format
+msgid "Failed to get a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:8
+#, c-format
+msgid "ISDN"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
+#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
+#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
+#: ../lib/network/netconnect.pm:562
+#, c-format
+msgid "Unlisted - edit manually"
+msgstr "ያልተዘረዘሩ - በእጅ ያስተካክሉ"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "I do not know"
+msgstr "አላውቅም"
+
+#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "USB"
+msgstr "USB"
+
+#. -PO: POTS means "Plain old telephone service"
+#: ../lib/network/connection/pots.pm:10
+#, c-format
+msgid "POTS"
+msgstr ""
+
+#. -PO: POTS means "Plain old telephone service"
+#. -PO: remove it if it doesn't have an equivalent in your language
+#. -PO: for example, in French, it can be translated as "RTC"
+#: ../lib/network/connection/pots.pm:16
+#, c-format
+msgid "Analog telephone modem (POTS)"
+msgstr ""
+
+#: ../lib/network/connection/providers/cellular.pm:13
+#: ../lib/network/connection/providers/cellular.pm:18
+#: ../lib/network/connection/providers/cellular.pm:23
+#: ../lib/network/connection/providers/xdsl.pm:492
+#: ../lib/network/connection/providers/xdsl.pm:504
+#: ../lib/network/connection/providers/xdsl.pm:516
+#: ../lib/network/connection/providers/xdsl.pm:528
+#: ../lib/network/connection/providers/xdsl.pm:539
+#: ../lib/network/connection/providers/xdsl.pm:551
+#: ../lib/network/connection/providers/xdsl.pm:563
+#: ../lib/network/connection/providers/xdsl.pm:575
+#: ../lib/network/connection/providers/xdsl.pm:588
+#: ../lib/network/connection/providers/xdsl.pm:599
+#: ../lib/network/connection/providers/xdsl.pm:610
+#: ../lib/network/netconnect.pm:33
+#, c-format
+msgid "France"
+msgstr "ፈረንሳይ"
+
+#: ../lib/network/connection/providers/xdsl.pm:47
+#: ../lib/network/connection/providers/xdsl.pm:57
+#, c-format
+msgid "Algeria"
+msgstr "አልጄሪያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:67
+#: ../lib/network/connection/providers/xdsl.pm:77
+#, c-format
+msgid "Argentina"
+msgstr "አርጀንቲና"
+
+#: ../lib/network/connection/providers/xdsl.pm:87
+#: ../lib/network/connection/providers/xdsl.pm:96
+#: ../lib/network/connection/providers/xdsl.pm:105
+#, c-format
+msgid "Austria"
+msgstr "ኦስትሪያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:114
+#: ../lib/network/connection/providers/xdsl.pm:124
+#: ../lib/network/connection/providers/xdsl.pm:134
+#, c-format
+msgid "Australia"
+msgstr "አውስትሬሊያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:144
+#: ../lib/network/connection/providers/xdsl.pm:153
+#: ../lib/network/connection/providers/xdsl.pm:164
+#: ../lib/network/connection/providers/xdsl.pm:173
+#: ../lib/network/connection/providers/xdsl.pm:182
+#: ../lib/network/netconnect.pm:36
+#, c-format
+msgid "Belgium"
+msgstr "ቤልጄም"
+
+#: ../lib/network/connection/providers/xdsl.pm:191
+#: ../lib/network/connection/providers/xdsl.pm:201
+#: ../lib/network/connection/providers/xdsl.pm:210
+#: ../lib/network/connection/providers/xdsl.pm:219
+#, c-format
+msgid "Brazil"
+msgstr "ብራዚል"
+
+#: ../lib/network/connection/providers/xdsl.pm:228
+#: ../lib/network/connection/providers/xdsl.pm:237
+#, c-format
+msgid "Bulgaria"
+msgstr "ቡልጌሪያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:246
+#: ../lib/network/connection/providers/xdsl.pm:255
+#: ../lib/network/connection/providers/xdsl.pm:264
+#: ../lib/network/connection/providers/xdsl.pm:273
+#: ../lib/network/connection/providers/xdsl.pm:282
+#: ../lib/network/connection/providers/xdsl.pm:291
+#: ../lib/network/connection/providers/xdsl.pm:300
+#: ../lib/network/connection/providers/xdsl.pm:309
+#: ../lib/network/connection/providers/xdsl.pm:318
+#: ../lib/network/connection/providers/xdsl.pm:327
+#: ../lib/network/connection/providers/xdsl.pm:336
+#: ../lib/network/connection/providers/xdsl.pm:345
+#: ../lib/network/connection/providers/xdsl.pm:354
+#: ../lib/network/connection/providers/xdsl.pm:363
+#: ../lib/network/connection/providers/xdsl.pm:372
+#: ../lib/network/connection/providers/xdsl.pm:381
+#: ../lib/network/connection/providers/xdsl.pm:390
+#: ../lib/network/connection/providers/xdsl.pm:399
+#: ../lib/network/connection/providers/xdsl.pm:408
+#: ../lib/network/connection/providers/xdsl.pm:417
+#, c-format
+msgid "China"
+msgstr "ቻይና"
+
+#: ../lib/network/connection/providers/xdsl.pm:426
+#: ../lib/network/connection/providers/xdsl.pm:436
+#, c-format
+msgid "Czech Republic"
+msgstr "ቼክ ሪፑብሊክ"
+
+#: ../lib/network/connection/providers/xdsl.pm:446
+#: ../lib/network/connection/providers/xdsl.pm:455
+#: ../lib/network/connection/providers/xdsl.pm:464
+#, c-format
+msgid "Denmark"
+msgstr "ዴንማርክ"
+
+#: ../lib/network/connection/providers/xdsl.pm:473
+#, c-format
+msgid "Egypt"
+msgstr "ግብጽ"
+
+#: ../lib/network/connection/providers/xdsl.pm:483
+#, c-format
+msgid "Finland"
+msgstr "ፊንላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:621
+#: ../lib/network/connection/providers/xdsl.pm:630
+#: ../lib/network/connection/providers/xdsl.pm:640
+#, c-format
+msgid "Germany"
+msgstr "ጀርመን"
+
+#: ../lib/network/connection/providers/xdsl.pm:650
+#, c-format
+msgid "Greece"
+msgstr "ግሪክ"
+
+#: ../lib/network/connection/providers/xdsl.pm:659
+#, c-format
+msgid "Hungary"
+msgstr "ሀንጋሪ"
+
+#: ../lib/network/connection/providers/xdsl.pm:668
+#, c-format
+msgid "Ireland"
+msgstr "አየርላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:677
+#, c-format
+msgid "Israel"
+msgstr "እስራኤል"
+
+#: ../lib/network/connection/providers/xdsl.pm:687
+#, c-format
+msgid "India"
+msgstr "ህንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:696
+#: ../lib/network/connection/providers/xdsl.pm:705
+#, c-format
+msgid "Iceland"
+msgstr "አይስላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:714
+#: ../lib/network/connection/providers/xdsl.pm:725
+#: ../lib/network/connection/providers/xdsl.pm:735
+#: ../lib/network/connection/providers/xdsl.pm:746
+#: ../lib/network/netconnect.pm:35
+#, c-format
+msgid "Italy"
+msgstr "ጣሊያን"
+
+#: ../lib/network/connection/providers/xdsl.pm:758
+#, c-format
+msgid "Sri Lanka"
+msgstr "ሲሪላንካ"
+
+#: ../lib/network/connection/providers/xdsl.pm:770
+#, c-format
+msgid "Lithuania"
+msgstr "ሊቱዌኒያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:779
+#: ../lib/network/connection/providers/xdsl.pm:789
+#, c-format
+msgid "Mauritius"
+msgstr "ማሩሸስ"
+
+#: ../lib/network/connection/providers/xdsl.pm:800
+#, c-format
+msgid "Morocco"
+msgstr "ሞሮኮ"
+
+#: ../lib/network/connection/providers/xdsl.pm:810
+#: ../lib/network/connection/providers/xdsl.pm:819
+#: ../lib/network/connection/providers/xdsl.pm:828
+#: ../lib/network/connection/providers/xdsl.pm:837
+#: ../lib/network/netconnect.pm:34
+#, c-format
+msgid "Netherlands"
+msgstr "ኔዘርላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:846
+#: ../lib/network/connection/providers/xdsl.pm:852
+#: ../lib/network/connection/providers/xdsl.pm:858
+#: ../lib/network/connection/providers/xdsl.pm:864
+#: ../lib/network/connection/providers/xdsl.pm:870
+#: ../lib/network/connection/providers/xdsl.pm:876
+#: ../lib/network/connection/providers/xdsl.pm:882
+#, c-format
+msgid "Norway"
+msgstr "ኖርዌይ"
+
+#: ../lib/network/connection/providers/xdsl.pm:890
+#, c-format
+msgid "Pakistan"
+msgstr "ፓኪስታን"
+
+#: ../lib/network/connection/providers/xdsl.pm:901
+#: ../lib/network/connection/providers/xdsl.pm:911
+#, c-format
+msgid "Poland"
+msgstr "ፖላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:922
+#, c-format
+msgid "Portugal"
+msgstr "ፖርቱጋል"
+
+#: ../lib/network/connection/providers/xdsl.pm:931
+#, c-format
+msgid "Russia"
+msgstr "ራሺያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:942
+#, c-format
+msgid "Singapore"
+msgstr "ሲንጋፖር"
+
+#: ../lib/network/connection/providers/xdsl.pm:951
+#, c-format
+msgid "Senegal"
+msgstr "ሴኔጋል"
+
+#: ../lib/network/connection/providers/xdsl.pm:961
+#, c-format
+msgid "Slovenia"
+msgstr "ስሎቬኒያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:972
+#: ../lib/network/connection/providers/xdsl.pm:984
+#: ../lib/network/connection/providers/xdsl.pm:996
+#: ../lib/network/connection/providers/xdsl.pm:1009
+#: ../lib/network/connection/providers/xdsl.pm:1019
+#: ../lib/network/connection/providers/xdsl.pm:1029
+#: ../lib/network/connection/providers/xdsl.pm:1040
+#: ../lib/network/connection/providers/xdsl.pm:1050
+#: ../lib/network/connection/providers/xdsl.pm:1060
+#: ../lib/network/connection/providers/xdsl.pm:1070
+#: ../lib/network/connection/providers/xdsl.pm:1080
+#: ../lib/network/connection/providers/xdsl.pm:1090
+#: ../lib/network/connection/providers/xdsl.pm:1101
+#: ../lib/network/connection/providers/xdsl.pm:1112
+#: ../lib/network/connection/providers/xdsl.pm:1124
+#: ../lib/network/connection/providers/xdsl.pm:1136
+#, c-format
+msgid "Spain"
+msgstr "ስፔን"
+
+#: ../lib/network/connection/providers/xdsl.pm:1149
+#, c-format
+msgid "Sweden"
+msgstr "ስዊድን"
+
+#: ../lib/network/connection/providers/xdsl.pm:1158
+#: ../lib/network/connection/providers/xdsl.pm:1167
+#: ../lib/network/connection/providers/xdsl.pm:1177
+#, c-format
+msgid "Switzerland"
+msgstr "ስዊዘርላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:1186
+#, c-format
+msgid "Thailand"
+msgstr "ታይላንድ"
+
+#: ../lib/network/connection/providers/xdsl.pm:1196
+#, c-format
+msgid "Tunisia"
+msgstr "ቱኒዚያ"
+
+#: ../lib/network/connection/providers/xdsl.pm:1207
+#, c-format
+msgid "Turkey"
+msgstr "ቱርክ"
+
+#: ../lib/network/connection/providers/xdsl.pm:1220
+#, c-format
+msgid "United Arab Emirates"
+msgstr "የተባበሩት አረብ ኤምሬትስ"
+
+#: ../lib/network/connection/providers/xdsl.pm:1230
+#: ../lib/network/connection/providers/xdsl.pm:1240
+#: ../lib/network/netconnect.pm:38
+#, c-format
+msgid "United Kingdom"
+msgstr "እንግሊዝ"
+
+#: ../lib/network/connection/wireless.pm:11
+#, c-format
+msgid "Wireless"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:27
+#, c-format
+msgid "Use a Windows driver (with ndiswrapper)"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:44
+#, c-format
+msgid "Open WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:45
+#, c-format
+msgid "Restricted WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:46
+#, c-format
+msgid "WPA Pre-Shared Key"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:182 ../lib/network/thirdparty.pm:175
+#, c-format
+msgid "Firmware files are required for this device."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:248
+#, c-format
+msgid ""
+"Your wireless card is disabled, please enable the wireless switch (RF kill "
+"switch) first."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:307
+#, fuzzy, c-format
+msgid "Wireless settings"
+msgstr "ሽቦ አልባ ግንኙነት"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Ad-hoc"
+msgstr "Ad-hoc"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Managed"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Master"
+msgstr "ገዢ"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Repeater"
+msgstr "ደጋሚ"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Secondary"
+msgstr "ሁለተኛ"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Auto"
+msgstr "ራስ-ገዝ"
+
+#: ../lib/network/connection/wireless.pm:318
+#, c-format
+msgid "Encryption mode"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:327
+#, c-format
+msgid ""
+"RTS/CTS adds a handshake before each packet transmission to make sure that "
+"the\n"
+"channel is clear. This adds overhead, but increase performance in case of "
+"hidden\n"
+"nodes or large number of active nodes. This parameter sets the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, "
+"fixed\n"
+"or off."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:336
+#, c-format
+msgid ""
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
+"as the hostname).\n"
+"\n"
+"See iwconfig(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:344
+#, c-format
+msgid ""
+"iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
+"\n"
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:354
+#, c-format
+msgid ""
+"iwpriv enable to set up optionals (private) parameters of a wireless "
+"network\n"
+"interface.\n"
+"\n"
+"iwpriv deals with parameters and setting specific to each driver (as opposed "
+"to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to "
+"use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:372
+#, c-format
+msgid "An encryption key is required."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:378
+#, 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 ""
+
+#: ../lib/network/connection/wireless.pm:384
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:396
+#, c-format
+msgid "Allow access point roaming"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:499
+#, c-format
+msgid "Associated to wireless network \"%s\" on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:500
+#, c-format
+msgid "Lost association to wireless network on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:8
+#, fuzzy, c-format
+msgid "DSL"
+msgstr "DNS"
+
+#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
+#, c-format
+msgid "Alcatel speedtouch USB modem"
+msgstr "Alcatel speedtouch USB ሞዴም"
+
+#: ../lib/network/connection/xdsl.pm:104
+#, c-format
+msgid ""
+"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
+"problem.\n"
+"\n"
+"You can find a driver on http://eciadsl.flashtux.org/"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:176
+#, c-format
+msgid "DSL over CAPI"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:179
+#, c-format
+msgid "Dynamic Host Configuration Protocol (DHCP)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:180
+#, c-format
+msgid "Manual TCP/IP configuration"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:181
+#, c-format
+msgid "Point to Point Tunneling Protocol (PPTP)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:182
+#, c-format
+msgid "PPP over Ethernet (PPPoE)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:183
+#, c-format
+msgid "PPP over ATM (PPPoA)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:223
+#, c-format
+msgid "Virtual Path ID (VPI):"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:224
+#, c-format
+msgid "Virtual Circuit ID (VCI):"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakvpn.pm:45 ../lib/network/netconnect.pm:131
+#: ../lib/network/thirdparty.pm:115
+#, fuzzy, c-format
+msgid "Could not install the packages (%s)!"
+msgstr "የ%s ጥቅሎችን መትከል አልተቻለም!"
+
+#: ../lib/network/drakfirewall.pm:12
+#, c-format
+msgid "Web Server"
+msgstr "የመረብ ሰርቨር"
+
+#: ../lib/network/drakfirewall.pm:17
+#, c-format
+msgid "Domain Name Server"
+msgstr "የዘርፍ ስም ሰርቨር"
+
+#: ../lib/network/drakfirewall.pm:22
+#, c-format
+msgid "SSH server"
+msgstr "SSH ሰርቨር"
+
+#: ../lib/network/drakfirewall.pm:27
+#, c-format
+msgid "FTP server"
+msgstr "የFTP ተጠሪ"
+
+#: ../lib/network/drakfirewall.pm:32
+#, c-format
+msgid "Mail Server"
+msgstr "የመልዕክት ተጠሪ"
+
+#: ../lib/network/drakfirewall.pm:37
+#, c-format
+msgid "POP and IMAP Server"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:42
+#, c-format
+msgid "Telnet server"
+msgstr "የቴልኔት ሰርቨር"
+
+#: ../lib/network/drakfirewall.pm:48
+#, c-format
+msgid "Windows Files Sharing (SMB)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:54
+#, c-format
+msgid "CUPS server"
+msgstr "የCUPS ሰርቨር"
+
+#: ../lib/network/drakfirewall.pm:60
+#, c-format
+msgid "Echo request (ping)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
+#, fuzzy, c-format
+msgid "Firewall configuration"
+msgstr "በእጅ ምርጫ"
+
+#: ../lib/network/drakfirewall.pm:166
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandriva Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized Mandriva Security Firewall distribution."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:172
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:189
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
+#, c-format
+msgid "Firewall"
+msgstr "የእሳት ግድግዳ"
+
+#: ../lib/network/drakfirewall.pm:192
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:198
+#, 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.\n"
+"\n"
+"You can also give a range of ports (eg: 24300:24350/udp)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:208
+#, c-format
+msgid "Everything (no firewall)"
+msgstr "ማንኛውም (የእሳት ግድግዳ የለም)"
+
+#: ../lib/network/drakfirewall.pm:210
+#, c-format
+msgid "Other ports"
+msgstr "ሌላ ወደቦች"
+
+#: ../lib/network/drakfirewall.pm:211
+#, c-format
+msgid "Log firewall messages in system logs"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:256
+#, c-format
+msgid ""
+"You can be warned when someone accesses to a service or tries to intrude "
+"into your computer.\n"
+"Please select which network activities should be watched."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:261
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:29
+#, fuzzy, c-format
+msgid "No device found"
+msgstr "ምንም ጽሑፍ አልተገኘም"
+
+#: ../lib/network/drakroam.pm:63 ../lib/network/drakroam.pm:161
+#, fuzzy, c-format
+msgid "Please enter settings for network"
+msgstr "ዝርዝር መረጃ"
+
+#: ../lib/network/drakroam.pm:67 ../lib/network/netconnect.pm:177
+#, fuzzy, c-format
+msgid "Configuring device..."
+msgstr "አገልግሎቶችን ሰይም"
+
+#: ../lib/network/drakroam.pm:95
+#, c-format
+msgid "Hostname changed to \"%s\""
+msgstr ""
+
+#: ../lib/network/drakroam.pm:108 ../lib/network/netconnect.pm:209
+#, fuzzy, c-format
+msgid "Scanning for networks..."
+msgstr "Name=መረብ"
+
+#: ../lib/network/drakroam.pm:200
+#, fuzzy, c-format
+msgid "Connecting..."
+msgstr "ግንኙነት"
+
+#: ../lib/network/drakroam.pm:227
+#, fuzzy, c-format
+msgid "Disconnect"
+msgstr "ግንኙነት አቋርጥ..."
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Connect"
+msgstr "አገናኝ"
+
+#: ../lib/network/drakroam.pm:250
+#, fuzzy, c-format
+msgid "Disconnecting..."
+msgstr "ግንኙነት አቋርጥ..."
+
+#: ../lib/network/drakroam.pm:279
+#, c-format
+msgid "SSID"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:280
+#, c-format
+msgid "Signal strength"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:281
+#, c-format
+msgid "Encryption"
+msgstr "አገለባበጥ"
+
+#: ../lib/network/drakroam.pm:335 ../lib/network/netconnect.pm:761
+#, c-format
+msgid "Wireless connection"
+msgstr "ሽቦ አልባ ግንኙነት"
+
+#: ../lib/network/drakroam.pm:350
+#, c-format
+msgid "Configure"
+msgstr "ለውጥ"
+
+#: ../lib/network/drakroam.pm:352
+#, c-format
+msgid "Refresh"
+msgstr "አድስ"
+
+#: ../lib/network/drakvpn.pm:30
+#, fuzzy, c-format
+msgid "VPN configuration"
+msgstr "የማስተካከያው አራሚ"
+
+#: ../lib/network/drakvpn.pm:34
+#, fuzzy, c-format
+msgid "Choose the VPN type"
+msgstr "አዲሱን መጠን ይምረጡ"
+
+#: ../lib/network/drakvpn.pm:49
+#, c-format
+msgid "Initializing tools and detecting devices for %s..."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:52
+#, fuzzy, c-format
+msgid "Unable to initialize %s connection type!"
+msgstr "ያልታወቀ የግንኙነት አይነት"
+
+#: ../lib/network/drakvpn.pm:60
+#, c-format
+msgid "Please select an existing VPN connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:64
+#, fuzzy, c-format
+msgid "Configure a new connection..."
+msgstr "ግንኙነትዎን በመሞከር ላይ..."
+
+#: ../lib/network/drakvpn.pm:66
+#, fuzzy, c-format
+msgid "New name"
+msgstr "እውነተኛ ስም"
+
+#: ../lib/network/drakvpn.pm:70
+#, c-format
+msgid "You must select an existing connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:81
+#, fuzzy, c-format
+msgid "Please enter the required key(s)"
+msgstr "እባክዎ የWebDAV ሰርቨር URL ያስገቡ"
+
+#: ../lib/network/drakvpn.pm:86
+#, fuzzy, c-format
+msgid "Please enter the settings of your VPN connection"
+msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
+
+#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#, c-format
+msgid "Do you want to start the connection now?"
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:100
+#, fuzzy, c-format
+msgid "Connection failed."
+msgstr "የግንኙነት ስም"
+
+#: ../lib/network/drakvpn.pm:108
+#, c-format
+msgid ""
+"The VPN connection is now configured.\n"
+"\n"
+"This VPN connection can be automatically started together with a network "
+"connection.\n"
+"It can be done by reconfiguring the network connection and selecting this "
+"VPN connection.\n"
+msgstr ""
+
+#: ../lib/network/ifw.pm:129
+#, fuzzy, c-format
+msgid "Port scanning"
+msgstr "መጋራት የለም"
+
+#: ../lib/network/ifw.pm:130
+#, fuzzy, c-format
+msgid "Service attack"
+msgstr "የአገልግሎቶች መቆጣጠሪያ"
+
+#: ../lib/network/ifw.pm:131
+#, fuzzy, c-format
+msgid "Password cracking"
+msgstr "ሚስጢራዊ ቃል (እንደገና)"
+
+#: ../lib/network/ifw.pm:132
+#, c-format
+msgid "\"%s\" attack"
+msgstr ""
+
+#: ../lib/network/ifw.pm:134
+#, c-format
+msgid "A port scanning attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:135
+#, c-format
+msgid "The %s service has been attacked by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:136
+#, c-format
+msgid "A password cracking attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:137
+#, c-format
+msgid "A \"%s\" attack has been attempted by %s"
+msgstr ""
+
+#: ../lib/network/ifw.pm:146
+#, c-format
+msgid ""
+"The \"%s\" application is trying to make a service (%s) available to the "
+"network."
+msgstr ""
+
+#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
+#: ../lib/network/ifw.pm:150
+#, fuzzy, c-format
+msgid "port %d"
+msgstr "ሪፖርት"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#, c-format
+msgid "Manual"
+msgstr "መመሪያ"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
+#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
+#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
+#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#: ../lib/network/netconnect.pm:638
+#, c-format
+msgid "Automatic"
+msgstr "ራስ-ገዝ"
+
+#: ../lib/network/ndiswrapper.pm:27
+#, c-format
+msgid "No device supporting the %s ndiswrapper driver is present!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:33
+#, c-format
+msgid "Please select the Windows driver (.inf file)"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:42
+#, c-format
+msgid "Unable to install the %s ndiswrapper driver!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:86
+#, c-format
+msgid "Unable to load the ndiswrapper module!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:92
+#, c-format
+msgid ""
+"The selected device has already been configured with the %s driver.\n"
+"Do you really want to use a ndiswrapper driver?"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:102
+#, c-format
+msgid "Unable to find the ndiswrapper interface!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:115
+#, fuzzy, c-format
+msgid "Choose an ndiswrapper driver"
+msgstr "የነሲብ URLን አታስችል"
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Use the ndiswrapper driver %s"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:118
+#, fuzzy, c-format
+msgid "Install a new driver"
+msgstr "ሲስተም ትከል"
+
+#: ../lib/network/ndiswrapper.pm:129
+#, c-format
+msgid "Select a device:"
+msgstr ""
+
+#: ../lib/network/netcenter.pm:55
+#, fuzzy, c-format
+msgid "Network Center"
+msgstr "የተጠቃሚው እይታ"
+
+#: ../lib/network/netconnect.pm:37
+#, c-format
+msgid "United States"
+msgstr "አሜሪካ"
+
+#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
+#: ../lib/network/netconnect.pm:507
+#, c-format
+msgid "Manual choice"
+msgstr "የመመሪያ ምርጫ"
+
+#: ../lib/network/netconnect.pm:60
+#, c-format
+msgid "Internal ISDN card"
+msgstr "ውስጣዊ ISDN ካርድ"
+
+#: ../lib/network/netconnect.pm:65
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:123
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "ለማስተካከል የሚፈልጉትን ግንኙነት ይምረጡ"
+
+#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
+#: ../lib/network/netconnect.pm:788
+#, c-format
+msgid "Select the network interface to configure:"
+msgstr "ለማስተካከል የመረብ እይታ ይምረጡ:"
+
+#: ../lib/network/netconnect.pm:164
+#, c-format
+msgid "No device can be found for this connection type."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:173
+#, fuzzy, c-format
+msgid "Hardware Configuration"
+msgstr "የመረብ ምርጫ"
+
+#: ../lib/network/netconnect.pm:194
+#, c-format
+msgid "Please select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:212
+#, c-format
+msgid "Please select your network:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:241
+#, c-format
+msgid ""
+"Please select your connection protocol.\n"
+"If you do not know it, keep the preselected protocol."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#, c-format
+msgid "Connection control"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Connection Configuration"
+msgstr "የግንኙነት ምርጫ"
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:318
+#, c-format
+msgid "Your personal phone number"
+msgstr "የራስዎ ስልክ ቁጥር"
+
+#: ../lib/network/netconnect.pm:319
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "የአገልግሎት ሰጪው ስም (ለምሳሌ: provider.net)"
+
+#: ../lib/network/netconnect.pm:321
+#, fuzzy, c-format
+msgid "Provider DNS 1 (optional)"
+msgstr "የአገልግሎት ሰጪ ስልክ ቁጥር"
+
+#: ../lib/network/netconnect.pm:322
+#, fuzzy, c-format
+msgid "Provider DNS 2 (optional)"
+msgstr "የአገልግሎት ሰጪ ስልክ ቁጥር"
+
+#: ../lib/network/netconnect.pm:332
+#, c-format
+msgid "Card IO_1"
+msgstr "ካርድ IO_1"
+
+#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#, c-format
+msgid "External ISDN modem"
+msgstr "ውጫዊ የISDN ሞዴም"
+
+#: ../lib/network/netconnect.pm:384
+#, fuzzy, c-format
+msgid "Select a device!"
+msgstr "የመረብ ዕቃ"
+
+#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
+#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid "ISDN Configuration"
+msgstr "የISDN ምርጫ"
+
+#: ../lib/network/netconnect.pm:394
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "ምን አይነት ካርድ ነው ያልዎት?"
+
+#: ../lib/network/netconnect.pm:404
+#, 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 ""
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Continue"
+msgstr "ቀጥል"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Abort"
+msgstr "ይቁም"
+
+#: ../lib/network/netconnect.pm:414
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "ከሚከተሉት የISDN ካርዶች ውስጥ የትኛው ነው የእርሶ?"
+
+#: ../lib/network/netconnect.pm:432
+#, c-format
+msgid ""
+"A CAPI driver is available for this modem. This CAPI driver can offer more "
+"capabilities than the free driver (like sending faxes). Which driver do you "
+"want to use?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:446
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it is not listed, choose Unlisted."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
+#, c-format
+msgid "Provider:"
+msgstr "አገልግሎት ሰጪ:"
+
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid ""
+"Your modem is not supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:490
+#, fuzzy, c-format
+msgid "Select the modem to configure:"
+msgstr "ለማስተካከል ሞዴም ይምረጡ:"
+
+#: ../lib/network/netconnect.pm:492
+#, c-format
+msgid "Modem"
+msgstr "ሞደም"
+
+#: ../lib/network/netconnect.pm:527
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:556
+#, c-format
+msgid "Select your provider:"
+msgstr "አግልግሎት ሰጪዎን ይምረጡ"
+
+#: ../lib/network/netconnect.pm:580
+#, fuzzy, c-format
+msgid "Dialup: account options"
+msgstr "ባለሁለት አቅጣጫ ምርጫዎች"
+
+#: ../lib/network/netconnect.pm:583
+#, c-format
+msgid "Connection name"
+msgstr "የግንኙነት ስም"
+
+#: ../lib/network/netconnect.pm:584
+#, c-format
+msgid "Phone number"
+msgstr "የስልክ ቁጥር"
+
+#: ../lib/network/netconnect.pm:585
+#, fuzzy, c-format
+msgid "Login ID"
+msgstr "መለያ አስገባ"
+
+#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
+#, c-format
+msgid "Dialup: IP parameters"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:603
+#, c-format
+msgid "IP parameters"
+msgstr "IP መለኪያዎች"
+
+#: ../lib/network/netconnect.pm:605
+#, c-format
+msgid "Subnet mask"
+msgstr "Subnet mask"
+
+#: ../lib/network/netconnect.pm:617
+#, c-format
+msgid "Dialup: DNS parameters"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:620
+#, c-format
+msgid "DNS"
+msgstr "DNS"
+
+#: ../lib/network/netconnect.pm:621
+#, c-format
+msgid "Domain name"
+msgstr "የዶሜን ስም"
+
+#: ../lib/network/netconnect.pm:624
+#, c-format
+msgid "Set hostname from IP"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:637
+#, c-format
+msgid "Gateway IP address"
+msgstr "የGateway IP አድራሻ"
+
+#: ../lib/network/netconnect.pm:670
+#, fuzzy, c-format
+msgid "Automatically at boot"
+msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
+
+#: ../lib/network/netconnect.pm:672
+#, c-format
+msgid "By using Net Applet in the system tray"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:674
+#, c-format
+msgid "Manually (the interface would still be activated at boot)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:683
+#, fuzzy, c-format
+msgid "How do you want to dial this connection?"
+msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
+
+#: ../lib/network/netconnect.pm:696
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:723
+#, c-format
+msgid "The system is now connected to the Internet."
+msgstr "ሲስተሙ አሁን ከኢንተርኔት ጋር ተገናኝቷል።"
+
+#: ../lib/network/netconnect.pm:724
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "ለድህንነት ሲባል፣ ግንኙነቱ አሁን ይቋረጣል።"
+
+#: ../lib/network/netconnect.pm:725
+#, c-format
+msgid ""
+"The system does not seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:740
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:743
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:744
+#, c-format
+msgid ""
+"Problems occurred during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection does not "
+"work, you might want to relaunch the configuration."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:756
+#, c-format
+msgid "Sagem USB modem"
+msgstr "Sagem USB ሞዴም"
+
+#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
+#, c-format
+msgid "Bewan modem"
+msgstr "Bewan ሞዴም"
+
+#: ../lib/network/netconnect.pm:759
+#, c-format
+msgid "ECI Hi-Focus modem"
+msgstr "ECI Hi-Focus ሞዴም"
+
+#: ../lib/network/netconnect.pm:760
+#, c-format
+msgid "LAN connection"
+msgstr "የቅርብ መረብ ግንኙነት"
+
+#: ../lib/network/netconnect.pm:762
+#, c-format
+msgid "ADSL connection"
+msgstr "የADSL ግንኙነት"
+
+#: ../lib/network/netconnect.pm:763
+#, c-format
+msgid "Cable connection"
+msgstr "የኬብል ግንኙነት"
+
+#: ../lib/network/netconnect.pm:764
+#, c-format
+msgid "ISDN connection"
+msgstr "የISDN ግንኙነት"
+
+#: ../lib/network/netconnect.pm:765
+#, c-format
+msgid "Modem connection"
+msgstr "የሞዴም ግንኙነት"
+
+#: ../lib/network/netconnect.pm:766
+#, c-format
+msgid "DVB connection"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:768
+#, fuzzy, c-format
+msgid "(detected on port %s)"
+msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
+
+# -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: ../lib/network/netconnect.pm:770
+#, fuzzy, c-format
+msgid "(detected %s)"
+msgstr "አውቶማቲካሊ ተፈልጎ የተገኘ"
+
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected)"
+msgstr "(ተገኝቷል)"
+
+#: ../lib/network/netconnect.pm:771
+#, c-format
+msgid "Network Configuration"
+msgstr "የመረብ ምርጫ"
+
+#: ../lib/network/netconnect.pm:772
+#, c-format
+msgid "Zeroconf hostname resolution"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:773
+#, c-format
+msgid ""
+"If desired, enter a Zeroconf hostname.\n"
+"This is the name your machine will use to advertise any of\n"
+"its shared resources that are not managed by the network.\n"
+"It is not necessary on most networks."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:777
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "ህገ ወጥ የዶሴ ስም"
+
+#: ../lib/network/netconnect.pm:778
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:779
+#, 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 ""
+
+#: ../lib/network/netconnect.pm:782
+#, c-format
+msgid "The network needs to be restarted. Do you want to restart it?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:783
+#, c-format
+msgid ""
+"A problem occurred while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:784
+#, c-format
+msgid ""
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press \"%s\" to continue."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:785
+#, c-format
+msgid "Configuration is complete, do you want to apply settings?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:786
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:787
+#, c-format
+msgid "Internet connection"
+msgstr "የኢንተርኔት ግንኙነት"
+
+#: ../lib/network/netconnect.pm:789
+#, c-format
+msgid "Configuring network device %s (driver %s)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:790
+#, c-format
+msgid ""
+"The following protocols can be used to configure a LAN connection. Please "
+"choose the one you want to use."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:791
+#, 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 ""
+
+#: ../lib/network/netconnect.pm:796
+#, c-format
+msgid "Last but not least you can also type in your DNS server IP addresses."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:797
+#, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:799
+#, c-format
+msgid "Gateway device"
+msgstr "የGateway መሳሪያ"
+
+#: ../lib/network/netconnect.pm:813
+#, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/network.pm:429
+#, c-format
+msgid "Proxies configuration"
+msgstr "የወኪሎች ምርጫ"
+
+#: ../lib/network/network.pm:430
+#, c-format
+msgid ""
+"Here you can set up your proxies configuration (eg: http://"
+"my_caching_server:8080)"
+msgstr ""
+
+#: ../lib/network/network.pm:431
+#, c-format
+msgid "HTTP proxy"
+msgstr "የHTTP ወኪል"
+
+#: ../lib/network/network.pm:432
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: ../lib/network/network.pm:433
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: ../lib/network/network.pm:434
+#, c-format
+msgid "FTP proxy"
+msgstr "የFTP ወኪል"
+
+#: ../lib/network/network.pm:435
+#, fuzzy, c-format
+msgid "No proxy for (comma separated list):"
+msgstr "%d በነጠላ ሰረዝ የተለዩ ሐረጎች"
+
+#: ../lib/network/network.pm:440
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "ወኪል http://... መሆን አለበት"
+
+#: ../lib/network/network.pm:441
+#, fuzzy, c-format
+msgid "Proxy should be http://... or https://..."
+msgstr "ወኪል http://... መሆን አለበት"
+
+#: ../lib/network/network.pm:442
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "URL በ'ftp:' ወይም በ'http:' መጀመር አለበት"
+
+#: ../lib/network/shorewall.pm:61
+#, c-format
+msgid ""
+"Please select the interfaces that will be protected by the firewall.\n"
+"\n"
+"All interfaces directly connected to Internet should be selected,\n"
+"while interfaces connected to a local network may be unselected.\n"
+"\n"
+"Which interfaces should be protected?\n"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:136
+#, c-format
+msgid "Keep custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:137
+#, c-format
+msgid "Drop custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:142
+#, c-format
+msgid ""
+"Your firewall configuration has been manually edited and contains\n"
+"rules that may conflict with the configuration that has just been set up.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:135
+#, c-format
+msgid "Some components (%s) are required but aren't available for %s hardware."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:136
+#, c-format
+msgid "Some packages (%s) are required but aren't available."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:138
+#, c-format
+msgid ""
+"These packages can be found in Mandriva Club or in Mandriva commercial "
+"releases."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:139
+#, c-format
+msgid "The following component is missing: %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:141
+#, c-format
+msgid ""
+"The required files can also be installed from this URL:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:183
+#, c-format
+msgid "Use a floppy"
+msgstr "ፍሎፒ ተጠቀም"
+
+#: ../lib/network/thirdparty.pm:179 ../lib/network/thirdparty.pm:186
+#, c-format
+msgid "Use my Windows partition"
+msgstr "የWindows ክፋዬን ተጠቀም"
+
+#: ../lib/network/thirdparty.pm:180
+#, c-format
+msgid "Select file"
+msgstr "ፋይል ይምረጡ"
+
+#: ../lib/network/thirdparty.pm:191
+#, c-format
+msgid "Please select the firmware file (for example: %s)"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:215
+#, fuzzy, c-format
+msgid "Unable to find \"%s\" on your Windows system!"
+msgstr "ከሲስተሜ ውስጥ ፊደላትን አስወግድ"
+
+#: ../lib/network/thirdparty.pm:217
+#, c-format
+msgid "No Windows system has been detected!"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:227
+#, c-format
+msgid "Insert floppy"
+msgstr "ፍሎፒ ያስገቡ"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid "Next"
+msgstr "የሚቀጥለው"
+
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:327
+#, c-format
+msgid "Looking for required software and drivers..."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:338
+#, fuzzy, c-format
+msgid "Please wait, running device configuration commands..."
+msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግኘት እና በማስተካከል ላይ ነው..."
+
+#: ../lib/network/vpn/openvpn.pm:107
+#, c-format
+msgid "X509 Public Key Infrastructure"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:108
+#, c-format
+msgid "Static Key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:115
+#, c-format
+msgid "Type"
+msgstr "አይነት"
+
+#. -PO: please don't translate the CA acronym
+#: ../lib/network/vpn/openvpn.pm:142
+#, c-format
+msgid "Certificate Authority (CA)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:148
+#, c-format
+msgid "Certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:154
+#, fuzzy, c-format
+msgid "Key"
+msgstr "ኬንያ"
+
+#: ../lib/network/vpn/openvpn.pm:160
+#, fuzzy, c-format
+msgid "TLS control channel key"
+msgstr "የግራ Control ቁልፍ"
+
+#: ../lib/network/vpn/openvpn.pm:167
+#, c-format
+msgid "Key direction"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:175
+#, c-format
+msgid "Authenticate using username and password"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:181
+#, c-format
+msgid "Check server certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:187
+#, c-format
+msgid "Cipher algorithm"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:191
+#, c-format
+msgid "Default"
+msgstr "ቀዳሚ"
+
+#: ../lib/network/vpn/openvpn.pm:195
+#, c-format
+msgid "Size of cipher key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:206
+#, fuzzy, c-format
+msgid "Get from server"
+msgstr "የቴልኔት ሰርቨር"
+
+#: ../lib/network/vpn/openvpn.pm:216
+#, fuzzy, c-format
+msgid "Gateway port"
+msgstr "Gateway"
+
+#: ../lib/network/vpn/openvpn.pm:232
+#, fuzzy, c-format
+msgid "Remote IP address"
+msgstr "የGateway IP አድራሻ"
+
+#: ../lib/network/vpn/openvpn.pm:237
+#, c-format
+msgid "Use TCP protocol"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:243
+#, c-format
+msgid "Virtual network device type"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:250
+#, c-format
+msgid "Virtual network device number (optional)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:365
+#, c-format
+msgid "Starting connection.."
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:380
+#, c-format
+msgid "Please insert your token"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:9
+#, c-format
+msgid "Cisco VPN Concentrator"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:43
+#, fuzzy, c-format
+msgid "Group name"
+msgstr "የብድን መለያ ቁጥር"
+
+#: ../lib/network/vpn/vpnc.pm:47
+#, c-format
+msgid "Group secret"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:52
+#, c-format
+msgid "Username"
+msgstr "የተጠቃሚ ስም"
+
+#: ../lib/network/vpn/vpnc.pm:61
+#, c-format
+msgid "Use Cisco-UDP encapsulation"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:67
+#, c-format
+msgid "Use specific UDP port"
+msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 1c85ec1..dd02086 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2007-01-10 15:18+0100\n"
+"POT-Creation-Date: 2007-08-09 11:47+0200\n"
"PO-Revision-Date: 2005-03-03 01:06+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -20,2664 +20,545 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=10 ? 2 : "
"3\n"
-#: ../lib/network/connection.pm:16
-#, c-format
-msgid "Unknown connection type"
-msgstr "نوع وصلة مجهول"
-
-#: ../lib/network/connection.pm:115
-#, c-format
-msgid "Network access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:116
-#, c-format
-msgid "Access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:117
-#, c-format
-msgid "Address settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:149 ../lib/network/drakvpn.pm:62
-#: ../lib/network/vpn/openvpn.pm:365 ../lib/network/vpn/openvpn.pm:379
-#: ../lib/network/vpn/openvpn.pm:390 ../tools/net_applet:129
-#, fuzzy, c-format
-msgid "VPN connection"
-msgstr "وصلة LAN"
-
-#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
-#: ../lib/network/connection/wireless.pm:37 ../lib/network/vpn/openvpn.pm:127
-#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
-#, c-format
-msgid "None"
-msgstr "لاشيء"
-
-#: ../lib/network/connection.pm:163
-#, c-format
-msgid "Allow users to manage the connection"
-msgstr ""
-
-#: ../lib/network/connection.pm:164
+#: ../bin/drakconnect:61 ../lib/network/netconnect.pm:118
#, c-format
-msgid "Start the connection at boot"
-msgstr ""
-
-#: ../lib/network/connection.pm:165 ../tools/drakconnect:462
-#, c-format
-msgid "Metric"
-msgstr "متري"
-
-#: ../lib/network/connection.pm:230
-#, fuzzy, c-format
-msgid "Link detected on interface %s"
-msgstr "(اكتشاف على المنفذ %s)"
-
-#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:278
-#, c-format
-msgid "Link beat lost on interface %s"
-msgstr ""
+msgid "Network & Internet Configuration"
+msgstr "تهيئة الشّبكة والإنترنت"
-#: ../lib/network/connection/cable.pm:13
+#: ../bin/drakconnect:81
#, c-format
-msgid "Cable"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:14
-#, fuzzy, c-format
-msgid "Cable modem"
-msgstr "نوع البطاقة"
+msgid "Network configuration (%d adapters)"
+msgstr "إعدادات الشبكة (%d موائمات)"
-#: ../lib/network/connection/cable.pm:45
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "استخدام BPALogin )مطلوبة لـTelstra)"
+msgid "Gateway:"
+msgstr "البوابة:"
-#: ../lib/network/connection/cable.pm:48 ../lib/network/netconnect.pm:587
-#: ../tools/drakconnect:482
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Authentication"
-msgstr "المواثقة"
+msgid "Interface:"
+msgstr "الواجهة:"
-#: ../lib/network/connection/cable.pm:50 ../lib/network/connection/ppp.pm:22
-#: ../lib/network/netconnect.pm:326 ../lib/network/vpn/openvpn.pm:393
-#: ../tools/drakconnect:492
+#: ../bin/drakconnect:97 ../bin/net_monitor:119
#, c-format
-msgid "Account Login (user name)"
-msgstr "اسم الدخول للحساب (اسم المستخدم)"
+msgid "Wait please"
+msgstr "الرجاء الانتظار"
-#: ../lib/network/connection/cable.pm:52 ../lib/network/connection/ppp.pm:23
-#: ../lib/network/netconnect.pm:327 ../lib/network/vpn/openvpn.pm:394
-#: ../tools/drakconnect:493
+#: ../bin/drakconnect:113 ../bin/drakinvictus:105
#, c-format
-msgid "Account Password"
-msgstr "كلمة المرور للحساب"
+msgid "Interface"
+msgstr "الواجهة"
-#: ../lib/network/connection/cellular.pm:47
+#: ../bin/drakconnect:113 ../bin/drakconnect:321 ../bin/drakconnect:888
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:125
+#: ../lib/network/netconnect.pm:604 ../lib/network/vpn/openvpn.pm:221
#, c-format
-msgid "Access Point Name"
-msgstr ""
+msgid "IP address"
+msgstr "عنوان IP"
-#: ../lib/network/connection/cellular_bluetooth.pm:10
+#: ../bin/drakconnect:113 ../bin/drakconnect:305 ../bin/drakconnect:563
+#: ../bin/drakids:252 ../bin/drakvpn-old:839 ../lib/network/netconnect.pm:448
#, c-format
-msgid "Bluetooth"
-msgstr ""
+msgid "Protocol"
+msgstr "البروتوكول"
-#: ../lib/network/connection/cellular_bluetooth.pm:11
+#: ../bin/drakconnect:113 ../lib/network/netconnect.pm:434
#, c-format
-msgid "Bluetooth Dial Up Networking"
-msgstr ""
+msgid "Driver"
+msgstr "المشغّل"
-#: ../lib/network/connection/cellular_card.pm:8
+#: ../bin/drakconnect:113
#, c-format
-msgid "GPRS/Edge/3G"
-msgstr ""
+msgid "State"
+msgstr "الحالة"
-#: ../lib/network/connection/cellular_card.pm:67
-#: ../lib/network/vpn/openvpn.pm:391
+#: ../bin/drakconnect:130
#, c-format
-msgid "PIN number"
-msgstr ""
-
-#: ../lib/network/connection/cellular_card.pm:130
-#, fuzzy, c-format
-msgid "Unable to open device %s"
-msgstr "تعذر تنفيذ: %s"
-
-#: ../lib/network/connection/cellular_card.pm:155
-#, fuzzy, c-format
-msgid "Please check that your SIM card is inserted."
-msgstr ""
-"\n"
-"فضلاً قم بالتأشير على الخيارات التي تحتاجها.\n"
+msgid "Hostname: "
+msgstr "اسم المضيف:"
-#: ../lib/network/connection/cellular_card.pm:161
+#: ../bin/drakconnect:132
#, c-format
-msgid ""
-"You entered a wrong PIN code.\n"
-"Entering the wrong PIN code multiple times may lock your SIM card!"
-msgstr ""
+msgid "Configure hostname..."
+msgstr "تهيئة اسم المضيف..."
-#: ../lib/network/connection/dvb.pm:12
+#: ../bin/drakconnect:146 ../bin/drakconnect:851
#, c-format
-msgid "DVB"
-msgstr ""
+msgid "LAN configuration"
+msgstr "تهيئة LAN"
-#: ../lib/network/connection/dvb.pm:13
+#: ../bin/drakconnect:151
#, c-format
-msgid "Satellite (DVB)"
-msgstr ""
+msgid "Configure Local Area Network..."
+msgstr "تهيئة الشبكة المحلية..."
-#: ../lib/network/connection/dvb.pm:56
+#: ../bin/drakconnect:157 ../bin/drakconnect:240 ../bin/draknfs:183
+#: ../bin/net_applet:138
#, c-format
-msgid "Adapter card"
-msgstr ""
+msgid "Help"
+msgstr "مساعدة"
-#: ../lib/network/connection/dvb.pm:57
+#: ../bin/drakconnect:159 ../bin/drakconnect:241 ../bin/drakconnect:245
+#: ../bin/drakinvictus:140
#, c-format
-msgid "Net demux"
-msgstr ""
+msgid "Apply"
+msgstr "تطبيق"
-#: ../lib/network/connection/dvb.pm:58
+#: ../bin/drakconnect:161 ../bin/drakconnect:943 ../bin/drakconnect:1034
+#: ../bin/draknetprofile:106 ../bin/net_monitor:341
#, c-format
-msgid "PID"
-msgstr "رمز المهمة"
+msgid "Cancel"
+msgstr "إلغاء"
-#: ../lib/network/connection/ethernet.pm:10
+#: ../bin/drakconnect:162 ../bin/drakconnect:858 ../bin/drakconnect:945
+#: ../bin/drakconnect:1035 ../bin/draknetprofile:108 ../bin/net_monitor:342
#, c-format
-msgid "Ethernet"
-msgstr ""
+msgid "Ok"
+msgstr "موافق"
-#: ../lib/network/connection/ethernet.pm:53
+#: ../bin/drakconnect:164 ../bin/drakconnect:636 ../bin/drakgw:359
+#: ../bin/draksambashare:208 ../lib/network/drakroam.pm:200
+#: ../lib/network/drakroam.pm:250
#, c-format
-msgid "Unable to find network interface for selected device (using %s driver)."
-msgstr ""
+msgid "Please wait"
+msgstr "الرجاء الانتظار"
-#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#: ../bin/drakconnect:166 ../bin/drakconnect:638
#, c-format
-msgid "Manual configuration"
-msgstr "تهيئة يدوية"
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق التهيئة"
-#: ../lib/network/connection/ethernet.pm:62
+#: ../bin/drakconnect:192
#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "IP آلي (BOOTP/DHCP)"
-
-#: ../lib/network/connection/ethernet.pm:116
-#, fuzzy, c-format
-msgid "IP settings"
-msgstr "إعداد PLL:"
+msgid "Manage connections"
+msgstr "إدارة الاتّصالات"
-#: ../lib/network/connection/ethernet.pm:125 ../lib/network/netconnect.pm:604
-#: ../lib/network/vpn/openvpn.pm:221 ../tools/drakconnect:113
-#: ../tools/drakconnect:321 ../tools/drakconnect:887 ../tools/drakhosts:196
+#: ../bin/drakconnect:219 ../lib/network/drakroam.pm:346
#, c-format
-msgid "IP address"
-msgstr "عنوان IP"
+msgid "Device: "
+msgstr "الجهاز: "
-#: ../lib/network/connection/ethernet.pm:129
+#: ../bin/drakconnect:302
#, 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)."
-msgstr ""
-"الرجاء إدخال تهيئة IP الخاصة بهذه الماكينة.\n"
-"كل مادة يجب إدخالها كعنوان IP بشكل منقوط\n"
-"(مثلاً، 1.2.3.4(."
+msgid "IP configuration"
+msgstr "تهيئة IP"
-#: ../lib/network/connection/ethernet.pm:132 ../tools/drakconnect:326
-#: ../tools/drakconnect:888 ../tools/drakgw:177
+#: ../bin/drakconnect:326 ../bin/drakconnect:889 ../bin/drakgw:177
+#: ../lib/network/connection/ethernet.pm:132
#, c-format
msgid "Netmask"
msgstr "قناع الشبكة"
-#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:636
-#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
-#: ../tools/drakconnect:332
+#: ../bin/drakconnect:332 ../lib/network/connection/ethernet.pm:133
+#: ../lib/network/netconnect.pm:636 ../lib/network/vpn/openvpn.pm:212
+#: ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "البوّابة"
-#: ../lib/network/connection/ethernet.pm:136 ../tools/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "عنوان IP لخادم DNS"
+#: ../bin/drakconnect:337
+#, c-format
+msgid "DNS servers"
+msgstr "خادمات DNS"
-#: ../lib/network/connection/ethernet.pm:138
+#: ../bin/drakconnect:343
#, c-format
-msgid "DNS server 1"
-msgstr "خادم DNS 1"
+msgid "Search Domain"
+msgstr "نطاق البحث"
-#: ../lib/network/connection/ethernet.pm:139
+#: ../bin/drakconnect:351 ../bin/drakvpn-old:837
#, c-format
-msgid "DNS server 2"
-msgstr "خادم DNS 2"
+msgid "none"
+msgstr "لاشئ"
-#: ../lib/network/connection/ethernet.pm:140
+#: ../bin/drakconnect:351
#, c-format
-msgid "Search domain"
-msgstr "نطاق البحث"
+msgid "static"
+msgstr "ثابت"
-#: ../lib/network/connection/ethernet.pm:141
+#: ../bin/drakconnect:351
#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr "بشكل افتراضي سيتمّ تحديد نطاق البحث من اسم المضيف المهيّء بالكامل"
+msgid "DHCP"
+msgstr "DHCP"
-#: ../lib/network/connection/ethernet.pm:143 ../tools/drakconnect:369
-#: ../tools/drakconnect:891
+#: ../bin/drakconnect:369 ../bin/drakconnect:892
+#: ../lib/network/connection/ethernet.pm:143
#, c-format
msgid "DHCP client"
msgstr "عميل DHCP"
-#: ../lib/network/connection/ethernet.pm:144 ../tools/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "الوقت الأقصى للاتصال (بالثواني)"
-
-#: ../lib/network/connection/ethernet.pm:145 ../tools/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:146 ../tools/drakconnect:384
+#: ../bin/drakconnect:373 ../lib/network/connection/ethernet.pm:200
#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
+msgid "Assign host name from DHCP address"
+msgstr "تعيين اسم المضيف من عنوان DHCP"
-#: ../lib/network/connection/ethernet.pm:147 ../tools/drakconnect:375
+#: ../bin/drakconnect:375 ../lib/network/connection/ethernet.pm:147
#, c-format
msgid "DHCP host name"
msgstr "اسم مضيف DHCP"
-#: ../lib/network/connection/ethernet.pm:149
-#, c-format
-msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:160 ../tools/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "عنوان IP يجب أن يكون بنسق 1.2.3.4"
-
-#: ../lib/network/connection/ethernet.pm:165 ../tools/drakconnect:680
+#: ../bin/drakconnect:379 ../lib/network/connection/ethernet.pm:144
#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
-
-#: ../lib/network/connection/ethernet.pm:170
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "تحذير: عنوان الـ IP %s عادة ما يكون محفوظاً!"
-
-#: ../lib/network/connection/ethernet.pm:176
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s قيد الاستخدام مسبقاً\n"
-
-#: ../lib/network/connection/ethernet.pm:200 ../tools/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "تعيين اسم المضيف من عنوان DHCP"
-
-#: ../lib/network/connection/ethernet.pm:202 ../tools/drakhosts:196
-#, c-format
-msgid "Host name"
-msgstr "اسم المضيف"
-
-#: ../lib/network/connection/ethernet.pm:220 ../tools/drakconnect:440
-#, c-format
-msgid "Network Hotplugging"
-msgstr "القبْس السريع للشبكة"
-
-#: ../lib/network/connection/ethernet.pm:224
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:277
-#, c-format
-msgid "Link beat detected on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:280
-#, c-format
-msgid "Requesting a network address on interface %s (%s protocol)..."
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:281
-#, c-format
-msgid "Got a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:282
-#, c-format
-msgid "Failed to get a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:8
-#, c-format
-msgid "ISDN"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
-#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
-#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
-#: ../lib/network/netconnect.pm:562
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "غير مُسرد - عدّل يدويّاً"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "لا أعرف "
-
-#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#. -PO: POTS means "Plain old telephone service"
-#: ../lib/network/connection/pots.pm:10
-#, c-format
-msgid "POTS"
-msgstr ""
-
-#. -PO: POTS means "Plain old telephone service"
-#. -PO: remove it if it doesn't have an equivalent in your language
-#. -PO: for example, in French, it can be translated as "RTC"
-#: ../lib/network/connection/pots.pm:16
-#, c-format
-msgid "Analog telephone modem (POTS)"
-msgstr ""
-
-#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:74
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Script-based"
-msgstr "مبني على نص برمجي"
-
-#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:75
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:76
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Terminal-based"
-msgstr "مبني على محطة طرفيّة"
-
-#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:77
-#: ../tools/drakconnect:499
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:78
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: ../lib/network/connection/providers/cellular.pm:13
-#: ../lib/network/connection/providers/cellular.pm:18
-#: ../lib/network/connection/providers/cellular.pm:23
-#: ../lib/network/connection/providers/xdsl.pm:492
-#: ../lib/network/connection/providers/xdsl.pm:504
-#: ../lib/network/connection/providers/xdsl.pm:516
-#: ../lib/network/connection/providers/xdsl.pm:528
-#: ../lib/network/connection/providers/xdsl.pm:539
-#: ../lib/network/connection/providers/xdsl.pm:551
-#: ../lib/network/connection/providers/xdsl.pm:563
-#: ../lib/network/connection/providers/xdsl.pm:575
-#: ../lib/network/connection/providers/xdsl.pm:588
-#: ../lib/network/connection/providers/xdsl.pm:599
-#: ../lib/network/connection/providers/xdsl.pm:610
-#: ../lib/network/netconnect.pm:33
-#, c-format
-msgid "France"
-msgstr "فرنسا"
-
-#: ../lib/network/connection/providers/xdsl.pm:47
-#: ../lib/network/connection/providers/xdsl.pm:57
-#, c-format
-msgid "Algeria"
-msgstr "الجزائر"
-
-#: ../lib/network/connection/providers/xdsl.pm:67
-#: ../lib/network/connection/providers/xdsl.pm:77
-#, c-format
-msgid "Argentina"
-msgstr "الأرجنتين "
-
-#: ../lib/network/connection/providers/xdsl.pm:87
-#: ../lib/network/connection/providers/xdsl.pm:96
-#: ../lib/network/connection/providers/xdsl.pm:105
-#, c-format
-msgid "Austria"
-msgstr "النمسا"
-
-#: ../lib/network/connection/providers/xdsl.pm:114
-#: ../lib/network/connection/providers/xdsl.pm:124
-#: ../lib/network/connection/providers/xdsl.pm:134
-#, c-format
-msgid "Australia"
-msgstr "أوستراليا"
-
-#: ../lib/network/connection/providers/xdsl.pm:144
-#: ../lib/network/connection/providers/xdsl.pm:153
-#: ../lib/network/connection/providers/xdsl.pm:164
-#: ../lib/network/connection/providers/xdsl.pm:173
-#: ../lib/network/connection/providers/xdsl.pm:182
-#: ../lib/network/netconnect.pm:36
-#, c-format
-msgid "Belgium"
-msgstr "بلجيكا"
-
-#: ../lib/network/connection/providers/xdsl.pm:191
-#: ../lib/network/connection/providers/xdsl.pm:201
-#: ../lib/network/connection/providers/xdsl.pm:210
-#: ../lib/network/connection/providers/xdsl.pm:219
-#, c-format
-msgid "Brazil"
-msgstr "البرازيل"
-
-#: ../lib/network/connection/providers/xdsl.pm:228
-#: ../lib/network/connection/providers/xdsl.pm:237
-#, c-format
-msgid "Bulgaria"
-msgstr "بلغاريا"
-
-#: ../lib/network/connection/providers/xdsl.pm:246
-#: ../lib/network/connection/providers/xdsl.pm:255
-#: ../lib/network/connection/providers/xdsl.pm:264
-#: ../lib/network/connection/providers/xdsl.pm:273
-#: ../lib/network/connection/providers/xdsl.pm:282
-#: ../lib/network/connection/providers/xdsl.pm:291
-#: ../lib/network/connection/providers/xdsl.pm:300
-#: ../lib/network/connection/providers/xdsl.pm:309
-#: ../lib/network/connection/providers/xdsl.pm:318
-#: ../lib/network/connection/providers/xdsl.pm:327
-#: ../lib/network/connection/providers/xdsl.pm:336
-#: ../lib/network/connection/providers/xdsl.pm:345
-#: ../lib/network/connection/providers/xdsl.pm:354
-#: ../lib/network/connection/providers/xdsl.pm:363
-#: ../lib/network/connection/providers/xdsl.pm:372
-#: ../lib/network/connection/providers/xdsl.pm:381
-#: ../lib/network/connection/providers/xdsl.pm:390
-#: ../lib/network/connection/providers/xdsl.pm:399
-#: ../lib/network/connection/providers/xdsl.pm:408
-#: ../lib/network/connection/providers/xdsl.pm:417
-#, c-format
-msgid "China"
-msgstr "الصين"
-
-#: ../lib/network/connection/providers/xdsl.pm:426
-#: ../lib/network/connection/providers/xdsl.pm:436
-#, c-format
-msgid "Czech Republic"
-msgstr "جمهورية التشيك"
-
-#: ../lib/network/connection/providers/xdsl.pm:446
-#: ../lib/network/connection/providers/xdsl.pm:455
-#: ../lib/network/connection/providers/xdsl.pm:464
-#, c-format
-msgid "Denmark"
-msgstr "الدنمارك"
-
-#: ../lib/network/connection/providers/xdsl.pm:473
-#, c-format
-msgid "Egypt"
-msgstr "مصر"
-
-#: ../lib/network/connection/providers/xdsl.pm:483
-#, c-format
-msgid "Finland"
-msgstr "فنلندا"
-
-#: ../lib/network/connection/providers/xdsl.pm:621
-#: ../lib/network/connection/providers/xdsl.pm:630
-#: ../lib/network/connection/providers/xdsl.pm:640
-#, c-format
-msgid "Germany"
-msgstr "ألمانيا"
-
-#: ../lib/network/connection/providers/xdsl.pm:650
-#, c-format
-msgid "Greece"
-msgstr "اليونان"
-
-#: ../lib/network/connection/providers/xdsl.pm:659
-#, c-format
-msgid "Hungary"
-msgstr "المجر"
-
-#: ../lib/network/connection/providers/xdsl.pm:668
-#, c-format
-msgid "Ireland"
-msgstr "أيرلندا"
-
-#: ../lib/network/connection/providers/xdsl.pm:677
-#, c-format
-msgid "Israel"
-msgstr "اسرائيل"
-
-#: ../lib/network/connection/providers/xdsl.pm:687
-#, c-format
-msgid "India"
-msgstr "الهند"
-
-#: ../lib/network/connection/providers/xdsl.pm:696
-#: ../lib/network/connection/providers/xdsl.pm:705
-#, c-format
-msgid "Iceland"
-msgstr "آيسلندا"
-
-#: ../lib/network/connection/providers/xdsl.pm:714
-#: ../lib/network/connection/providers/xdsl.pm:725
-#: ../lib/network/connection/providers/xdsl.pm:735
-#: ../lib/network/connection/providers/xdsl.pm:746
-#: ../lib/network/netconnect.pm:35
-#, c-format
-msgid "Italy"
-msgstr "إيطاليا"
-
-#: ../lib/network/connection/providers/xdsl.pm:758
-#, c-format
-msgid "Sri Lanka"
-msgstr "سريلانكا"
-
-#: ../lib/network/connection/providers/xdsl.pm:770
-#, c-format
-msgid "Lithuania"
-msgstr "ليتوانيا"
-
-#: ../lib/network/connection/providers/xdsl.pm:779
-#: ../lib/network/connection/providers/xdsl.pm:789
-#, c-format
-msgid "Mauritius"
-msgstr "موريشيوس"
-
-#: ../lib/network/connection/providers/xdsl.pm:800
-#, c-format
-msgid "Morocco"
-msgstr "المغرب"
-
-#: ../lib/network/connection/providers/xdsl.pm:810
-#: ../lib/network/connection/providers/xdsl.pm:819
-#: ../lib/network/connection/providers/xdsl.pm:828
-#: ../lib/network/connection/providers/xdsl.pm:837
-#: ../lib/network/netconnect.pm:34
-#, c-format
-msgid "Netherlands"
-msgstr "هولندا"
-
-#: ../lib/network/connection/providers/xdsl.pm:846
-#: ../lib/network/connection/providers/xdsl.pm:852
-#: ../lib/network/connection/providers/xdsl.pm:858
-#: ../lib/network/connection/providers/xdsl.pm:864
-#: ../lib/network/connection/providers/xdsl.pm:870
-#: ../lib/network/connection/providers/xdsl.pm:876
-#: ../lib/network/connection/providers/xdsl.pm:882
-#, c-format
-msgid "Norway"
-msgstr "النرويج"
-
-#: ../lib/network/connection/providers/xdsl.pm:890
-#, c-format
-msgid "Pakistan"
-msgstr "باكستان"
-
-#: ../lib/network/connection/providers/xdsl.pm:901
-#: ../lib/network/connection/providers/xdsl.pm:911
-#, c-format
-msgid "Poland"
-msgstr "بولندا"
-
-#: ../lib/network/connection/providers/xdsl.pm:922
-#, c-format
-msgid "Portugal"
-msgstr "البرتغال"
-
-#: ../lib/network/connection/providers/xdsl.pm:931
-#, c-format
-msgid "Russia"
-msgstr "روسيا"
-
-#: ../lib/network/connection/providers/xdsl.pm:942
-#, c-format
-msgid "Singapore"
-msgstr "سنغافورة"
-
-#: ../lib/network/connection/providers/xdsl.pm:951
-#, c-format
-msgid "Senegal"
-msgstr "السنغال"
-
-#: ../lib/network/connection/providers/xdsl.pm:961
-#, c-format
-msgid "Slovenia"
-msgstr "سلوفينيا"
-
-#: ../lib/network/connection/providers/xdsl.pm:972
-#: ../lib/network/connection/providers/xdsl.pm:984
-#: ../lib/network/connection/providers/xdsl.pm:996
-#: ../lib/network/connection/providers/xdsl.pm:1009
-#: ../lib/network/connection/providers/xdsl.pm:1019
-#: ../lib/network/connection/providers/xdsl.pm:1029
-#: ../lib/network/connection/providers/xdsl.pm:1040
-#: ../lib/network/connection/providers/xdsl.pm:1050
-#: ../lib/network/connection/providers/xdsl.pm:1060
-#: ../lib/network/connection/providers/xdsl.pm:1070
-#: ../lib/network/connection/providers/xdsl.pm:1080
-#: ../lib/network/connection/providers/xdsl.pm:1090
-#: ../lib/network/connection/providers/xdsl.pm:1101
-#: ../lib/network/connection/providers/xdsl.pm:1112
-#: ../lib/network/connection/providers/xdsl.pm:1124
-#: ../lib/network/connection/providers/xdsl.pm:1136
-#, c-format
-msgid "Spain"
-msgstr "أسبانيا"
-
-#: ../lib/network/connection/providers/xdsl.pm:1149
-#, c-format
-msgid "Sweden"
-msgstr "السويد"
-
-#: ../lib/network/connection/providers/xdsl.pm:1158
-#: ../lib/network/connection/providers/xdsl.pm:1167
-#: ../lib/network/connection/providers/xdsl.pm:1177
-#, c-format
-msgid "Switzerland"
-msgstr "السويسرية"
-
-#: ../lib/network/connection/providers/xdsl.pm:1186
-#, c-format
-msgid "Thailand"
-msgstr "تايلاند"
-
-#: ../lib/network/connection/providers/xdsl.pm:1196
-#, c-format
-msgid "Tunisia"
-msgstr "تونس"
-
-#: ../lib/network/connection/providers/xdsl.pm:1207
-#, c-format
-msgid "Turkey"
-msgstr "تركيا"
-
-#: ../lib/network/connection/providers/xdsl.pm:1220
-#, c-format
-msgid "United Arab Emirates"
-msgstr "الإمارات العربية المتحدة"
-
-#: ../lib/network/connection/providers/xdsl.pm:1230
-#: ../lib/network/connection/providers/xdsl.pm:1240
-#: ../lib/network/netconnect.pm:38
-#, c-format
-msgid "United Kingdom"
-msgstr "المملكة المتحدة"
-
-#: ../lib/network/connection/wireless.pm:11
-#, c-format
-msgid "Wireless"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:21
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "استخدام مشغّل ويندوز (مع ndiswrapper("
-
-#: ../lib/network/connection/wireless.pm:38
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:39
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
+msgid "DHCP timeout (in seconds)"
+msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../lib/network/connection/wireless.pm:40
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
+#: ../bin/drakconnect:382 ../lib/network/connection/ethernet.pm:136
+#, fuzzy, c-format
+msgid "Get DNS servers from DHCP"
+msgstr "عنوان IP لخادم DNS"
-#: ../lib/network/connection/wireless.pm:181 ../lib/network/thirdparty.pm:174
+#: ../bin/drakconnect:383 ../lib/network/connection/ethernet.pm:145
#, c-format
-msgid "Firmware files are required for this device."
+msgid "Get YP servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:209
+#: ../bin/drakconnect:384 ../lib/network/connection/ethernet.pm:146
#, c-format
-msgid ""
-"Your wireless card is disabled, please enable the wireless switch (RF kill "
-"switch) first."
+msgid "Get NTPD servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:270
-#, fuzzy, c-format
-msgid "Wireless settings"
-msgstr "اتّصال لاسلكي"
-
-#: ../lib/network/connection/wireless.pm:275 ../tools/drakconnect:406
-#: ../tools/drakroam:119
+#: ../bin/drakconnect:406 ../lib/network/connection/wireless.pm:312
+#: ../lib/network/drakroam.pm:282
#, c-format
msgid "Operating Mode"
msgstr "وضعية التّشغيل"
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Ad-hoc"
-msgstr "مُصطنع"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Managed"
-msgstr "مُدار"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Master"
-msgstr "رئيسي"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Repeater"
-msgstr "مُكرّر"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Secondary"
-msgstr "ثانوي"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Auto"
-msgstr "آلي"
-
-#: ../lib/network/connection/wireless.pm:279 ../tools/drakconnect:407
+#: ../bin/drakconnect:407 ../lib/network/connection/wireless.pm:316
#, c-format
msgid "Network name (ESSID)"
msgstr "إسم الشّبكة (ESSID)"
-#: ../lib/network/connection/wireless.pm:281
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:283 ../tools/drakconnect:421
-#, c-format
-msgid "Encryption key"
-msgstr "مفتاح التشفير"
-
-#: ../lib/network/connection/wireless.pm:285 ../tools/drakconnect:408
+#: ../bin/drakconnect:408 ../lib/network/connection/wireless.pm:322
#, c-format
msgid "Network ID"
msgstr "رقم مُعرّف الشّبكة"
-#: ../lib/network/connection/wireless.pm:286 ../tools/drakconnect:409
+#: ../bin/drakconnect:409 ../lib/network/connection/wireless.pm:323
#, c-format
msgid "Operating frequency"
msgstr "تردّد التّشغيل"
-#: ../lib/network/connection/wireless.pm:287 ../tools/drakconnect:410
+#: ../bin/drakconnect:410 ../lib/network/connection/wireless.pm:324
#, c-format
msgid "Sensitivity threshold"
msgstr "عتبة الحساسية"
-#: ../lib/network/connection/wireless.pm:288 ../tools/drakconnect:411
+#: ../bin/drakconnect:411 ../lib/network/connection/wireless.pm:325
#, c-format
msgid "Bitrate (in b/s)"
msgstr "معدّل البث (بِتْ/ث)"
-#: ../lib/network/connection/wireless.pm:289 ../tools/drakconnect:422
+#: ../bin/drakconnect:421 ../lib/network/connection/wireless.pm:320
#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
+msgid "Encryption key"
+msgstr "مفتاح التشفير"
-#: ../lib/network/connection/wireless.pm:290
+#: ../bin/drakconnect:422 ../lib/network/connection/wireless.pm:326
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"يضيف RTS/CTS المُصافحة قبل كل بثّ رزم للتّأكّد من أنّ\n"
-"القناة آمنة للإرسال. يضيف هذا ضغطاً، ولكن يزيد الأداء في حالة وجود\n"
-"نقاط اتّصال مخفيّة أو عدد كبير من نقاط الاتصال النّشطة. يحدّد هذا المُعطى\n"
-"الرزمة الأصغر التّي ترسل لها نقطة الاتصال RTS، والتي هي قيمة مساوية لأكبر\n"
-"حجم رزمة تُعطّل المخطّط. يمكنك أيضاً تحديد هذا المُعطى بتلقائي،\n"
-"ثابت أو معطّل."
+msgid "RTS/CTS"
+msgstr "RTS/CTS"
-#: ../lib/network/connection/wireless.pm:297 ../tools/drakconnect:423
+#: ../bin/drakconnect:423 ../lib/network/connection/wireless.pm:334
#, c-format
msgid "Fragmentation"
msgstr "مستوى التّجزّء"
-#: ../lib/network/connection/wireless.pm:298 ../tools/drakconnect:424
+#: ../bin/drakconnect:424 ../lib/network/connection/wireless.pm:335
#, c-format
msgid "iwconfig command extra arguments"
msgstr "المُعطيات الإضافية لأمر iwconfig"
-#: ../lib/network/connection/wireless.pm:299
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"هنا، يمكن تهيئة مُعاملات إضافيّة للتشبيك اللاسلكي مثل:\n"
-"ap، channel، commit، enc، power، retry، sens، txpower )nick محدّد مسبّقا كإسم "
-"المضيف).\n"
-"\n"
-"راجع صفحة الدّليل iwconfig(8) للمزيد من المعلومات."
-
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: ../lib/network/connection/wireless.pm:306 ../tools/drakconnect:425
+#: ../bin/drakconnect:425 ../lib/network/connection/wireless.pm:343
#, c-format
msgid "iwspy command extra arguments"
msgstr "المُعطيات الإضافيّة لأمر iwspy"
-#: ../lib/network/connection/wireless.pm:307
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"يستخدم iwspy لتحديد قائمة من العناوين لواجهة الشبكة اللاسلكيّة\n"
-"ولقراءة معرومات جودة الاتصال لكل من هذه.\n"
-"\n"
-"هذه المعلومات هي نفسها كالتي متوفّرة في /proc/net/wireless :\n"
-"جودة الاتصال، قوّة الإشارة ومستوى الضّوضاء.\n"
-"\n"
-"رجاع صفحة دليل iwpspy)8( للمزيد من المعلومات."
-
-#: ../lib/network/connection/wireless.pm:315 ../tools/drakconnect:426
+#: ../bin/drakconnect:426 ../lib/network/connection/wireless.pm:352
#, c-format
msgid "iwpriv command extra arguments"
msgstr "المُعطيات الإضافيّة لأمر iwpriv"
-#: ../lib/network/connection/wireless.pm:317
+#: ../bin/drakconnect:434
#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-"يمكنك iwpriv من إعداد المُعطيات الاختياريّة (الخاصّة) لواجهة الشّبكة\n"
-"اللّاسلكيّة.\n"
-"\n"
-"يتعامل iwpriv مع المُعطيات وتحديد الخواصّ لكل مشغّل (بعكس\n"
-"iwconfig والذي يتعامل مع الأشياء العامّة).\n"
-"\n"
-"نظريّاً، يجب أن يُبيّن مواثقة كلّ مشغّل جهاز كيفيّة استخدام\n"
-"الأوامر الخاصّة بكل واجهة وتأثيرها.\n"
-"\n"
-"راجع صفحة دليل iwpriv(8) للمزيد من المعلومات."
-
-#: ../lib/network/connection/wireless.pm:335
-#, c-format
-msgid "An encryption key is required."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:341
-#, 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 ""
-"يجب أن يكون للتردّد اللاحقة k، أو M أو G (مثلاً، \"2.46G\" للتردّد 2.46 GHz(، "
-"أو إضافة أصفار كافية."
-
-#: ../lib/network/connection/wireless.pm:347
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"يجب أن يكون للمعدّل اللاحقة k، أو M أو G (مثلاً، \"11M\" للمعدّل 11M)، أو إضافة "
-"أصفار كافية."
-
-#: ../lib/network/connection/wireless.pm:359
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:460
-#, c-format
-msgid "Associated to wireless network \"%s\" on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:461
-#, c-format
-msgid "Lost association to wireless network on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:8
-#, fuzzy, c-format
-msgid "DSL"
-msgstr "SSL"
-
-#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "مودم Alcatel speedtouch USB"
-
-#: ../lib/network/connection/xdsl.pm:104
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"مودم ECI Hi-Focus لا يمكن دعمه بسبب مشكلة توزيع المُشغّل المُجمّع.\n"
-"\n"
-"يمكنك العثور على المُشغّلات على الموقع http://eciadsl.flashtux.org/"
-
-#: ../lib/network/connection/xdsl.pm:176
-#, c-format
-msgid "DSL over CAPI"
-msgstr "DSL عبر CAPI"
-
-#: ../lib/network/connection/xdsl.pm:179
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "بروتوكول تهيئة المضيف الديناميكيّة (DHCP)"
-
-#: ../lib/network/connection/xdsl.pm:180
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "تهيئة TCP/IP يدويّة"
-
-#: ../lib/network/connection/xdsl.pm:181
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "بروتوكول النفق من نقطة إلى نقطة (PPTP)"
-
-#: ../lib/network/connection/xdsl.pm:182
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "PPP عبر Ethernet (PPPoE)"
-
-#: ../lib/network/connection/xdsl.pm:183
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "PPP عبر ATM (PPPoA)"
-
-#: ../lib/network/connection/xdsl.pm:223
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "رقم تعريف المسار الوهمي (VPI):"
-
-#: ../lib/network/connection/xdsl.pm:224
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "رقم تعريف الدّارة الوهميّة (VCI):"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:27
-#: ../lib/network/ndiswrapper.pm:42 ../lib/network/ndiswrapper.pm:86
-#: ../lib/network/ndiswrapper.pm:102 ../lib/network/netconnect.pm:131
-#: ../lib/network/netconnect.pm:179 ../lib/network/netconnect.pm:268
-#: ../lib/network/netconnect.pm:813 ../lib/network/thirdparty.pm:114
-#: ../lib/network/thirdparty.pm:131 ../lib/network/thirdparty.pm:214
-#: ../lib/network/thirdparty.pm:216 ../lib/network/thirdparty.pm:237
-#: ../tools/drakconnect:676 ../tools/drakconnect:680 ../tools/drakconnect:689
-#: ../tools/drakconnect:705 ../tools/drakgw:184 ../tools/drakhosts:100
-#: ../tools/drakhosts:245 ../tools/drakhosts:252 ../tools/drakhosts:259
-#: ../tools/drakinvictus:72 ../tools/draknetprofile:113 ../tools/draknfs:85
-#: ../tools/draknfs:106 ../tools/draknfs:273 ../tools/draknfs:400
-#: ../tools/draknfs:402 ../tools/draknfs:405 ../tools/draknfs:497
-#: ../tools/draknfs:504 ../tools/draknfs:567 ../tools/draknfs:574
-#: ../tools/draknfs:581 ../tools/drakroam:79 ../tools/drakroam:92
-#: ../tools/draksambashare:372 ../tools/draksambashare:379
-#: ../tools/draksambashare:382 ../tools/draksambashare:428
-#: ../tools/draksambashare:452 ../tools/draksambashare:518
-#: ../tools/draksambashare:533 ../tools/draksambashare:611
-#: ../tools/draksambashare:678 ../tools/draksambashare:778
-#: ../tools/draksambashare:785 ../tools/draksambashare:916
-#: ../tools/draksambashare:1109 ../tools/draksambashare:1118
-#: ../tools/draksambashare:1140 ../tools/draksambashare:1149
-#: ../tools/draksambashare:1168 ../tools/draksambashare:1177
-#: ../tools/draksambashare:1189
-#, c-format
-msgid "Error"
-msgstr "خطأ"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/netconnect.pm:131 ../lib/network/thirdparty.pm:114
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "تعذر تثبيت حزم %s!"
-
-#: ../lib/network/drakfirewall.pm:12
-#, c-format
-msgid "Web Server"
-msgstr "خادم الوب"
-
-#: ../lib/network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "خادم اسم النطاق"
-
-#: ../lib/network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "خادم SSH"
-
-#: ../lib/network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "خادم FTP"
-
-#: ../lib/network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "خادم بريد"
-
-#: ../lib/network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "خادم POP و IMAP"
-
-#: ../lib/network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "خادم Telnet"
-
-#: ../lib/network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "مشاركة ملفّات ويندوز (SMB)"
-
-#: ../lib/network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "خادم CUPS"
-
-#: ../lib/network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "طلب الصّدى (ping)"
-
-#: ../lib/network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "BitTorrent"
-
-#: ../lib/network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
-#, fuzzy, c-format
-msgid "Firewall configuration"
-msgstr "تهيئة يدوية"
-
-#: ../lib/network/drakfirewall.pm:166
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"أداة تهيئة drakfirewall\n"
-"\n"
-"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام ماندريبا لينكس هذا.\n"
-"إذا كنت تريد جدارا ناريا متخصّصاً وفعّالاً، ألق نظرة على\n"
-"توزيعة Mandriva Security Firewall المُتخصّصة."
-
-#: ../lib/network/drakfirewall.pm:172
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"أداة تهيئة DrakFirewall\n"
-"\n"
-"تأكد من أنك قمت بتهيئة اتصالك بالشبكة/الإنترنت باستخدام\n"
-"drakconnect قبل المتابعة."
-
-#: ../lib/network/drakfirewall.pm:189
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "أي خدمة تريد السماح للإنترنت أن تتصل بها؟"
-
-#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
-#, c-format
-msgid "Firewall"
-msgstr "جدار ناري"
-
-#: ../lib/network/drakfirewall.pm:192
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"يمكنك إدخال منافذ متنوعة. \n"
-"أمثلة صالحة هي:139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"ألق نظرة على /etc/services لمزيد من المعلومات."
-
-#: ../lib/network/drakfirewall.pm:198
-#, 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.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"تم إعطاء منفذ غير صالح: %s.\n"
-"النسق الصحيح هو \"port/tcp\" أو \"port/udp\"، \n"
-"حيث يكون المنفذ بين 1 و65535.\n"
-"\n"
-"يمكنك أيضاَ إعطاء مدى من المنافذ (مثلاً: 2400:24350/udp)"
-
-#: ../lib/network/drakfirewall.pm:208
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "كل شئ (لا جدار ناري)"
-
-#: ../lib/network/drakfirewall.pm:210
-#, c-format
-msgid "Other ports"
-msgstr "منافذ أخرى"
-
-#: ../lib/network/drakfirewall.pm:211
-#, c-format
-msgid "Log firewall messages in system logs"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:255 ../lib/network/drakfirewall.pm:258
-#: ../tools/drakids:40 ../tools/drakids:65 ../tools/drakids:181
-#: ../tools/drakids:190 ../tools/drakids:215 ../tools/drakids:224
-#: ../tools/drakids:234 ../tools/drakids:326 ../tools/net_applet:77
-#: ../tools/net_applet:238 ../tools/net_applet:514 ../tools/net_applet:541
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "جدار ناري"
-
-#: ../lib/network/drakfirewall.pm:256
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activities should be watched."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:261
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:30
-#, fuzzy, c-format
-msgid "VPN configuration"
-msgstr "تهيئة CUPS"
-
-#: ../lib/network/drakvpn.pm:34
-#, fuzzy, c-format
-msgid "Choose the VPN type"
-msgstr "اختيار الحجم الجديد"
-
-#: ../lib/network/drakvpn.pm:49
-#, c-format
-msgid "Initializing tools and detecting devices for %s..."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:52
-#, fuzzy, c-format
-msgid "Unable to initialize %s connection type!"
-msgstr "نوع وصلة مجهول"
-
-#: ../lib/network/drakvpn.pm:60
-#, c-format
-msgid "Please select an existing VPN connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:64
-#, fuzzy, c-format
-msgid "Configure a new connection..."
-msgstr "اختبار الوصلة..."
-
-#: ../lib/network/drakvpn.pm:66
-#, fuzzy, c-format
-msgid "New name"
-msgstr "الاسم الحقيقي"
-
-#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
-#: ../lib/network/ndiswrapper.pm:92 ../lib/network/netconnect.pm:471
-#: ../tools/drakconnect:978 ../tools/draknetprofile:129
-#: ../tools/draknetprofile:131 ../tools/drakproxy:36
-#, c-format
-msgid "Warning"
-msgstr "تحذير"
-
-#: ../lib/network/drakvpn.pm:70
-#, c-format
-msgid "You must select an existing connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:81
-#, fuzzy, c-format
-msgid "Please enter the required key(s)"
-msgstr "الرجاء إدخال عنوان خادم WebDav"
-
-#: ../lib/network/drakvpn.pm:86
-#, fuzzy, c-format
-msgid "Please enter the settings of your VPN connection"
-msgstr "تعذر الإتصال بالمرآة %s"
-
-#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
-#, c-format
-msgid "Do you want to start the connection now?"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:100
-#, fuzzy, c-format
-msgid "Connection failed."
-msgstr "اسم الإتصال"
-
-#: ../lib/network/drakvpn.pm:108
-#, c-format
-msgid ""
-"The VPN connection is now configured.\n"
-"\n"
-"This VPN connection can be automatically started together with a network "
-"connection.\n"
-"It can be done by reconfiguring the network connection and selecting this "
-"VPN connection.\n"
-msgstr ""
-
-#: ../lib/network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "لا مشاركة"
-
-#: ../lib/network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "الخدمة المُهاجمة: %s"
-
-#: ../lib/network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "كلمة المرور (مجدداً)"
-
-#: ../lib/network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: ../lib/network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "حدث هجوم مسح للمنافذ من قبل %s."
-
-#: ../lib/network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "تم الهجوم على الخدمة %s من قبل %s."
-
-#: ../lib/network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "حدث هجوم لاختراق كلمة المرور من قبل %s."
-
-#: ../lib/network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "حدث هجوم مسح للمنافذ من قبل %s."
-
-#: ../lib/network/ifw.pm:146
-#, c-format
-msgid ""
-"The \"%s\" application is trying to make a service (%s) available to the "
-"network."
-msgstr ""
-
-#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
-#: ../lib/network/ifw.pm:150
-#, fuzzy, c-format
-msgid "port %d"
-msgstr "تقرير"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#, c-format
-msgid "Manual"
-msgstr "يدوي"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
-#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
-#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
-#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#: ../lib/network/netconnect.pm:638
-#, c-format
-msgid "Automatic"
-msgstr "آلي"
-
-#: ../lib/network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "الرجاء اختيار مشغّل ويندوز (ملف .inf)"
-
-#: ../lib/network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:86
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:92
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:102
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:115
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "اختيار مشغّل ndiswrapper"
-
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Install a new driver"
-msgstr "تثبيت مشغّل جديد"
-
-#: ../lib/network/ndiswrapper.pm:129
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:37
-#, c-format
-msgid "United States"
-msgstr "الولايات المتحدة"
-
-#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
-#: ../lib/network/netconnect.pm:507
-#, c-format
-msgid "Manual choice"
-msgstr "اختيار يدوي"
-
-#: ../lib/network/netconnect.pm:60
-#, c-format
-msgid "Internal ISDN card"
-msgstr "بطاقة ISDN داخلية"
-
-#: ../lib/network/netconnect.pm:65
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "بروتوكول لبقية العالم"
-
-#: ../lib/network/netconnect.pm:67 ../tools/drakconnect:564
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "البروتوكول الأوروبي (EDSS1)"
-
-#: ../lib/network/netconnect.pm:68 ../tools/drakconnect:565
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"بروتوكول لبقية العالم\n"
-"لا D-Channel (خطوط مؤجرة)"
-
-#: ../lib/network/netconnect.pm:118 ../tools/drakconnect:61
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "تهيئة الشّبكة والإنترنت"
-
-#: ../lib/network/netconnect.pm:123
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "اختر الوصلة التي تريد تهيئتها"
-
-#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
-#: ../lib/network/netconnect.pm:788
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "اختيار واجهة الشبكة لتهيئتها:"
-
-#: ../lib/network/netconnect.pm:164
-#, c-format
-msgid "No device can be found for this connection type."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:173
-#, fuzzy, c-format
-msgid "Hardware Configuration"
-msgstr "تهيئة الشبكة"
-
-#: ../lib/network/netconnect.pm:177 ../tools/drakroam:90
-#, c-format
-msgid "Configuring device..."
-msgstr "تهيئة الجهاز..."
-
-#: ../lib/network/netconnect.pm:194
-#, c-format
-msgid "Please select your provider:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:209 ../tools/drakroam:170
-#, fuzzy, c-format
-msgid "Scanning for networks..."
-msgstr "جاري مسح الشبكة..."
-
-#: ../lib/network/netconnect.pm:212
-#, c-format
-msgid "Please select your network:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:241
-#, c-format
-msgid ""
-"Please select your connection protocol.\n"
-"If you do not know it, keep the preselected protocol."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
-#, c-format
-msgid "Connection control"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Connection Configuration"
-msgstr "تهيئة الاتصال"
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "فضلاً املأ أو أشّر على الحقل أدناه"
-
-#: ../lib/network/netconnect.pm:318
-#, c-format
-msgid "Your personal phone number"
-msgstr "رقم هاتفك الشخصي"
-
-#: ../lib/network/netconnect.pm:319
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "اسم المزوّد (مثلاً provider.net("
-
-#: ../lib/network/netconnect.pm:320 ../tools/drakconnect:494
-#, c-format
-msgid "Provider phone number"
-msgstr "رقم هاتف المزوّد"
-
-#: ../lib/network/netconnect.pm:321
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "مُزوّد DNS 1 (اختياري)"
+msgid "Start at boot"
+msgstr "البدء عند الإقلاع"
-#: ../lib/network/netconnect.pm:322
+#: ../bin/drakconnect:440 ../lib/network/connection/ethernet.pm:220
#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "مُزوّد Provider DNS 2 (اختياري)"
+msgid "Network Hotplugging"
+msgstr "القبْس السريع للشبكة"
-#: ../lib/network/netconnect.pm:323 ../tools/drakconnect:446
+#: ../bin/drakconnect:446 ../lib/network/netconnect.pm:323
#, c-format
msgid "Dialing mode"
msgstr "وضعية الإتصال"
-#: ../lib/network/netconnect.pm:324 ../tools/drakconnect:451
-#: ../tools/drakconnect:518
+#: ../bin/drakconnect:451 ../bin/drakconnect:518
+#: ../lib/network/netconnect.pm:324
#, c-format
msgid "Connection speed"
msgstr "سرعة الإتصال"
-#: ../lib/network/netconnect.pm:325 ../tools/drakconnect:456
+#: ../bin/drakconnect:456 ../lib/network/netconnect.pm:325
#, c-format
msgid "Connection timeout (in sec)"
msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../lib/network/netconnect.pm:328 ../tools/drakconnect:555
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ للبطاقة"
-
-#: ../lib/network/netconnect.pm:329 ../tools/drakconnect:556
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "ذاكرة البطاقة (DMA)"
-
-#: ../lib/network/netconnect.pm:330 ../tools/drakconnect:557
-#, c-format
-msgid "Card IO"
-msgstr "IO للبطاقة"
-
-#: ../lib/network/netconnect.pm:331 ../tools/drakconnect:558
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 للبطاقة"
-
-#: ../lib/network/netconnect.pm:332
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 للبطاقة"
-
-#: ../lib/network/netconnect.pm:350 ../lib/network/netconnect.pm:385
-#: ../tools/drakconnect:719 ../tools/drakgw:123
-#, c-format
-msgid "Net Device"
-msgstr "جهاز الشبكة"
-
-#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#: ../bin/drakconnect:462 ../lib/network/connection.pm:165
#, c-format
-msgid "External ISDN modem"
-msgstr "مودم ISDN خارجي"
-
-#: ../lib/network/netconnect.pm:384
-#, c-format
-msgid "Select a device!"
-msgstr "اختيار جهاز!"
-
-#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
-#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "تهيئة ISDN"
-
-#: ../lib/network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "ما هو نوع البطاقة لديك؟"
-
-#: ../lib/network/netconnect.pm:404
-#, 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، فإن القيم التي ستعرض على الشاشة التالية يجب أن تكون "
-"صحيحة.\n"
-"\n"
-"إذا كانت لديك بطاقة PCMCIA، يجب عليك أن تعرف قيم \"irq\" و \"io\" الخاصة "
-"ببطاقتك.\n"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "استمرار"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "إجهاض"
-
-#: ../lib/network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "أي من الآتي هي بطاقة ISDN الخاصة بك؟"
-
-#: ../lib/network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"يتوفّر مشغّل CAPI لهذا المودم. قد يكون لدافعة CAPI هذه قدراتٍ أكثر من مشغل حرّ "
-"(كالقدرة على إرسال الفاكسات). أي المشغّلين تودّ استعماله؟"
-
-#: ../lib/network/netconnect.pm:434 ../tools/drakconnect:113
-#, c-format
-msgid "Driver"
-msgstr "المشغّل"
-
-#: ../lib/network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "ما هو البروتوكول الذي تريد استخدامه؟"
-
-#: ../lib/network/netconnect.pm:448 ../tools/drakconnect:113
-#: ../tools/drakconnect:305 ../tools/drakconnect:563 ../tools/drakids:252
-#: ../tools/drakvpn-old:839
-#, c-format
-msgid "Protocol"
-msgstr "البروتوكول"
-
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"اختر موفر الخدمة الخاص بك.\n"
-"ان لم يكن موجوداً في القائمة، اختر غير موجود."
-
-#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
-#, c-format
-msgid "Provider:"
-msgstr "المُزوّد:"
-
-#: ../lib/network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"المودم لديك غير مدعوم من النظام.\n"
-"الق نظرة على http://www.linmodems.org"
-
-#: ../lib/network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "اختر المودم لتهيئته:"
-
-#: ../lib/network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr "المودم"
-
-#: ../lib/network/netconnect.pm:527
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "الرجاء اختيار المنفذ التسلسلي المرتبط به المودم لديك."
-
-#: ../lib/network/netconnect.pm:556
-#, c-format
-msgid "Select your provider:"
-msgstr "اختر مُزوّدك:"
-
-#: ../lib/network/netconnect.pm:580
-#, c-format
-msgid "Dialup: account options"
-msgstr "الاتصال الهاتفي: خيارات الحساب"
-
-#: ../lib/network/netconnect.pm:583
-#, c-format
-msgid "Connection name"
-msgstr "اسم الإتصال"
-
-#: ../lib/network/netconnect.pm:584
-#, c-format
-msgid "Phone number"
-msgstr "رقم الهاتف"
-
-#: ../lib/network/netconnect.pm:585
-#, c-format
-msgid "Login ID"
-msgstr "معرّف الدخول"
-
-#: ../lib/network/netconnect.pm:586 ../lib/network/vpn/vpnc.pm:56
-#: ../tools/drakinvictus:110
-#, c-format
-msgid "Password"
-msgstr "كلمة المرور"
-
-#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "الاتصال الهاتفي: مُعطيات IP"
-
-#: ../lib/network/netconnect.pm:603
-#, c-format
-msgid "IP parameters"
-msgstr "مُعطيات IP"
-
-#: ../lib/network/netconnect.pm:605
-#, c-format
-msgid "Subnet mask"
-msgstr "قناع الشّبكة الفرعيّة"
-
-#: ../lib/network/netconnect.pm:617
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "الاتصال الهاتفي: مُعطيات DNS"
-
-#: ../lib/network/netconnect.pm:620
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: ../lib/network/netconnect.pm:621
-#, c-format
-msgid "Domain name"
-msgstr "اسم النطاق"
-
-#: ../lib/network/netconnect.pm:622 ../tools/drakconnect:996
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "خادم DNS الأول (اختياري)"
-
-#: ../lib/network/netconnect.pm:623 ../tools/drakconnect:997
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "خادم DNS الثاني (اختياري)"
-
-#: ../lib/network/netconnect.pm:624
-#, c-format
-msgid "Set hostname from IP"
-msgstr "تحديد اسم المضيف من عنوان IP"
-
-#: ../lib/network/netconnect.pm:637
-#, c-format
-msgid "Gateway IP address"
-msgstr "عنوان IP للبوّابة"
-
-#: ../lib/network/netconnect.pm:670
-#, c-format
-msgid "Automatically at boot"
-msgstr "آليا عند الإقلاع"
-
-#: ../lib/network/netconnect.pm:672
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "باستعمال بريمج الشّبكة (Net Applet( في درج النّظام"
-
-#: ../lib/network/netconnect.pm:674
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "يدويا (ستمكّن الواجهة عند الإقلاع رغم هذا)"
-
-#: ../lib/network/netconnect.pm:683
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "كيف تريد طلب هذا الاتصال؟"
-
-#: ../lib/network/netconnect.pm:696
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "هل تريد أن تحاول أن تتصل بالإنترنت الآن؟"
-
-#: ../lib/network/netconnect.pm:704 ../tools/drakconnect:1027
-#, c-format
-msgid "Testing your connection..."
-msgstr "اختبار الوصلة..."
-
-#: ../lib/network/netconnect.pm:723
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "النظام الآن متصل بالإنترنت"
-
-#: ../lib/network/netconnect.pm:724
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "لأسباب أمنية، سيتم قطع الإتصال الآن."
-
-#: ../lib/network/netconnect.pm:725
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"لا يبدو أن النظام متصل بالإنترنت.\n"
-"حاول إعادة تهيئة الوصلة."
-
-#: ../lib/network/netconnect.pm:740
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"تهانينا، انتهت تهيئة الشبكة و الإنترنت.\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:743
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"بعد عمل ذلك، ننصح بإعادة تشغيل بيئة X لديك لتفادي أي مشاكل تتعلق بإسم المضيف."
-
-#: ../lib/network/netconnect.pm:744
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"ظهرت مشاكل أثناء التهيئة.\n"
-"اختبر الوصلة باستخدام net_monitor أو mcc. إذا لم تعمل الوصلة، فقد تريد إعادة "
-"التهيئة."
-
-#: ../lib/network/netconnect.pm:756
-#, c-format
-msgid "Sagem USB modem"
-msgstr "مودم Sagem USB"
-
-#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
-#, c-format
-msgid "Bewan modem"
-msgstr "مودم Bewan"
-
-#: ../lib/network/netconnect.pm:759
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "مودم ECI Hi-Focus"
-
-#: ../lib/network/netconnect.pm:760
-#, c-format
-msgid "LAN connection"
-msgstr "وصلة LAN"
-
-#: ../lib/network/netconnect.pm:761 ../tools/drakroam:29
-#, c-format
-msgid "Wireless connection"
-msgstr "اتّصال لاسلكي"
-
-#: ../lib/network/netconnect.pm:762
-#, c-format
-msgid "ADSL connection"
-msgstr "وصلة ADSL"
-
-#: ../lib/network/netconnect.pm:763
-#, c-format
-msgid "Cable connection"
-msgstr "وصلة كيبل"
-
-#: ../lib/network/netconnect.pm:764
-#, c-format
-msgid "ISDN connection"
-msgstr "وصلة ISDN"
-
-#: ../lib/network/netconnect.pm:765
-#, c-format
-msgid "Modem connection"
-msgstr "وصلة المودم"
-
-#: ../lib/network/netconnect.pm:766
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:768
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(اكتشاف على المنفذ %s)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected %s)"
-msgstr "(اكتشف %s)"
-
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected)"
-msgstr "(تم اكتشافه)"
-
-#: ../lib/network/netconnect.pm:771
-#, c-format
-msgid "Network Configuration"
-msgstr "تهيئة الشبكة"
-
-#: ../lib/network/netconnect.pm:772
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "ترجمة اسم مضيف Zeroconf"
-
-#: ../lib/network/netconnect.pm:773
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"إن أردت، أدخل إسم مضيف Zeroconf.\n"
-"هذا هو الإسم الّذي سيستعمله حاسبك للتّشهير\n"
-"بأيّة من خدماته المشتركة و الّتي لا تديرها الشّبكة.\n"
-"غير ضروري على معظم الشّبكات."
-
-#: ../lib/network/netconnect.pm:777
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "اسم مضيف Zeroconf"
-
-#: ../lib/network/netconnect.pm:778
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "يجب أن يحتوي اسم مضيف Zeroconf على . (نقطة("
-
-#: ../lib/network/netconnect.pm:779
-#, 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"
-"اضغط موافق لحفظ التهيئة الخاصة بك، أو اضغط إلغاء لإعادة تهيئة وصلات الإنترنت "
-"و الشبكة.\n"
-
-#: ../lib/network/netconnect.pm:782
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "يجب إعادة تشغيل الشبكة. هل تريد إعادة تشغيلها؟"
-
-#: ../lib/network/netconnect.pm:783
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"ظهرت مشكلة أثناء إعادة تشغيل الشبكة: \n"
-"\n"
-"%s"
-
-#: ../lib/network/netconnect.pm:784
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"سوف نقوم الآن بتهيئة الاتّصال %s\n"
-"\n"
-"\n"
-"اضغط \"%s\" لتستمرّ."
-
-#: ../lib/network/netconnect.pm:785
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "تم الانتهاء من التهيئة، هل تريد تطبيق الإعدادات ؟"
-
-#: ../lib/network/netconnect.pm:786
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"لقد قمت بتهيئة طرق متعددة للإتصال بالإنترنت.\n"
-"اختر الطريقة التي تريد استخدامها.\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:787
-#, c-format
-msgid "Internet connection"
-msgstr "وصلة انترنت"
-
-#: ../lib/network/netconnect.pm:789
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "جاري تهيئة جهاز الشبكة %s (مشغّل %s)"
-
-#: ../lib/network/netconnect.pm:790
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use."
-msgstr ""
-"البروتوكولات التّالية يمكن استخدامها لتهيئة اتصال LAN. الرجاء اختيار "
-"البروتوكول الذي تريد استخدامه."
-
-#: ../lib/network/netconnect.pm:791
-#, 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 ""
-"الرجاء إدخال اسم المضيف.\n"
-"يجب أن يكون اسم المضيف صالحاً و كاملاً،\n"
-"مثل ``mybox.mylab.myco.com''.\n"
-"يمكنك أيضاً إدخال عنوان IP الخاص بالبوابة ان وُجدت."
-
-#: ../lib/network/netconnect.pm:796
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr "أخيراً وليس آخراً يمكنك أيضاً أن تدخل عناوين IP لخادمات DNS."
-
-#: ../lib/network/netconnect.pm:797
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "عنوان خادم DNS يجب أن يكون على النسق 1.2.3.4"
-
-#: ../lib/network/netconnect.pm:798 ../tools/drakconnect:689
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
-
-#: ../lib/network/netconnect.pm:799
-#, c-format
-msgid "Gateway device"
-msgstr "جهاز البوابة"
-
-#: ../lib/network/netconnect.pm:813
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"حدث خطأ غير متوقّع:\n"
-"%s"
-
-#: ../lib/network/network.pm:429
-#, c-format
-msgid "Proxies configuration"
-msgstr "تهيئة البروكسي"
-
-#: ../lib/network/network.pm:430
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: ../lib/network/network.pm:431
-#, c-format
-msgid "HTTP proxy"
-msgstr "بروكسي HTTP"
-
-#: ../lib/network/network.pm:432
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: ../lib/network/network.pm:433
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: ../lib/network/network.pm:434
-#, c-format
-msgid "FTP proxy"
-msgstr "بروكسي FTP"
-
-#: ../lib/network/network.pm:435
-#, fuzzy, c-format
-msgid "No proxy for (comma separated list):"
-msgstr "%d حرفيات مفصولة بالفاصلة"
-
-#: ../lib/network/network.pm:440
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "البروكسي يجب أن يكون http://..."
-
-#: ../lib/network/network.pm:441
-#, fuzzy, c-format
-msgid "Proxy should be http://... or https://..."
-msgstr "البروكسي يجب أن يكون http://..."
-
-#: ../lib/network/network.pm:442
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
-
-#: ../lib/network/shorewall.pm:61
-#, c-format
-msgid ""
-"Please select the interfaces that will be protected by the firewall.\n"
-"\n"
-"All interfaces directly connected to Internet should be selected,\n"
-"while interfaces connected to a local network may be unselected.\n"
-"\n"
-"Which interfaces should be protected?\n"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:136
-#, c-format
-msgid "Keep custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:137
-#, c-format
-msgid "Drop custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:142
-#, c-format
-msgid ""
-"Your firewall configuration has been manually edited and contains\n"
-"rules that may conflict with the configuration that has just been set up.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:134
-#, c-format
-msgid "Some components (%s) are required but aren't available for %s hardware."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:135
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:137
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:138
-#, c-format
-msgid "The following component is missing: %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:140
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:177 ../lib/network/thirdparty.pm:182
-#, c-format
-msgid "Use a floppy"
-msgstr "استخدام قرص مرن"
-
-#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:185
-#, c-format
-msgid "Use my Windows partition"
-msgstr "جاري تغيير حجم تجزيء ويندوز"
-
-#: ../lib/network/thirdparty.pm:179
-#, c-format
-msgid "Select file"
-msgstr "اختيار ملف"
-
-#: ../lib/network/thirdparty.pm:190
-#, fuzzy, c-format
-msgid "Please select the firmware file (for example: %s)"
-msgstr "الرجاء اختيار مشغّل ويندوز (ملف .inf)"
-
-#: ../lib/network/thirdparty.pm:214
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "حذف الخطوط من النظام"
-
-#: ../lib/network/thirdparty.pm:216
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:226
-#, c-format
-msgid "Insert floppy"
-msgstr "أدخل قرص مرن"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"أدخل قرص مرن منسّق على نظام ملفات FAT في السواقة %s مع %s في الدّليل الجذري "
-"واضغط %s"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid "Next"
-msgstr "التالي"
-
-#: ../lib/network/thirdparty.pm:237
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "خطأ في الوصول إلى القرص المرن، لم يمكن تجهيز الجهاز %s"
-
-#: ../lib/network/thirdparty.pm:319
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:330
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة الأجهزة..."
-
-#: ../lib/network/vpn/openvpn.pm:107
-#, c-format
-msgid "X509 Public Key Infrastructure"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:108
-#, c-format
-msgid "Static Key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:115
-#, c-format
-msgid "Type"
-msgstr "النوع"
-
-#. -PO: please don't translate the CA acronym
-#: ../lib/network/vpn/openvpn.pm:142
-#, c-format
-msgid "Certificate Authority (CA)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:148
-#, c-format
-msgid "Certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:154
-#, fuzzy, c-format
-msgid "Key"
-msgstr "كينيا"
-
-#: ../lib/network/vpn/openvpn.pm:160
-#, fuzzy, c-format
-msgid "TLS control channel key"
-msgstr "مفتاح Control الأيسر"
-
-#: ../lib/network/vpn/openvpn.pm:167
-#, c-format
-msgid "Key direction"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:175
-#, fuzzy, c-format
-msgid "Authenticate using username and password"
-msgstr "تعذر الدخول باستخدام اسم المستخدم %s (كلمة مرور سيئة؟)"
-
-#: ../lib/network/vpn/openvpn.pm:181
-#, c-format
-msgid "Check server certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:187
-#, fuzzy, c-format
-msgid "Cipher algorithm"
-msgstr "خوارزمية التّشفير"
-
-#: ../lib/network/vpn/openvpn.pm:191
-#, c-format
-msgid "Default"
-msgstr "افتراضي"
-
-#: ../lib/network/vpn/openvpn.pm:195
-#, c-format
-msgid "Size of cipher key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:206
-#, fuzzy, c-format
-msgid "Get from server"
-msgstr "خادم Telnet"
-
-#: ../lib/network/vpn/openvpn.pm:216
-#, fuzzy, c-format
-msgid "Gateway port"
-msgstr "البوّابة"
-
-#: ../lib/network/vpn/openvpn.pm:227 ../tools/drakgw:176
-#, fuzzy, c-format
-msgid "Local IP address"
-msgstr "عنوان IP"
-
-#: ../lib/network/vpn/openvpn.pm:232
-#, fuzzy, c-format
-msgid "Remote IP address"
-msgstr "عنوان IP للبوّابة"
-
-#: ../lib/network/vpn/openvpn.pm:237
-#, fuzzy, c-format
-msgid "Use TCP protocol"
-msgstr "البروتوكول"
-
-#: ../lib/network/vpn/openvpn.pm:243
-#, c-format
-msgid "Virtual network device type"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:250
-#, c-format
-msgid "Virtual network device number (optional)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:365
-#, c-format
-msgid "Starting connection.."
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:380
-#, c-format
-msgid "Please insert your token"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:9
-#, c-format
-msgid "Cisco VPN Concentrator"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:43
-#, fuzzy, c-format
-msgid "Group name"
-msgstr "هوية المجموعة"
-
-#: ../lib/network/vpn/vpnc.pm:47
-#, c-format
-msgid "Group secret"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:52
-#, c-format
-msgid "Username"
-msgstr "اسم المستخدم"
-
-#: ../lib/network/vpn/vpnc.pm:61
-#, c-format
-msgid "Use Cisco-UDP encapsulation"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:67
-#, c-format
-msgid "Use specific UDP port"
-msgstr ""
-
-#: ../tools/drakconnect:81
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "إعدادات الشبكة (%d موائمات)"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Gateway:"
-msgstr "البوابة:"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Interface:"
-msgstr "الواجهة:"
-
-#: ../tools/drakconnect:97 ../tools/net_monitor:119
-#, c-format
-msgid "Wait please"
-msgstr "الرجاء الانتظار"
-
-#: ../tools/drakconnect:113 ../tools/drakinvictus:105
-#, c-format
-msgid "Interface"
-msgstr "الواجهة"
-
-#: ../tools/drakconnect:113
-#, c-format
-msgid "State"
-msgstr "الحالة"
-
-#: ../tools/drakconnect:130
-#, c-format
-msgid "Hostname: "
-msgstr "اسم المضيف:"
-
-#: ../tools/drakconnect:132
-#, c-format
-msgid "Configure hostname..."
-msgstr "تهيئة اسم المضيف..."
-
-#: ../tools/drakconnect:146 ../tools/drakconnect:850
-#, c-format
-msgid "LAN configuration"
-msgstr "تهيئة LAN"
-
-#: ../tools/drakconnect:151
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "تهيئة الشبكة المحلية..."
-
-#: ../tools/drakconnect:157 ../tools/drakconnect:240 ../tools/draknfs:181
-#, c-format
-msgid "Help"
-msgstr "مساعدة"
-
-#: ../tools/drakconnect:159 ../tools/drakconnect:241 ../tools/drakconnect:245
-#: ../tools/drakinvictus:140
-#, c-format
-msgid "Apply"
-msgstr "تطبيق"
-
-#: ../tools/drakconnect:161 ../tools/drakconnect:942 ../tools/drakconnect:1033
-#: ../tools/draknetprofile:106 ../tools/net_monitor:341
-#, c-format
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: ../tools/drakconnect:162 ../tools/drakconnect:857 ../tools/drakconnect:944
-#: ../tools/drakconnect:1034 ../tools/draknetprofile:108
-#: ../tools/net_monitor:342
-#, c-format
-msgid "Ok"
-msgstr "موافق"
-
-#: ../tools/drakconnect:164 ../tools/drakconnect:636 ../tools/drakgw:359
-#: ../tools/drakroam:251 ../tools/drakroam:289 ../tools/draksambashare:208
-#, c-format
-msgid "Please wait"
-msgstr "الرجاء الانتظار"
-
-#: ../tools/drakconnect:166 ../tools/drakconnect:638
-#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق التهيئة"
+msgid "Metric"
+msgstr "متري"
-#: ../tools/drakconnect:192
+#: ../bin/drakconnect:482 ../lib/network/connection/cable.pm:48
+#: ../lib/network/netconnect.pm:587
#, c-format
-msgid "Manage connections"
-msgstr "إدارة الاتّصالات"
+msgid "Authentication"
+msgstr "المواثقة"
-#: ../tools/drakconnect:219 ../tools/drakroam:302
+#: ../bin/drakconnect:492 ../lib/network/connection/cable.pm:50
+#: ../lib/network/connection/ppp.pm:22 ../lib/network/netconnect.pm:326
+#: ../lib/network/vpn/openvpn.pm:393
#, c-format
-msgid "Device: "
-msgstr "الجهاز: "
+msgid "Account Login (user name)"
+msgstr "اسم الدخول للحساب (اسم المستخدم)"
-#: ../tools/drakconnect:302
+#: ../bin/drakconnect:493 ../lib/network/connection/cable.pm:52
+#: ../lib/network/connection/ppp.pm:23 ../lib/network/netconnect.pm:327
+#: ../lib/network/vpn/openvpn.pm:394
#, c-format
-msgid "IP configuration"
-msgstr "تهيئة IP"
+msgid "Account Password"
+msgstr "كلمة المرور للحساب"
-#: ../tools/drakconnect:337
+#: ../bin/drakconnect:494 ../lib/network/netconnect.pm:320
#, c-format
-msgid "DNS servers"
-msgstr "خادمات DNS"
+msgid "Provider phone number"
+msgstr "رقم هاتف المزوّد"
-#: ../tools/drakconnect:343
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:10
+#: ../lib/network/netconnect.pm:75
#, c-format
-msgid "Search Domain"
-msgstr "نطاق البحث"
+msgid "PAP"
+msgstr "PAP"
-#: ../tools/drakconnect:351 ../tools/drakvpn-old:837
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:11
+#: ../lib/network/netconnect.pm:76
#, c-format
-msgid "none"
-msgstr "لاشئ"
+msgid "Terminal-based"
+msgstr "مبني على محطة طرفيّة"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:9
+#: ../lib/network/netconnect.pm:74
#, c-format
-msgid "static"
-msgstr "ثابت"
+msgid "Script-based"
+msgstr "مبني على نص برمجي"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:12
+#: ../lib/network/netconnect.pm:77
#, c-format
-msgid "DHCP"
-msgstr "DHCP"
+msgid "CHAP"
+msgstr "CHAP"
-#: ../tools/drakconnect:434
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:13
+#: ../lib/network/netconnect.pm:78
#, c-format
-msgid "Start at boot"
-msgstr "البدء عند الإقلاع"
+msgid "PAP/CHAP"
+msgstr "PAP/CHAP"
-#: ../tools/drakconnect:516
+#: ../bin/drakconnect:516
#, c-format
msgid "Flow control"
msgstr "التحكّم بالدّفق"
-#: ../tools/drakconnect:517
+#: ../bin/drakconnect:517
#, c-format
msgid "Line termination"
msgstr "إنهاء الخط"
-#: ../tools/drakconnect:528
+#: ../bin/drakconnect:528
#, c-format
msgid "Modem timeout"
msgstr "انتهاء وقت المستخدم"
-#: ../tools/drakconnect:532
+#: ../bin/drakconnect:532
#, c-format
msgid "Use lock file"
msgstr "ملف قِفل المستخدم"
-#: ../tools/drakconnect:534
+#: ../bin/drakconnect:534
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr "انتظر نغمة الاتصال قبل القيام بالاتّصال"
-#: ../tools/drakconnect:537
+#: ../bin/drakconnect:537
#, c-format
msgid "Busy wait"
msgstr "انتظار المشغول"
-#: ../tools/drakconnect:542
+#: ../bin/drakconnect:542
#, c-format
msgid "Modem sound"
msgstr "صوت المودم"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "تمكين"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "تعطيل"
-#: ../tools/drakconnect:592
+#: ../bin/drakconnect:555 ../lib/network/netconnect.pm:328
+#, c-format
+msgid "Card IRQ"
+msgstr "IRQ للبطاقة"
+
+#: ../bin/drakconnect:556 ../lib/network/netconnect.pm:329
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "ذاكرة البطاقة (DMA)"
+
+#: ../bin/drakconnect:557 ../lib/network/netconnect.pm:330
+#, c-format
+msgid "Card IO"
+msgstr "IO للبطاقة"
+
+#: ../bin/drakconnect:558 ../lib/network/netconnect.pm:331
+#, c-format
+msgid "Card IO_0"
+msgstr "IO_0 للبطاقة"
+
+#: ../bin/drakconnect:564 ../lib/network/netconnect.pm:67
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "البروتوكول الأوروبي (EDSS1)"
+
+#: ../bin/drakconnect:565 ../lib/network/netconnect.pm:68
+#, c-format
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"بروتوكول لبقية العالم\n"
+"لا D-Channel (خطوط مؤجرة)"
+
+#: ../bin/drakconnect:592
#, c-format
msgid "Vendor"
msgstr "المصنع"
-#: ../tools/drakconnect:593
+#: ../bin/drakconnect:593
#, c-format
msgid "Description"
msgstr "الوصف"
-#: ../tools/drakconnect:594
+#: ../bin/drakconnect:594
#, c-format
msgid "Media class"
msgstr "فئة الوسيط"
-#: ../tools/drakconnect:595
+#: ../bin/drakconnect:595
#, c-format
msgid "Module name"
msgstr "اسم الوحدة"
-#: ../tools/drakconnect:596
+#: ../bin/drakconnect:596
#, c-format
msgid "Mac Address"
msgstr "عنوان MAC"
-#: ../tools/drakconnect:597
+#: ../bin/drakconnect:597
#, c-format
msgid "Bus"
msgstr "ناقل"
-#: ../tools/drakconnect:598
+#: ../bin/drakconnect:598
#, c-format
msgid "Location on the bus"
msgstr "الموقع على الناقل"
-#: ../tools/drakconnect:685 ../tools/drakconnect:766 ../tools/drakconnect:952
+#: ../bin/drakconnect:676 ../bin/drakconnect:680 ../bin/drakconnect:689
+#: ../bin/drakconnect:705 ../bin/drakgw:184 ../bin/drakhosts:100
+#: ../bin/drakhosts:245 ../bin/drakhosts:252 ../bin/drakhosts:259
+#: ../bin/drakinvictus:72 ../bin/draknetprofile:113 ../bin/draknfs:85
+#: ../bin/draknfs:106 ../bin/draknfs:276 ../bin/draknfs:409 ../bin/draknfs:411
+#: ../bin/draknfs:414 ../bin/draknfs:506 ../bin/draknfs:513 ../bin/draknfs:576
+#: ../bin/draknfs:583 ../bin/draknfs:590 ../bin/draksambashare:373
+#: ../bin/draksambashare:380 ../bin/draksambashare:383
+#: ../bin/draksambashare:429 ../bin/draksambashare:453
+#: ../bin/draksambashare:519 ../bin/draksambashare:534
+#: ../bin/draksambashare:612 ../bin/draksambashare:679
+#: ../bin/draksambashare:779 ../bin/draksambashare:786
+#: ../bin/draksambashare:917 ../bin/draksambashare:1110
+#: ../bin/draksambashare:1119 ../bin/draksambashare:1141
+#: ../bin/draksambashare:1150 ../bin/draksambashare:1169
+#: ../bin/draksambashare:1178 ../bin/draksambashare:1190
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakroam.pm:56 ../lib/network/drakroam.pm:69
+#: ../lib/network/drakvpn.pm:45 ../lib/network/drakvpn.pm:52
+#: ../lib/network/ndiswrapper.pm:27 ../lib/network/ndiswrapper.pm:42
+#: ../lib/network/ndiswrapper.pm:86 ../lib/network/ndiswrapper.pm:102
+#: ../lib/network/netconnect.pm:131 ../lib/network/netconnect.pm:179
+#: ../lib/network/netconnect.pm:268 ../lib/network/netconnect.pm:813
+#: ../lib/network/thirdparty.pm:115 ../lib/network/thirdparty.pm:132
+#: ../lib/network/thirdparty.pm:215 ../lib/network/thirdparty.pm:217
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Error"
+msgstr "خطأ"
+
+#: ../bin/drakconnect:676 ../lib/network/connection/ethernet.pm:160
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "عنوان IP يجب أن يكون بنسق 1.2.3.4"
+
+#: ../bin/drakconnect:680 ../lib/network/connection/ethernet.pm:165
+#, fuzzy, c-format
+msgid "Netmask should be in format 255.255.224.0"
+msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
+
+#: ../bin/drakconnect:685 ../bin/drakconnect:767 ../bin/drakconnect:953
#, c-format
msgid "No IP"
msgstr "بدون IP"
-#: ../tools/drakconnect:686 ../tools/drakconnect:767
+#: ../bin/drakconnect:686 ../bin/drakconnect:768
#, c-format
msgid "No Mask"
msgstr "لا قناع"
-#: ../tools/drakconnect:705 ../tools/drakgw:307
+#: ../bin/drakconnect:689 ../lib/network/netconnect.pm:798
+#, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
+
+#: ../bin/drakconnect:705 ../bin/drakgw:307
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr "لم يتم اكتشاف موائم شبكي على نظامك. فضلاً قم بتشغيل أداة تهيئة العتاد."
-#: ../tools/drakconnect:714
+#: ../bin/drakconnect:714
#, c-format
msgid "Remove a network interface"
msgstr "إزالة واجهة شبكة"
-#: ../tools/drakconnect:718
+#: ../bin/drakconnect:718
#, c-format
msgid "Select the network interface to remove:"
msgstr "اختيار واجهة الشبكة لإزالتها:"
-#: ../tools/drakconnect:750
+#: ../bin/drakconnect:719 ../bin/drakgw:123 ../lib/network/netconnect.pm:350
+#: ../lib/network/netconnect.pm:385
+#, c-format
+msgid "Net Device"
+msgstr "جهاز الشبكة"
+
+#: ../bin/drakconnect:751
#, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
@@ -2688,53 +569,53 @@ msgstr ""
"\n"
"%s"
-#: ../tools/drakconnect:751
+#: ../bin/drakconnect:752
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr "تهانينا، تمّ حذف واجهة الشّبكة \"%s\" بنجاح"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "up"
msgstr "يعمل"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "down"
msgstr "مُعطّل"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Connected"
msgstr "متّصل"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Not connected"
msgstr "غير متصل"
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Disconnect..."
msgstr "قطع الإتصال..."
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Connect..."
msgstr "اتصال..."
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Deactivate now"
msgstr "التعطيل الآن"
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Activate now"
msgstr "التنشيط الآن"
-#: ../tools/drakconnect:854
+#: ../bin/drakconnect:855
#, c-format
msgid ""
"You do not have any configured interface.\n"
@@ -2743,27 +624,27 @@ msgstr ""
"لم تقم بتهيئة أي واجهات.\n"
"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
-#: ../tools/drakconnect:868
+#: ../bin/drakconnect:869
#, c-format
msgid "LAN Configuration"
msgstr "تهيئة الشّبكة المحليّة"
-#: ../tools/drakconnect:880
+#: ../bin/drakconnect:881
#, c-format
msgid "Adapter %s: %s"
msgstr "المحوّل %s: %s"
-#: ../tools/drakconnect:889
+#: ../bin/drakconnect:890
#, c-format
msgid "Boot Protocol"
msgstr "بروتوكول الإقلاع"
-#: ../tools/drakconnect:890
+#: ../bin/drakconnect:891
#, c-format
msgid "Started on boot"
msgstr "يتم تشغيله عند الإقلاع"
-#: ../tools/drakconnect:926
+#: ../bin/drakconnect:927
#, c-format
msgid ""
"This interface has not been configured yet.\n"
@@ -2772,12 +653,20 @@ msgstr ""
"لم تتمّ تهيئة الواجهة بعد.\n"
"قم بتشغيل مساعد \"أضف واجهة\" من مركز تحكّم ماندريبا لينكس"
-#: ../tools/drakconnect:974
+#: ../bin/drakconnect:975
#, c-format
msgid "Internet connection configuration"
msgstr "تهيئة الإتصال بالإنترنت"
-#: ../tools/drakconnect:980 ../tools/net_applet:68
+#: ../bin/drakconnect:979 ../bin/draknetprofile:129 ../bin/draknetprofile:131
+#: ../bin/drakproxy:36 ../lib/network/drakvpn.pm:70
+#: ../lib/network/drakvpn.pm:100 ../lib/network/ndiswrapper.pm:92
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid "Warning"
+msgstr "تحذير"
+
+#: ../bin/drakconnect:981 ../bin/net_applet:69
#, c-format
msgid ""
"You do not have any configured Internet connection.\n"
@@ -2787,52 +676,67 @@ msgstr ""
"شغّل مساعد \"%s\" من مركز تحكم ماندريبا لينكس"
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: ../tools/drakconnect:981 ../tools/net_applet:69
+#: ../bin/drakconnect:982 ../bin/net_applet:70
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "إعداد واجهة شبكة جديدة (LAN، ISDN، ADSL، ...)"
-#: ../tools/drakconnect:995
+#: ../bin/drakconnect:996
#, c-format
msgid "Host name (optional)"
msgstr "اسم المضيف (اختياري)"
-#: ../tools/drakconnect:998
+#: ../bin/drakconnect:997 ../lib/network/netconnect.pm:622
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "خادم DNS الأول (اختياري)"
+
+#: ../bin/drakconnect:998 ../lib/network/netconnect.pm:623
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "خادم DNS الثاني (اختياري)"
+
+#: ../bin/drakconnect:999
#, c-format
msgid "Third DNS server (optional)"
msgstr "خادم DNS الثّالث (اختياري)"
-#: ../tools/drakconnect:1020
+#: ../bin/drakconnect:1021
#, c-format
msgid "Internet Connection Configuration"
msgstr "تهيئة الإتصال بالإنترنت"
-#: ../tools/drakconnect:1021
+#: ../bin/drakconnect:1022
#, c-format
msgid "Internet access"
msgstr "الدخول إلى الإنترنت"
-#: ../tools/drakconnect:1023 ../tools/net_monitor:98
+#: ../bin/drakconnect:1024 ../bin/net_monitor:98
#, c-format
msgid "Connection type: "
msgstr "نوع الوصلة:"
-#: ../tools/drakconnect:1026
+#: ../bin/drakconnect:1027
#, c-format
msgid "Status:"
msgstr "الحالة:"
-#: ../tools/drakconnect:1031
+#: ../bin/drakconnect:1028 ../lib/network/netconnect.pm:704
+#, c-format
+msgid "Testing your connection..."
+msgstr "اختبار الوصلة..."
+
+#: ../bin/drakconnect:1032
#, c-format
msgid "Parameters"
msgstr "مُعطيات"
-#: ../tools/drakgw:71
+#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "مشاركة الاتصال بالإنترنت"
-#: ../tools/drakgw:75
+#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -2854,7 +758,7 @@ msgstr ""
"\n"
"ملحوظة: تحتاج إلى موائم للشبكة كي تقوم بإعداد الشبكة المحلية (LAN)."
-#: ../tools/drakgw:91
+#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
@@ -2867,7 +771,7 @@ msgstr ""
"\n"
"ماذا تريد أن تفعل؟"
-#: ../tools/drakgw:95
+#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -2880,17 +784,17 @@ msgstr ""
"\n"
"ماذا تريد أن تفعل؟"
-#: ../tools/drakgw:101
+#: ../bin/drakgw:101
#, c-format
msgid "Reconfigure"
msgstr "اعادة تهيئة"
-#: ../tools/drakgw:122
+#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""
-#: ../tools/drakgw:141
+#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -2905,45 +809,50 @@ msgstr ""
"\n"
"نحن على وشك إعداد الشبكة المحلية باستخدام هذا الموائم."
-#: ../tools/drakgw:152
+#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "الرجاء اختيار موائم الشبكة الذي سيتم به الإتصال بالشبكة المحلية."
-#: ../tools/drakgw:173
+#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "عنوان الشبكة المحلية"
-#: ../tools/drakgw:178
+#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
+#, fuzzy, c-format
+msgid "Local IP address"
+msgstr "عنوان IP"
+
+#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr "اسم النطاق الداخلي"
-#: ../tools/drakgw:184
+#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"عثر على تعارض في عنوان الشبكة المحلية المبدئي في التهيئة الحالي لـ%s!\n"
-#: ../tools/drakgw:200
+#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "تهيئة خادم الطّرفيات"
-#: ../tools/drakgw:204
+#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""
-#: ../tools/drakgw:205
+#: ../bin/drakgw:205
#, c-format
msgid "The DNS Server IP"
msgstr "عنوان IP لخادم DNS"
-#: ../tools/drakgw:232
+#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
@@ -2956,77 +865,77 @@ msgstr ""
"هنا يمكنك اختيار خيارات مختلفة لتهيئة خادم DHCP.\n"
"إذا لم تكن تعلم معنى خيار ما، فاتركه كما هو."
-#: ../tools/drakgw:239
+#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "إعادة تهيئة آلية"
-#: ../tools/drakgw:240
+#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr "مدى بداية DHCP"
-#: ../tools/drakgw:241
+#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr "مدى نهاية DHCP"
-#: ../tools/drakgw:242
+#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr "الإيجار الإفتراضي (بالثواني)"
-#: ../tools/drakgw:243
+#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr "الإيجار الأقصى (بالثواني)"
-#: ../tools/drakgw:266
+#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""
-#: ../tools/drakgw:270
+#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""
-#: ../tools/drakgw:271
+#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""
-#: ../tools/drakgw:272
+#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "اسم المضيف البعيد"
-#: ../tools/drakgw:273
+#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "الخاصية"
-#: ../tools/drakgw:274
+#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "حجم الذاكرة المخبئية"
-#: ../tools/drakgw:296
+#: ../bin/drakgw:296
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "معلومات القرص الصلب"
-#: ../tools/drakgw:313
+#: ../bin/drakgw:313
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-#: ../tools/drakgw:319
+#: ../bin/drakgw:319
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../tools/drakgw:325
+#: ../bin/drakgw:325
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -3039,17 +948,17 @@ msgstr ""
"باستخدام تهيئة الشبكة الأوتوماتيكية (DHCP) و\n"
" خادم الذاكرة المخبئة والبروكسي الشّفافي (SQUID)."
-#: ../tools/drakgw:359
+#: ../bin/drakgw:359
#, c-format
msgid "Disabling servers..."
msgstr "تعطيل الخادمات..."
-#: ../tools/drakgw:373
+#: ../bin/drakgw:373
#, c-format
msgid "Firewalling configuration detected!"
msgstr "تم اكتشاف إعداد للجدار الناري!"
-#: ../tools/drakgw:374
+#: ../bin/drakgw:374
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
@@ -3058,329 +967,348 @@ msgstr ""
"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج إلى اصلاح يدوي بعد "
"التثبيت."
-#: ../tools/drakgw:379
+#: ../bin/drakgw:379
#, c-format
msgid "Configuring..."
msgstr "التهيئة..."
-#: ../tools/drakgw:380
+#: ../bin/drakgw:380
#, c-format
msgid "Configuring firewall..."
msgstr ""
-#: ../tools/drakhosts:100
+#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""
-#: ../tools/drakhosts:110
+#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "معلومات مفصّلة"
-#: ../tools/drakhosts:111
+#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "معلومات مفصّلة"
-#: ../tools/drakhosts:112
+#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "معلومات مفصّلة"
-#: ../tools/drakhosts:116
+#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "عنوان IP:"
-#: ../tools/drakhosts:117
+#: ../bin/drakhosts:117
#, fuzzy, c-format
msgid "Host name:"
msgstr "اسم المضيف"
-#: ../tools/drakhosts:118
+#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "اسم المضيف"
-#: ../tools/drakhosts:122 ../tools/drakhosts:128 ../tools/draksambashare:209
-#: ../tools/draksambashare:230 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:209
+#: ../bin/draksambashare:230 ../bin/draksambashare:377
+#: ../bin/draksambashare:608 ../bin/draksambashare:775
#, c-format
msgid "Error!"
msgstr "خطأ!"
-#: ../tools/drakhosts:122
+#: ../bin/drakhosts:122
#, c-format
msgid "Please enter a valid IP address."
msgstr "الرجاء إدخال عنوان IP صالح."
-#: ../tools/drakhosts:128
+#: ../bin/drakhosts:128
#, fuzzy, c-format
msgid "Same IP is already in %s file."
msgstr "%s قيد الاستخدام مسبقاً\n"
-#: ../tools/drakhosts:196
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:202
+#, c-format
+msgid "Host name"
+msgstr "اسم المضيف"
+
+#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "اسم المضيف"
-#: ../tools/drakhosts:206 ../tools/drakhosts:236
+#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, fuzzy, c-format
msgid "Manage hosts definitions"
msgstr "إدارة الاتّصالات"
-#: ../tools/drakhosts:222 ../tools/drakhosts:249
+#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""
-#: ../tools/drakhosts:241 ../tools/draknfs:563 ../tools/draksambashare:1102
-#: ../tools/draksambashare:1133 ../tools/draksambashare:1164
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakhosts:241 ../bin/draknfs:572 ../bin/draksambashare:1103
+#: ../bin/draksambashare:1134 ../bin/draksambashare:1165
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "إضافة"
-#: ../tools/drakhosts:242
+#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "إضافة طابعة"
-#: ../tools/drakhosts:245
+#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""
-#: ../tools/drakhosts:248 ../tools/draknfs:570 ../tools/draksambashare:1059
-#: ../tools/draksambashare:1104 ../tools/draksambashare:1135
-#: ../tools/draksambashare:1172
+#: ../bin/drakhosts:248 ../bin/draknfs:579 ../bin/draksambashare:1060
+#: ../bin/draksambashare:1105 ../bin/draksambashare:1136
+#: ../bin/draksambashare:1173
#, c-format
msgid "Modify"
msgstr "تعديل"
-#: ../tools/drakhosts:252
+#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""
-#: ../tools/drakhosts:255 ../tools/drakids:87 ../tools/drakids:96
-#: ../tools/draknfs:577 ../tools/draksambashare:1060
-#: ../tools/draksambashare:1112 ../tools/draksambashare:1143
-#: ../tools/draksambashare:1180 ../tools/drakvpn-old:253
-#: ../tools/drakvpn-old:391
+#: ../bin/drakhosts:255 ../bin/drakids:87 ../bin/drakids:96 ../bin/draknfs:586
+#: ../bin/draksambashare:1061 ../bin/draksambashare:1113
+#: ../bin/draksambashare:1144 ../bin/draksambashare:1181
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "حذف"
-#: ../tools/drakhosts:259
+#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""
-#: ../tools/drakhosts:262 ../tools/drakinvictus:141
-#: ../tools/draknetprofile:147 ../tools/drakroam:309 ../tools/net_applet:138
+#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:147
+#: ../bin/net_applet:139 ../lib/network/drakroam.pm:353
#, c-format
msgid "Quit"
msgstr "خروج"
-#: ../tools/drakids:28
+#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "السماح لكل المستخدمين"
-#: ../tools/drakids:65 ../tools/drakids:181 ../tools/drakids:190
-#: ../tools/drakids:215 ../tools/drakids:224 ../tools/drakids:234
-#: ../tools/drakids:326 ../tools/net_applet:238 ../tools/net_applet:514
+#: ../bin/drakids:40 ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190
+#: ../bin/drakids:215 ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:78 ../bin/net_applet:239 ../bin/net_applet:519
+#: ../bin/net_applet:546 ../lib/network/drakfirewall.pm:255
+#: ../lib/network/drakfirewall.pm:258
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "جدار ناري"
+
+#: ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190 ../bin/drakids:215
+#: ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:239 ../bin/net_applet:519
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "تعذر الإتصال بالمرآة %s"
-#: ../tools/drakids:74 ../tools/drakids:102
+#: ../bin/drakids:74 ../bin/drakids:102
#, c-format
msgid "Log"
msgstr "السّجل"
-#: ../tools/drakids:78 ../tools/drakids:97 ../tools/net_applet:659
+#: ../bin/drakids:78 ../bin/drakids:97 ../bin/net_applet:663
#, fuzzy, c-format
msgid "Allow"
msgstr "الكل"
-#: ../tools/drakids:79 ../tools/drakids:88 ../tools/net_applet:660
+#: ../bin/drakids:79 ../bin/drakids:88 ../bin/net_applet:664
#, c-format
msgid "Block"
msgstr ""
-#: ../tools/drakids:80 ../tools/drakids:89 ../tools/drakids:98
-#: ../tools/drakids:109 ../tools/drakids:122 ../tools/drakids:130
-#: ../tools/draknfs:186 ../tools/net_monitor:120
+#: ../bin/drakids:80 ../bin/drakids:89 ../bin/drakids:98 ../bin/drakids:109
+#: ../bin/drakids:122 ../bin/drakids:130 ../bin/draknfs:188
+#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: ../tools/drakids:83
+#: ../bin/drakids:83
#, fuzzy, c-format
msgid "Allowed services"
msgstr "السماح لكل المستخدمين"
-#: ../tools/drakids:92
+#: ../bin/drakids:92
#, fuzzy, c-format
msgid "Blocked services"
msgstr "نسخ ملفات المستخدم"
-#: ../tools/drakids:106
+#: ../bin/drakids:106
#, fuzzy, c-format
msgid "Clear logs"
msgstr "مسح الكل"
-#: ../tools/drakids:107 ../tools/drakids:112 ../tools/net_applet:602
+#: ../bin/drakids:107 ../bin/drakids:112 ../bin/net_applet:607
#, c-format
msgid "Blacklist"
msgstr ""
-#: ../tools/drakids:108 ../tools/drakids:125 ../tools/net_applet:607
+#: ../bin/drakids:108 ../bin/drakids:125 ../bin/net_applet:612
#, c-format
msgid "Whitelist"
msgstr ""
-#: ../tools/drakids:116
+#: ../bin/drakids:116
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "ازالة من LVM"
-#: ../tools/drakids:117
+#: ../bin/drakids:117
#, c-format
msgid "Move to whitelist"
msgstr ""
-#: ../tools/drakids:129
+#: ../bin/drakids:129
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "ازالة من LVM"
-#: ../tools/drakids:247
+#: ../bin/drakids:247
#, c-format
msgid "Date"
msgstr "التاريخ"
-#: ../tools/drakids:248
+#: ../bin/drakids:248
#, fuzzy, c-format
msgid "Attacker"
msgstr "تفاصيل الهجوم"
-#: ../tools/drakids:249
+#: ../bin/drakids:249
#, fuzzy, c-format
msgid "Attack type"
msgstr "نوع الهجوم: %s"
-#: ../tools/drakids:250 ../tools/drakids:283
+#: ../bin/drakids:250 ../bin/drakids:283
#, c-format
msgid "Service"
msgstr "خدمة"
-#: ../tools/drakids:251
+#: ../bin/drakids:251
#, c-format
msgid "Network interface"
msgstr "واجهة الشبكة "
-#: ../tools/drakids:282
+#: ../bin/drakids:282
#, c-format
msgid "Application"
msgstr "البرنامج"
-#: ../tools/drakids:284
+#: ../bin/drakids:284
#, c-format
msgid "Status"
msgstr "الحالة"
-#: ../tools/drakids:286
+#: ../bin/drakids:286
#, fuzzy, c-format
msgid "Allowed"
msgstr "الكل"
-#: ../tools/drakids:287
+#: ../bin/drakids:287
#, c-format
msgid "Blocked"
msgstr ""
-#: ../tools/drakinvictus:36
+#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr ""
-#: ../tools/drakinvictus:53
+#: ../bin/drakinvictus:53
#, fuzzy, c-format
msgid "Start as master"
msgstr "يتم تشغيله عند الإقلاع"
-#: ../tools/drakinvictus:72
+#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "كلمة المرور مطلوبة"
-#: ../tools/drakinvictus:100
+#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
-#: ../tools/drakinvictus:102
+#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "عنوان MAC"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Virtual shared address"
msgstr "العنوان المصدر لـSainfo"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""
-#: ../tools/drakinvictus:114
+#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:586
+#: ../lib/network/vpn/vpnc.pm:56
+#, c-format
+msgid "Password"
+msgstr "كلمة المرور"
+
+#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "الاستبانة النهائية"
-#: ../tools/drakinvictus:116
+#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""
-#: ../tools/drakinvictus:123
+#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "أداة المزامنة"
-#: ../tools/drakinvictus:132
+#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "الوصلة"
-#: ../tools/draknetprofile:36
+#: ../bin/draknetprofile:36
#, fuzzy, c-format
msgid "Network profiles"
msgstr "خيارات الشبكة"
-#: ../tools/draknetprofile:67
+#: ../bin/draknetprofile:67
#, fuzzy, c-format
msgid "Profile"
msgstr "لمحات مختصرة"
-#: ../tools/draknetprofile:99
+#: ../bin/draknetprofile:99
#, c-format
msgid "New profile..."
msgstr "سجل شخصي جديد..."
-#: ../tools/draknetprofile:102
+#: ../bin/draknetprofile:102
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
@@ -3388,131 +1316,131 @@ msgid ""
msgstr ""
"إسم السجل الشخصي الواجب إنشاؤه (سيتمّ إنشاء السجل الشخصي الجديد كنسخة للحالي):"
-#: ../tools/draknetprofile:113
+#: ../bin/draknetprofile:113
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr "السجل الشخصي \"%s\" موجود !"
-#: ../tools/draknetprofile:129
+#: ../bin/draknetprofile:129
#, c-format
msgid "You can not delete the default profile"
msgstr ""
-#: ../tools/draknetprofile:131
+#: ../bin/draknetprofile:131
#, c-format
msgid "You can not delete the current profile"
msgstr "لا يمكنك حذف السجل الشخصي الحالي"
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""
-#: ../tools/draknetprofile:144
+#: ../bin/draknetprofile:144
#, c-format
msgid "Activate"
msgstr "تفعيل"
-#: ../tools/draknetprofile:145
+#: ../bin/draknetprofile:145
#, fuzzy, c-format
msgid "Clone"
msgstr "اتصل"
-#: ../tools/draknetprofile:146
+#: ../bin/draknetprofile:146
#, c-format
msgid "Delete"
msgstr "حذف"
-#: ../tools/draknfs:41
+#: ../bin/draknfs:41
#, c-format
msgid "map root user as anonymous"
msgstr ""
-#: ../tools/draknfs:42
+#: ../bin/draknfs:42
#, c-format
msgid "map all users to anonymous user"
msgstr ""
-#: ../tools/draknfs:43
+#: ../bin/draknfs:43
#, c-format
msgid "No user UID mapping"
msgstr ""
-#: ../tools/draknfs:44
+#: ../bin/draknfs:44
#, c-format
msgid "allow real remote root access"
msgstr ""
-#: ../tools/draknfs:58 ../tools/draknfs:59 ../tools/draknfs:60
-#: ../tools/draksambashare:161 ../tools/draksambashare:162
-#: ../tools/draksambashare:163
+#: ../bin/draknfs:58 ../bin/draknfs:59 ../bin/draknfs:60
+#: ../bin/draksambashare:161 ../bin/draksambashare:162
+#: ../bin/draksambashare:163
#, c-format
msgid "/_File"
msgstr "/_ملف"
-#: ../tools/draknfs:59 ../tools/draksambashare:162
+#: ../bin/draknfs:59 ../bin/draksambashare:162
#, c-format
msgid "/_Write conf"
msgstr ""
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "/_Quit"
msgstr "/_خروج"
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
-#: ../tools/draknfs:63 ../tools/draknfs:64 ../tools/draknfs:65
+#: ../bin/draknfs:63 ../bin/draknfs:64 ../bin/draknfs:65
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "خادمات DNS"
-#: ../tools/draknfs:64 ../tools/draksambashare:166
+#: ../bin/draknfs:64 ../bin/draksambashare:166
#, c-format
msgid "/_Restart"
msgstr ""
-#: ../tools/draknfs:65 ../tools/draksambashare:167
+#: ../bin/draknfs:65 ../bin/draksambashare:167
#, c-format
msgid "/R_eload"
msgstr ""
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "NFS server"
msgstr "خادم NFS"
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""
-#: ../tools/draknfs:85
+#: ../bin/draknfs:85
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""
-#: ../tools/draknfs:101 ../tools/draksambashare:225
+#: ../bin/draknfs:101 ../bin/draksambashare:225
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "الاتجاه"
-#: ../tools/draknfs:106 ../tools/draksambashare:230
+#: ../bin/draknfs:106 ../bin/draksambashare:230
#, c-format
msgid "Should be a directory."
msgstr "يجب أن يكون دليلا."
-#: ../tools/draknfs:137
+#: ../bin/draknfs:137
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
@@ -3539,7 +1467,7 @@ msgid ""
"result.\n"
msgstr ""
-#: ../tools/draknfs:152
+#: ../bin/draknfs:152
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
@@ -3565,27 +1493,32 @@ msgid ""
"the uid and gid of the anonymous account.\n"
msgstr ""
-#: ../tools/draknfs:168
+#: ../bin/draknfs:168
#, c-format
msgid "Synchronous access:"
msgstr ""
-#: ../tools/draknfs:169
+#: ../bin/draknfs:169
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "وصلة انترنت"
-#: ../tools/draknfs:170
+#: ../bin/draknfs:170
#, c-format
msgid "Read-Only share:"
msgstr ""
-#: ../tools/draknfs:172
+#: ../bin/draknfs:171
+#, c-format
+msgid "Subtree checking:"
+msgstr ""
+
+#: ../bin/draknfs:173
#, c-format
msgid "Advanced Options"
msgstr ""
-#: ../tools/draknfs:173
+#: ../bin/draknfs:174
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
@@ -3593,7 +1526,7 @@ msgid ""
"is on by default."
msgstr ""
-#: ../tools/draknfs:174
+#: ../bin/draknfs:175
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
@@ -3602,7 +1535,7 @@ msgid ""
"using this option."
msgstr ""
-#: ../tools/draknfs:175
+#: ../bin/draknfs:176
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
@@ -3610,732 +1543,678 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: ../tools/draknfs:180 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draknfs:177
+#, c-format
+msgid ""
+"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "معلومات"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "الدليل"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "الدليل:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "اسم المضيف"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr "التّوصّل:"
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr ""
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "الرجاء إدخال مُعطيات اللاسلكيّة لهذه البطاقة:"
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr "خيارات عامة"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#
-#: ../tools/drakroam:61
-#, c-format
-msgid "No device found"
-msgstr "لم يُعثر على أي جهاز"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "معلومات مفصّلة"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "التشفير"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, fuzzy, c-format
-msgid "Connecting..."
-msgstr "اتصال..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Disconnect"
-msgstr "اقطع الاتصال"
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "اتصل"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "قطع الإتصال..."
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "تهيئة"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "إنعاش"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "اسم المستخدم"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "اسم المشاركة"
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "لا دليل كذلك"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, c-format
msgid "Comment"
msgstr "التعليق"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "استعراض"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr "عام"
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, c-format
msgid "Writable"
msgstr "قابل للكتابة"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "إنشاء"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "الدّليل المحتوي على النّسخ الاحتياطيّة"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "قراءة"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "كتابة"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "إضافة مستخدم"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "إضافة مستخدم"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "التصاريح"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "تخبئة الملفات"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, c-format
msgid "Hide files"
msgstr "تخبئة الملفات"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "تفضيلات"
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, fuzzy, c-format
msgid "Force create mode"
msgstr "طراز الطابعة الخاصة بك"
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "مجموعة PFS"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "المستخدم الإفتراضي"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "اسم الطابعة"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "المسار"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, fuzzy, c-format
msgid "Printable"
msgstr "تمكين"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "الأمر"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "الأمر"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "التصاريح"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "الطباعة"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "نوع البطاقة"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"
msgstr "خادم Telnet"
-#: ../tools/draksambashare:142
+#: ../bin/draksambashare:142
#, fuzzy, c-format
msgid "Read List"
msgstr "حذف القائمة"
-#: ../tools/draksambashare:143
+#: ../bin/draksambashare:143
#, fuzzy, c-format
msgid "Write List"
msgstr "كتابة"
-#: ../tools/draksambashare:148
+#: ../bin/draksambashare:148
#, fuzzy, c-format
msgid "Force Group"
msgstr "المجموعة"
-#: ../tools/draksambashare:149
+#: ../bin/draksambashare:149
#, c-format
msgid "Force create group"
msgstr ""
-#: ../tools/draksambashare:165 ../tools/draksambashare:166
-#: ../tools/draksambashare:167
+#: ../bin/draksambashare:165 ../bin/draksambashare:166
+#: ../bin/draksambashare:167
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "خادم الوب"
-#: ../tools/draksambashare:169 ../tools/draksambashare:170
+#: ../bin/draksambashare:169 ../bin/draksambashare:170
#, c-format
msgid "/_About"
msgstr "/_حول"
-#: ../tools/draksambashare:169
+#: ../bin/draksambashare:169
#, c-format
msgid "/_Report Bug"
msgstr "/_تقرير خطأ"
-#: ../tools/draksambashare:170
+#: ../bin/draksambashare:170
#, c-format
msgid "/About..."
msgstr ""
-#: ../tools/draksambashare:173
+#: ../bin/draksambashare:173
#, c-format
msgid "Draksambashare"
msgstr ""
-#: ../tools/draksambashare:175
+#: ../bin/draksambashare:175
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""
-#: ../tools/draksambashare:177
+#: ../bin/draksambashare:177
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""
-#: ../tools/draksambashare:179
+#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Online"
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
-#: ../tools/draksambashare:184
+#: ../bin/draksambashare:184
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Arabeyes <support@arabeyes.org>\n"
-#: ../tools/draksambashare:208
+#: ../bin/draksambashare:208
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""
-#: ../tools/draksambashare:209
+#: ../bin/draksambashare:209
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""
-#: ../tools/draksambashare:349 ../tools/draksambashare:549
-#: ../tools/draksambashare:670
+#: ../bin/draksambashare:349 ../bin/draksambashare:550
+#: ../bin/draksambashare:671
#, c-format
msgid "Open"
msgstr "فتح"
-#: ../tools/draksambashare:352
+#: ../bin/draksambashare:352
#, c-format
msgid "DrakSamba add entry"
msgstr ""
-#: ../tools/draksambashare:356
+#: ../bin/draksambashare:356
#, fuzzy, c-format
msgid "Add a share"
msgstr "إضافة قاعدة"
-#: ../tools/draksambashare:359
+#: ../bin/draksambashare:359
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "اسم الشّهادة"
-#: ../tools/draksambashare:360 ../tools/draksambashare:569
-#: ../tools/draksambashare:750
+#: ../bin/draksambashare:360 ../bin/draksambashare:570
+#: ../bin/draksambashare:751
#, c-format
msgid "Comment:"
msgstr "التعليق:"
-#: ../tools/draksambashare:372
+#: ../bin/draksambashare:373
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
-#: ../tools/draksambashare:379
+#: ../bin/draksambashare:380
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""
-#: ../tools/draksambashare:382 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draksambashare:383 ../bin/draksambashare:606
+#: ../bin/draksambashare:773
#, fuzzy, c-format
msgid "Please enter a Comment for this share."
msgstr "الرجاء إدخال مُعطيات اللاسلكيّة لهذه البطاقة:"
-#: ../tools/draksambashare:413
+#: ../bin/draksambashare:414
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""
-#: ../tools/draksambashare:414
+#: ../bin/draksambashare:415
#, c-format
msgid "printers - all printers available"
msgstr ""
-#: ../tools/draksambashare:418
+#: ../bin/draksambashare:419
#, c-format
msgid "Add Special Printer share"
msgstr ""
-#: ../tools/draksambashare:421
+#: ../bin/draksambashare:422
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
-#: ../tools/draksambashare:428
+#: ../bin/draksambashare:429
#, fuzzy, c-format
msgid "A PDF generator already exists."
msgstr "السجل الشخصي \"%s\" موجود !"
-#: ../tools/draksambashare:452
+#: ../bin/draksambashare:453
#, fuzzy, c-format
msgid "Printers and print$ already exist."
msgstr "السجل الشخصي \"%s\" موجود !"
-#: ../tools/draksambashare:502
+#: ../bin/draksambashare:503
#, c-format
msgid "Congratulations"
msgstr "تهانينا"
-#: ../tools/draksambashare:503
+#: ../bin/draksambashare:504
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""
-#: ../tools/draksambashare:518
+#: ../bin/draksambashare:519
#, c-format
msgid "Failed to add printers."
msgstr ""
-#: ../tools/draksambashare:533
+#: ../bin/draksambashare:534
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:552
+#: ../bin/draksambashare:553
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""
-#: ../tools/draksambashare:565
+#: ../bin/draksambashare:566
#, c-format
msgid "Printer share"
msgstr ""
-#: ../tools/draksambashare:568
+#: ../bin/draksambashare:569
#, c-format
msgid "Printer name:"
msgstr "اسم الطابعة:"
-#: ../tools/draksambashare:574 ../tools/draksambashare:755
+#: ../bin/draksambashare:575 ../bin/draksambashare:756
#, fuzzy, c-format
msgid "Writable:"
msgstr "كتابة"
-#: ../tools/draksambashare:575 ../tools/draksambashare:756
+#: ../bin/draksambashare:576 ../bin/draksambashare:757
#, fuzzy, c-format
msgid "Browseable:"
msgstr "استعراض"
-#: ../tools/draksambashare:580
+#: ../bin/draksambashare:581
#, c-format
msgid "Advanced options"
msgstr "خيارات متقدمة"
-#: ../tools/draksambashare:582
+#: ../bin/draksambashare:583
#, fuzzy, c-format
msgid "Printer access"
msgstr "الدخول إلى الإنترنت"
-#: ../tools/draksambashare:586
+#: ../bin/draksambashare:587
#, c-format
msgid "Guest ok:"
msgstr ""
-#: ../tools/draksambashare:587
+#: ../bin/draksambashare:588
#, fuzzy, c-format
msgid "Create mode:"
msgstr "نوع البطاقة"
-#: ../tools/draksambashare:591
+#: ../bin/draksambashare:592
#, c-format
msgid "Printer command"
msgstr ""
-#: ../tools/draksambashare:593
+#: ../bin/draksambashare:594
#, c-format
msgid "Print command:"
msgstr ""
-#: ../tools/draksambashare:594
+#: ../bin/draksambashare:595
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "الأمر"
-#: ../tools/draksambashare:595
+#: ../bin/draksambashare:596
#, fuzzy, c-format
msgid "Printing:"
msgstr "تحذير"
-#: ../tools/draksambashare:611
+#: ../bin/draksambashare:612
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:673
+#: ../bin/draksambashare:674
#, c-format
msgid "DrakSamba entry"
msgstr ""
-#: ../tools/draksambashare:678
+#: ../bin/draksambashare:679
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:701
+#: ../bin/draksambashare:702
#, fuzzy, c-format
msgid "Samba user access"
msgstr "خادم سامبا"
-#: ../tools/draksambashare:709
+#: ../bin/draksambashare:710
#, fuzzy, c-format
msgid "Mask options"
msgstr "الخيارات الأساسية"
-#: ../tools/draksambashare:723
+#: ../bin/draksambashare:724
#, fuzzy, c-format
msgid "Display options"
msgstr "حدد الخيارات"
-#: ../tools/draksambashare:745
+#: ../bin/draksambashare:746
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "لا دليل كذلك"
-#: ../tools/draksambashare:748
+#: ../bin/draksambashare:749
#, fuzzy, c-format
msgid "Share name:"
msgstr "اسم المشاركة"
-#: ../tools/draksambashare:754
+#: ../bin/draksambashare:755
#, c-format
msgid "Public:"
msgstr ""
-#: ../tools/draksambashare:778
+#: ../bin/draksambashare:779
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:785
+#: ../bin/draksambashare:786
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""
-#: ../tools/draksambashare:889
+#: ../bin/draksambashare:890
#, c-format
msgid "Add Samba user"
msgstr ""
-#: ../tools/draksambashare:904
+#: ../bin/draksambashare:905
#, fuzzy, c-format
msgid "User information"
msgstr "جاري تغيير حجم تجزيء ويندوز"
-#: ../tools/draksambashare:906
+#: ../bin/draksambashare:907
#, fuzzy, c-format
msgid "User name:"
msgstr "اسم المستخدم"
-#: ../tools/draksambashare:907
+#: ../bin/draksambashare:908
#, c-format
msgid "Password:"
msgstr "كلمة المرور:"
-#: ../tools/draksambashare:1021
+#: ../bin/draksambashare:1022
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "تهيئة تنبيه البريد"
-#: ../tools/draksambashare:1109
+#: ../bin/draksambashare:1110
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""
-#: ../tools/draksambashare:1118
+#: ../bin/draksambashare:1119
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""
-#: ../tools/draksambashare:1125
+#: ../bin/draksambashare:1126
#, c-format
msgid "File share"
msgstr ""
-#: ../tools/draksambashare:1140
+#: ../bin/draksambashare:1141
#, c-format
msgid "Failed to Modify."
msgstr ""
-#: ../tools/draksambashare:1149
+#: ../bin/draksambashare:1150
#, c-format
msgid "Failed to remove."
msgstr ""
-#: ../tools/draksambashare:1156
+#: ../bin/draksambashare:1157
#, c-format
msgid "Printers"
msgstr "طابعات"
-#: ../tools/draksambashare:1168
+#: ../bin/draksambashare:1169
#, c-format
msgid "Failed to add user."
msgstr ""
-#: ../tools/draksambashare:1177
+#: ../bin/draksambashare:1178
#, c-format
msgid "Failed to change user password."
msgstr ""
-#: ../tools/draksambashare:1189
+#: ../bin/draksambashare:1190
#, c-format
msgid "Failed to delete user."
msgstr ""
-#: ../tools/draksambashare:1194
+#: ../bin/draksambashare:1195
#, c-format
msgid "Userdrake"
msgstr "Userdrake"
-#: ../tools/draksambashare:1202
+#: ../bin/draksambashare:1203
#, c-format
msgid "Samba Users"
msgstr ""
-#: ../tools/draksambashare:1211
+#: ../bin/draksambashare:1212
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""
@@ -4344,17 +2223,17 @@ msgstr ""
# it displays on screen as "(US) Dvorak", following the same schema
# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
# that way the entry is also listed together with the other "Dvorak" entries.
-#: ../tools/drakvpn-old:65
+#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr "DrakVPN"
-#: ../tools/drakvpn-old:87
+#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr "اتّصال VPN مُمكّن."
-#: ../tools/drakvpn-old:88
+#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4369,37 +2248,37 @@ msgstr ""
"\n"
"ما الذي ترغب بعمله؟"
-#: ../tools/drakvpn-old:93
+#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr "تعطيل"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr "إعادة التهيئة"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119 ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr "صَرْف"
-#: ../tools/drakvpn-old:97
+#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr "جاري تعطيل VPN..."
-#: ../tools/drakvpn-old:106
+#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr "تمّ الآن تعطيل اتّصال VPN."
-#: ../tools/drakvpn-old:113
+#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr "اتصال VPN مُعطّل حاليّاً"
-#: ../tools/drakvpn-old:114
+#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4414,27 +2293,27 @@ msgstr ""
"\n"
"ما الذي ترغب بعمله؟"
-#: ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr "تمكين"
-#: ../tools/drakvpn-old:127
+#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr "جاري تمكين VPN..."
-#: ../tools/drakvpn-old:133
+#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr "تمّ الآن تمكين اتّصال VPN."
-#: ../tools/drakvpn-old:147 ../tools/drakvpn-old:164
+#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr "إعداد VPN بسيط."
-#: ../tools/drakvpn-old:148
+#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
@@ -4461,7 +2340,7 @@ msgstr ""
"تأكّد من أنّك قمت بتهيئة شبكتك/واتصال الانترنت باستخدام\n"
"drakconnect قبل الاستمرار."
-#: ../tools/drakvpn-old:165
+#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
@@ -4488,27 +2367,27 @@ msgstr ""
"رجاء اقرأ على الأقل مستندات ipsec-howto\n"
"قبل الشّروع بالعمل."
-#: ../tools/drakvpn-old:208
+#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr "سياسات الأمن"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr "racoon عفريت IKE"
-#: ../tools/drakvpn-old:224
+#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr "ملف التهيئة"
-#: ../tools/drakvpn-old:225
+#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
@@ -4527,12 +2406,12 @@ msgstr ""
"\n"
"ما الذي تودّ تهيئته؟\n"
-#: ../tools/drakvpn-old:245 ../tools/drakvpn-old:382
+#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr "مُدخلات %s"
-#: ../tools/drakvpn-old:246
+#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
@@ -4554,32 +2433,32 @@ msgstr ""
" - commit تسجيل التغييرات\n"
"ماذا تودّ أن تفعل؟\n"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr "عرض"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "تحرير"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr "تنفيذ"
-#: ../tools/drakvpn-old:267 ../tools/drakvpn-old:271 ../tools/drakvpn-old:406
-#: ../tools/drakvpn-old:410
+#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
+#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr "عرض التهيئة"
-#: ../tools/drakvpn-old:272
+#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
@@ -4594,7 +2473,7 @@ msgstr ""
"\n"
"عليك أن تعود وتختار `إضافة`.\n"
-#: ../tools/drakvpn-old:301
+#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
@@ -4609,12 +2488,12 @@ msgstr ""
"\n"
"اختر الاستمرار عندما تنتهي لكتابة البيانات.\n"
-#: ../tools/drakvpn-old:333 ../tools/drakvpn-old:523
+#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr "حرّر القسم"
-#: ../tools/drakvpn-old:334
+#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4628,13 +2507,13 @@ msgstr ""
"\n"
"ثم اضغط التالي.\n"
-#: ../tools/drakvpn-old:337 ../tools/drakvpn-old:357 ../tools/drakvpn-old:528
-#: ../tools/drakvpn-old:574
+#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
+#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr "أسماء الأقسام"
-#: ../tools/drakvpn-old:344
+#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
@@ -4649,12 +2528,12 @@ msgstr ""
"\n"
"اختر الاستمرار عندما تنتهي من كتابة البيانات.\n"
-#: ../tools/drakvpn-old:353 ../tools/drakvpn-old:570
+#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr "حذف القسم"
-#: ../tools/drakvpn-old:354 ../tools/drakvpn-old:571
+#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4667,7 +2546,7 @@ msgstr ""
"يمكنك الاختيار أدناه الأقسام التي تريد أن تزيلها\n"
"ثم الضغط على التالي.\n"
-#: ../tools/drakvpn-old:383
+#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
@@ -4690,7 +2569,7 @@ msgstr ""
" - remove \t\t (إزالة قسم موجود)\n"
" - commit \t\t (كتابة التغييرات إلى الملفّ الحقيق)"
-#: ../tools/drakvpn-old:411
+#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
@@ -4705,12 +2584,12 @@ msgstr ""
"\n"
"عليك أن تعود وتختار تهيئة.\n"
-#: ../tools/drakvpn-old:425
+#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr "مُدخلات racoon.conf"
-#: ../tools/drakvpn-old:426
+#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
@@ -4731,22 +2610,22 @@ msgstr ""
"\n"
"اختر القسم الذي تريد إضافته.\n"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr "path"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr "remote"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr "sainfo"
-#: ../tools/drakvpn-old:440
+#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
@@ -4761,12 +2640,12 @@ msgstr ""
"\n"
"ضع مؤشّر الماوس على مُدخل الشّهادة للحصول على المساعدة الفوريّة."
-#: ../tools/drakvpn-old:443
+#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr "path type"
-#: ../tools/drakvpn-old:447
+#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
@@ -4809,12 +2688,12 @@ msgstr ""
"مكوناً من المعرّف والمفتاح السري المتشارك والذان يستخدمان في\n"
"المرحلة الأولى لوسيلة مواثقة المفتاح المتشارك مسبقاً."
-#: ../tools/drakvpn-old:467 ../tools/drakvpn-old:560
+#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr "real file"
-#: ../tools/drakvpn-old:490
+#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4829,7 +2708,7 @@ msgstr ""
"يمكنك الآن اختيار الإعدادات البعيدة.\n"
"اختر الاستمرار أو السابق عندما تنتهي.\n"
-#: ../tools/drakvpn-old:507
+#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4844,7 +2723,7 @@ msgstr ""
"يمكنك الآن اختيار إعدادات sainfo.\n"
"اختر الاستمرار أو السابق عندما تنتهي.\n"
-#: ../tools/drakvpn-old:524
+#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4857,7 +2736,7 @@ msgstr ""
"يمكن الاختيار من هنا من اللّائحة أدناه المُدخل الذي تريد\n"
"تحريره ثمّ اضغط على التالي.\n"
-#: ../tools/drakvpn-old:535
+#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4874,7 +2753,7 @@ msgstr ""
"\n"
"اختر الاستمرار عندما تنتهي من كتابة البيانات.\n"
-#: ../tools/drakvpn-old:544
+#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4889,7 +2768,7 @@ msgstr ""
"\n"
"اختر الاستمرار عندما تنتهي من كتابة البيانات."
-#: ../tools/drakvpn-old:552
+#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
@@ -4912,17 +2791,17 @@ msgstr ""
"\n"
"اختر الاستمرار أو السّابق عندما تنتهي.\n"
-#: ../tools/drakvpn-old:559
+#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr "path_type"
-#: ../tools/drakvpn-old:599
+#: ../bin/drakvpn-old:599
#, c-format
msgid "Congratulations!"
msgstr "تهانينا!"
-#: ../tools/drakvpn-old:600
+#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -4941,12 +2820,12 @@ msgstr ""
"عليك التّأكّد من أنّ قسم shorewall الخاصّ بالأنفاق\n"
"مهيّأ."
-#: ../tools/drakvpn-old:620
+#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""
-#: ../tools/drakvpn-old:621
+#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4987,12 +2866,12 @@ msgstr ""
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.1.0/24 هو عنوان المصدر"
-#: ../tools/drakvpn-old:638
+#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr "البروتوكول المصدر لـSainfo"
-#: ../tools/drakvpn-old:639
+#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -5027,12 +2906,12 @@ msgstr ""
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\t'any' الأولى تسمح باستخدام أي بروتوكول للمصدر"
-#: ../tools/drakvpn-old:653
+#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr "العنوان الوجهة لـSainfo"
-#: ../tools/drakvpn-old:654
+#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -5073,12 +2952,12 @@ msgstr ""
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.2.0/24 هو العنوان الهدف"
-#: ../tools/drakvpn-old:671
+#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr "البروتوكول الوجهة لـSainfo"
-#: ../tools/drakvpn-old:672
+#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -5113,12 +2992,12 @@ msgstr ""
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\t'any' الأخيرة تسمح باستخدام أي بروتوكول للهدف"
-#: ../tools/drakvpn-old:686
+#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr "مجموعة PFS"
-#: ../tools/drakvpn-old:688
+#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
@@ -5133,12 +3012,12 @@ msgstr ""
"المجموعة هي أحد التّالي: modp768، modp1024، mod1536.\n"
"أو يمكنك تعريف 1، 2، أو 5 كرقم مجموعة DH."
-#: ../tools/drakvpn-old:693
+#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr "رقم Lifetime"
-#: ../tools/drakvpn-old:694
+#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -5175,12 +3054,12 @@ msgstr ""
"\n"
"إذاً، هنا، أرقام العُمر هي 1، 1، 30، 30، 60 و 12.\n"
-#: ../tools/drakvpn-old:710
+#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr "وحْدة Lifetime"
-#: ../tools/drakvpn-old:712
+#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -5218,32 +3097,32 @@ msgstr ""
"\n"
"إذا، هنا، وحدات العُمر هي 'min'، 'min'، 'sec'، 'sec'، 'sec' و 'hour'.\n"
-#: ../tools/drakvpn-old:728 ../tools/drakvpn-old:813
+#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, c-format
msgid "Encryption algorithm"
msgstr "خوارزمية التّشفير"
-#: ../tools/drakvpn-old:730
+#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr "خوارزمية المواثقة"
-#: ../tools/drakvpn-old:732
+#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr "خوارزميّة الضّغط"
-#: ../tools/drakvpn-old:733
+#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr "تفريغ"
-#: ../tools/drakvpn-old:740
+#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr "بعيد"
-#: ../tools/drakvpn-old:741
+#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
@@ -5268,12 +3147,12 @@ msgstr ""
"remote anonymous\n"
"remote ::1 [8000]"
-#: ../tools/drakvpn-old:749
+#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr "نمط المقايضة"
-#: ../tools/drakvpn-old:751
+#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
@@ -5290,22 +3169,22 @@ msgstr ""
"مقبولة. وضع المقايضة الأول هو الذي\n"
"يستخدمه racoon عندما يكون هو البادئ.\n"
-#: ../tools/drakvpn-old:757
+#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr "توليد السياسة"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr "متوقف"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "يعمل"
-#: ../tools/drakvpn-old:759
+#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder. Therefore you\n"
@@ -5338,12 +3217,12 @@ msgstr ""
"والمُجيب. يتمّ تجاهل هذا المُوجِّه في\n"
"حالة المُبتدِئ. القيمة الافتراضيّة هي غير مستخدَم."
-#: ../tools/drakvpn-old:773
+#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr "سلبي"
-#: ../tools/drakvpn-old:775
+#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
@@ -5354,47 +3233,47 @@ msgstr ""
"باختياره. القيمة الافتراضيّة هي غير محدّد. وهي مفيدة\n"
"للخادم."
-#: ../tools/drakvpn-old:778
+#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr "نوع الشّهادة"
-#: ../tools/drakvpn-old:780
+#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr "ملفّ certfile الخاص بي"
-#: ../tools/drakvpn-old:781
+#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr "اسم الشّهادة"
-#: ../tools/drakvpn-old:782
+#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr "مفتاحي الخاصّ"
-#: ../tools/drakvpn-old:783
+#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr "اسم المفتاح الخاصّ"
-#: ../tools/drakvpn-old:784
+#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr "ملف شهادة النّظراء"
-#: ../tools/drakvpn-old:785
+#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr "اسم شهادة النظراء"
-#: ../tools/drakvpn-old:786
+#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr "تحقّق من الشّهادة"
-#: ../tools/drakvpn-old:788
+#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
@@ -5403,12 +3282,12 @@ msgstr ""
"إن كنت لا تريد التحقّق من شهادة النّظير\n"
"لسبب ما، لا تستخدم هذا الخيار. الوضع الافتراضي هو استخدامه."
-#: ../tools/drakvpn-old:790
+#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr "مُعرّفي"
-#: ../tools/drakvpn-old:791
+#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
@@ -5457,17 +3336,17 @@ msgstr ""
"\n"
"my_identifier user_fqdn \"myemail@mydomain.com\""
-#: ../tools/drakvpn-old:811
+#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr "معرّف النّظراء"
-#: ../tools/drakvpn-old:812
+#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr "إقتراح"
-#: ../tools/drakvpn-old:814
+#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
@@ -5486,332 +3365,334 @@ msgstr ""
"\n"
"للتّحويلات الأخرى، لا يجب أن تستخدم هذه العبارة."
-#: ../tools/drakvpn-old:821
+#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr "خوارزمية Hash"
-#: ../tools/drakvpn-old:822
+#: ../bin/drakvpn-old:822
#, c-format
msgid "Authentication method"
msgstr "طريقة المواثقة"
-#: ../tools/drakvpn-old:823
+#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr "مجموعة DH"
-#: ../tools/drakvpn-old:830
+#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "الأمر"
-#: ../tools/drakvpn-old:831
+#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr "مدى عناوين IP للمصدر"
-#: ../tools/drakvpn-old:832
+#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr "مدى عناوين IP للهدف"
-#: ../tools/drakvpn-old:833
+#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr "بروتوكول الطّبقة العليا"
-#: ../tools/drakvpn-old:833 ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr "أيّها"
-#: ../tools/drakvpn-old:835
+#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "العلامة"
-#: ../tools/drakvpn-old:836
+#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "الاتجاه"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr "سياسة IPsec"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr "ipsec"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr "تجاهل"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "الوضع"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr "نفق"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr "نقل"
-#: ../tools/drakvpn-old:842
+#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr "المصدر/الوجهة"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "المستوى"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr "طلب"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "الافتراضي"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr "استخدام"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr "فريد"
-#: ../tools/net_applet:61
+#: ../bin/net_applet:62
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "الشّبكة متصلة على الواجهة %s"
-#: ../tools/net_applet:62
+#: ../bin/net_applet:63
#, c-format
msgid "IP address: %s"
msgstr "عنوان IP: %s"
-#: ../tools/net_applet:63
+#: ../bin/net_applet:64
#, c-format
msgid "Gateway: %s"
msgstr "البوابة: %s"
-#: ../tools/net_applet:64
+#: ../bin/net_applet:65
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""
-#: ../tools/net_applet:66
+#: ../bin/net_applet:67
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "الشّبكة متصلة على الواجهة %s"
-#: ../tools/net_applet:74 ../tools/net_monitor:468
+#: ../bin/net_applet:75 ../bin/net_monitor:468
#, c-format
msgid "Connect %s"
msgstr "اتصال بـ%s"
-#: ../tools/net_applet:75 ../tools/net_monitor:468
+#: ../bin/net_applet:76 ../bin/net_monitor:468
#, c-format
msgid "Disconnect %s"
msgstr "قطع الإتصال بـ %s"
-#: ../tools/net_applet:76
+#: ../bin/net_applet:77
#, c-format
msgid "Monitor Network"
msgstr "مراقبة الشّبكة"
-#: ../tools/net_applet:78
+#: ../bin/net_applet:79
#, c-format
msgid "Manage wireless networks"
msgstr ""
-#: ../tools/net_applet:80
+#: ../bin/net_applet:81
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "إدارة الاتّصالات"
-#: ../tools/net_applet:84
+#: ../bin/net_applet:85
#, c-format
msgid "Configure Network"
msgstr "تهيئة الشبكة"
-#: ../tools/net_applet:86
+#: ../bin/net_applet:87
#, fuzzy, c-format
msgid "Watched interface"
msgstr "interfaces"
-#: ../tools/net_applet:87 ../tools/net_applet:88 ../tools/net_applet:90
+#: ../bin/net_applet:88 ../bin/net_applet:89 ../bin/net_applet:91
#, c-format
msgid "Auto-detect"
msgstr "تحقق آلي"
-#: ../tools/net_applet:95
+#: ../bin/net_applet:96
#, c-format
msgid "Active interfaces"
msgstr ""
-#: ../tools/net_applet:119
+#: ../bin/net_applet:120
#, c-format
msgid "Profiles"
msgstr "لمحات مختصرة"
-#: ../tools/net_applet:137
-#, c-format
-msgid "Get Online Help"
-msgstr "الحصول على مساعدة على الخطّ"
+#: ../bin/net_applet:130 ../lib/network/connection.pm:149
+#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
+#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
+#, fuzzy, c-format
+msgid "VPN connection"
+msgstr "وصلة LAN"
-#: ../tools/net_applet:318
+#: ../bin/net_applet:319
#, fuzzy, c-format
msgid "Network connection"
msgstr "خيارات الشبكة"
-#: ../tools/net_applet:438
+#: ../bin/net_applet:443
#, c-format
msgid "More networks"
msgstr ""
-#: ../tools/net_applet:465
+#: ../bin/net_applet:470
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: ../tools/net_applet:470
+#: ../bin/net_applet:475
#, c-format
msgid "Always launch on startup"
msgstr "إطلاق دائما عند البدء"
-#: ../tools/net_applet:475
+#: ../bin/net_applet:480
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "اتّصال لاسلكي"
-#: ../tools/net_applet:482 ../tools/net_monitor:96
+#: ../bin/net_applet:487 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "الإعدادات"
-#: ../tools/net_applet:557
+#: ../bin/net_applet:562
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "الجدار الناري النشط: تم اكتشاف تدخّل اقتحام"
-#: ../tools/net_applet:574
+#: ../bin/net_applet:579
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "هل تريد إضافة المهاجم إلى القائمة السوداء؟"
-#: ../tools/net_applet:577
+#: ../bin/net_applet:582
#, c-format
msgid "Attack details"
msgstr "تفاصيل الهجوم"
-#: ../tools/net_applet:581
+#: ../bin/net_applet:586
#, c-format
msgid "Attack time: %s"
msgstr "وقت الهجوم: %s"
-#: ../tools/net_applet:582
+#: ../bin/net_applet:587
#, c-format
msgid "Network interface: %s"
msgstr "واجهة الشبكة: %s"
-#: ../tools/net_applet:583
+#: ../bin/net_applet:588
#, c-format
msgid "Attack type: %s"
msgstr "نوع الهجوم: %s"
-#: ../tools/net_applet:584
+#: ../bin/net_applet:589
#, c-format
msgid "Protocol: %s"
msgstr "البروتوكول: %s"
-#: ../tools/net_applet:585
+#: ../bin/net_applet:590
#, c-format
msgid "Attacker IP address: %s"
msgstr "عنوان IP للمهاجم: %s"
-#: ../tools/net_applet:586
+#: ../bin/net_applet:591
#, c-format
msgid "Attacker hostname: %s"
msgstr "اسم المضيف للمهاجم: %s"
-#: ../tools/net_applet:589
+#: ../bin/net_applet:594
#, c-format
msgid "Service attacked: %s"
msgstr "الخدمة المُهاجمة: %s"
-#: ../tools/net_applet:590
+#: ../bin/net_applet:595
#, c-format
msgid "Port attacked: %s"
msgstr "المنفذ المُهاجم: %s"
-#: ../tools/net_applet:592
+#: ../bin/net_applet:597
#, c-format
msgid "Type of ICMP attack: %s"
msgstr "نوع هجوم ICMP: %s"
-#: ../tools/net_applet:597
+#: ../bin/net_applet:602
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr "إضافة إلى القائمة السوداء دائماً (دون السؤال مجدداً)"
-#: ../tools/net_applet:612
+#: ../bin/net_applet:617
#, c-format
msgid "Ignore"
msgstr "تجاهل"
-#: ../tools/net_applet:630 ../tools/net_applet:643
+#: ../bin/net_applet:635 ../bin/net_applet:648
#, fuzzy, c-format
msgid "Interactive Firewall: new service"
msgstr "الجدار الناري النشط: تم اكتشاف تدخّل اقتحام"
-#: ../tools/net_applet:654
+#: ../bin/net_applet:658
#, fuzzy, c-format
msgid "Do you want to open this service?"
msgstr "هل تريد تهيئته الآن؟"
-#: ../tools/net_applet:657
+#: ../bin/net_applet:661
#, fuzzy, c-format
msgid "Remember this answer"
msgstr "تذكّر كلمة السر هذه"
-#: ../tools/net_monitor:60 ../tools/net_monitor:65
+#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, c-format
msgid "Network Monitoring"
msgstr "مراقبة الشبكة"
-#: ../tools/net_monitor:101
+#: ../bin/net_monitor:101
#, c-format
msgid "Global statistics"
msgstr "الإحصائيات الشّاملة"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr "آنيّ"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Average"
msgstr "المتوسّط"
-#: ../tools/net_monitor:105
+#: ../bin/net_monitor:105
#, c-format
msgid ""
"Sending\n"
@@ -5820,12 +3701,12 @@ msgstr ""
"سرعة\n"
"الإرسال:"
-#: ../tools/net_monitor:105 ../tools/net_monitor:106 ../tools/net_monitor:111
+#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "مجهول"
-#: ../tools/net_monitor:106
+#: ../bin/net_monitor:106
#, c-format
msgid ""
"Receiving\n"
@@ -5834,7 +3715,7 @@ msgstr ""
"سرعة\n"
"الاستقبال:"
-#: ../tools/net_monitor:110
+#: ../bin/net_monitor:110
#, c-format
msgid ""
"Connection\n"
@@ -5843,42 +3724,42 @@ msgstr ""
"زمن\n"
"الاتصال:"
-#: ../tools/net_monitor:117
+#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr "استخدام نفس المقياس للمستقبَل وللمرسَل"
-#: ../tools/net_monitor:136
+#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr "الرجاء الانتظار، اختبار الإتصال..."
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Disconnecting from Internet "
msgstr "قطع الاتصال بالإنترنت"
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Connecting to Internet "
msgstr "جاري الاتصال بالإنترنت"
-#: ../tools/net_monitor:229
+#: ../bin/net_monitor:229
#, c-format
msgid "Disconnection from Internet failed."
msgstr "فشل قطع اتصال الإنترنت."
-#: ../tools/net_monitor:230
+#: ../bin/net_monitor:230
#, c-format
msgid "Disconnection from Internet complete."
msgstr "تمّ قطع اتصال الإنترنت."
-#: ../tools/net_monitor:232
+#: ../bin/net_monitor:232
#, c-format
msgid "Connection complete."
msgstr "تم الإتصال."
-#: ../tools/net_monitor:233
+#: ../bin/net_monitor:233
#, c-format
msgid ""
"Connection failed.\n"
@@ -5887,39 +3768,2173 @@ msgstr ""
"فشل الاتّصال.\n"
"تحقق من تهيئتك في مركز تحكّم ماندريبا لينكس."
-#: ../tools/net_monitor:338
+#: ../bin/net_monitor:338
#, c-format
msgid "Color configuration"
msgstr "تهيئة الألوان"
-#: ../tools/net_monitor:395 ../tools/net_monitor:407
+#: ../bin/net_monitor:395 ../bin/net_monitor:407
#, c-format
msgid "sent: "
msgstr "مُرسل: "
-#: ../tools/net_monitor:398 ../tools/net_monitor:411
+#: ../bin/net_monitor:398 ../bin/net_monitor:411
#, c-format
msgid "received: "
msgstr "مُستقبل: "
-#: ../tools/net_monitor:401
+#: ../bin/net_monitor:401
#, c-format
msgid "average"
msgstr "متوسط"
-#: ../tools/net_monitor:404
+#: ../bin/net_monitor:404
#, c-format
msgid "Local measure"
msgstr "إجراء محلي"
-#: ../tools/net_monitor:461
+#: ../bin/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr "تحذير، تم اكتشاف اتصال إنترنت آخر، ربما يستخدم شبكتك"
-#: ../tools/net_monitor:472
+#: ../bin/net_monitor:472
#, c-format
msgid "No internet connection configured"
msgstr "ليس هناك أي اتصال إنترنت مهيأ"
+
+#: ../lib/network/connection.pm:16
+#, c-format
+msgid "Unknown connection type"
+msgstr "نوع وصلة مجهول"
+
+#: ../lib/network/connection.pm:115
+#, c-format
+msgid "Network access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:116
+#, c-format
+msgid "Access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:117
+#, c-format
+msgid "Address settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
+#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
+#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
+#, c-format
+msgid "None"
+msgstr "لاشيء"
+
+#: ../lib/network/connection.pm:163
+#, c-format
+msgid "Allow users to manage the connection"
+msgstr ""
+
+#: ../lib/network/connection.pm:164
+#, c-format
+msgid "Start the connection at boot"
+msgstr ""
+
+#: ../lib/network/connection.pm:230
+#, fuzzy, c-format
+msgid "Link detected on interface %s"
+msgstr "(اكتشاف على المنفذ %s)"
+
+#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:273
+#, c-format
+msgid "Link beat lost on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:13
+#, c-format
+msgid "Cable"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:14
+#, fuzzy, c-format
+msgid "Cable modem"
+msgstr "نوع البطاقة"
+
+#: ../lib/network/connection/cable.pm:45
+#, c-format
+msgid "Use BPALogin (needed for Telstra)"
+msgstr "استخدام BPALogin )مطلوبة لـTelstra)"
+
+#: ../lib/network/connection/cellular.pm:47
+#, c-format
+msgid "Access Point Name"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:10
+#, c-format
+msgid "Bluetooth"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:11
+#, c-format
+msgid "Bluetooth Dial Up Networking"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:8
+#, c-format
+msgid "GPRS/Edge/3G"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:67
+#: ../lib/network/vpn/openvpn.pm:391
+#, c-format
+msgid "PIN number"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:130
+#, fuzzy, c-format
+msgid "Unable to open device %s"
+msgstr "تعذر تنفيذ: %s"
+
+#: ../lib/network/connection/cellular_card.pm:155
+#, fuzzy, c-format
+msgid "Please check that your SIM card is inserted."
+msgstr ""
+"\n"
+"فضلاً قم بالتأشير على الخيارات التي تحتاجها.\n"
+
+#: ../lib/network/connection/cellular_card.pm:161
+#, c-format
+msgid ""
+"You entered a wrong PIN code.\n"
+"Entering the wrong PIN code multiple times may lock your SIM card!"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:12
+#, c-format
+msgid "DVB"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:13
+#, c-format
+msgid "Satellite (DVB)"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:56
+#, c-format
+msgid "Adapter card"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:57
+#, c-format
+msgid "Net demux"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:58
+#, c-format
+msgid "PID"
+msgstr "رمز المهمة"
+
+#: ../lib/network/connection/ethernet.pm:10
+#, c-format
+msgid "Ethernet"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:53
+#, c-format
+msgid "Unable to find network interface for selected device (using %s driver)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#, c-format
+msgid "Manual configuration"
+msgstr "تهيئة يدوية"
+
+#: ../lib/network/connection/ethernet.pm:62
+#, c-format
+msgid "Automatic IP (BOOTP/DHCP)"
+msgstr "IP آلي (BOOTP/DHCP)"
+
+#: ../lib/network/connection/ethernet.pm:116
+#, fuzzy, c-format
+msgid "IP settings"
+msgstr "إعداد PLL:"
+
+#: ../lib/network/connection/ethernet.pm:129
+#, 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)."
+msgstr ""
+"الرجاء إدخال تهيئة IP الخاصة بهذه الماكينة.\n"
+"كل مادة يجب إدخالها كعنوان IP بشكل منقوط\n"
+"(مثلاً، 1.2.3.4(."
+
+#: ../lib/network/connection/ethernet.pm:138
+#, c-format
+msgid "DNS server 1"
+msgstr "خادم DNS 1"
+
+#: ../lib/network/connection/ethernet.pm:139
+#, c-format
+msgid "DNS server 2"
+msgstr "خادم DNS 2"
+
+#: ../lib/network/connection/ethernet.pm:140
+#, c-format
+msgid "Search domain"
+msgstr "نطاق البحث"
+
+#: ../lib/network/connection/ethernet.pm:141
+#, c-format
+msgid "By default search domain will be set from the fully-qualified host name"
+msgstr "بشكل افتراضي سيتمّ تحديد نطاق البحث من اسم المضيف المهيّء بالكامل"
+
+#: ../lib/network/connection/ethernet.pm:149
+#, c-format
+msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:170
+#, c-format
+msgid "Warning: IP address %s is usually reserved!"
+msgstr "تحذير: عنوان الـ IP %s عادة ما يكون محفوظاً!"
+
+#: ../lib/network/connection/ethernet.pm:176
+#, c-format
+msgid "%s already in use\n"
+msgstr "%s قيد الاستخدام مسبقاً\n"
+
+#: ../lib/network/connection/ethernet.pm:224
+#, c-format
+msgid "Enable IPv6 to IPv4 tunnel"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:272
+#, c-format
+msgid "Link beat detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:275
+#, c-format
+msgid "Requesting a network address on interface %s (%s protocol)..."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:276
+#, c-format
+msgid "Got a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:277
+#, c-format
+msgid "Failed to get a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:8
+#, c-format
+msgid "ISDN"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
+#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
+#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
+#: ../lib/network/netconnect.pm:562
+#, c-format
+msgid "Unlisted - edit manually"
+msgstr "غير مُسرد - عدّل يدويّاً"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "I do not know"
+msgstr "لا أعرف "
+
+#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "USB"
+msgstr "USB"
+
+#. -PO: POTS means "Plain old telephone service"
+#: ../lib/network/connection/pots.pm:10
+#, c-format
+msgid "POTS"
+msgstr ""
+
+#. -PO: POTS means "Plain old telephone service"
+#. -PO: remove it if it doesn't have an equivalent in your language
+#. -PO: for example, in French, it can be translated as "RTC"
+#: ../lib/network/connection/pots.pm:16
+#, c-format
+msgid "Analog telephone modem (POTS)"
+msgstr ""
+
+#: ../lib/network/connection/providers/cellular.pm:13
+#: ../lib/network/connection/providers/cellular.pm:18
+#: ../lib/network/connection/providers/cellular.pm:23
+#: ../lib/network/connection/providers/xdsl.pm:492
+#: ../lib/network/connection/providers/xdsl.pm:504
+#: ../lib/network/connection/providers/xdsl.pm:516
+#: ../lib/network/connection/providers/xdsl.pm:528
+#: ../lib/network/connection/providers/xdsl.pm:539
+#: ../lib/network/connection/providers/xdsl.pm:551
+#: ../lib/network/connection/providers/xdsl.pm:563
+#: ../lib/network/connection/providers/xdsl.pm:575
+#: ../lib/network/connection/providers/xdsl.pm:588
+#: ../lib/network/connection/providers/xdsl.pm:599
+#: ../lib/network/connection/providers/xdsl.pm:610
+#: ../lib/network/netconnect.pm:33
+#, c-format
+msgid "France"
+msgstr "فرنسا"
+
+#: ../lib/network/connection/providers/xdsl.pm:47
+#: ../lib/network/connection/providers/xdsl.pm:57
+#, c-format
+msgid "Algeria"
+msgstr "الجزائر"
+
+#: ../lib/network/connection/providers/xdsl.pm:67
+#: ../lib/network/connection/providers/xdsl.pm:77
+#, c-format
+msgid "Argentina"
+msgstr "الأرجنتين "
+
+#: ../lib/network/connection/providers/xdsl.pm:87
+#: ../lib/network/connection/providers/xdsl.pm:96
+#: ../lib/network/connection/providers/xdsl.pm:105
+#, c-format
+msgid "Austria"
+msgstr "النمسا"
+
+#: ../lib/network/connection/providers/xdsl.pm:114
+#: ../lib/network/connection/providers/xdsl.pm:124
+#: ../lib/network/connection/providers/xdsl.pm:134
+#, c-format
+msgid "Australia"
+msgstr "أوستراليا"
+
+#: ../lib/network/connection/providers/xdsl.pm:144
+#: ../lib/network/connection/providers/xdsl.pm:153
+#: ../lib/network/connection/providers/xdsl.pm:164
+#: ../lib/network/connection/providers/xdsl.pm:173
+#: ../lib/network/connection/providers/xdsl.pm:182
+#: ../lib/network/netconnect.pm:36
+#, c-format
+msgid "Belgium"
+msgstr "بلجيكا"
+
+#: ../lib/network/connection/providers/xdsl.pm:191
+#: ../lib/network/connection/providers/xdsl.pm:201
+#: ../lib/network/connection/providers/xdsl.pm:210
+#: ../lib/network/connection/providers/xdsl.pm:219
+#, c-format
+msgid "Brazil"
+msgstr "البرازيل"
+
+#: ../lib/network/connection/providers/xdsl.pm:228
+#: ../lib/network/connection/providers/xdsl.pm:237
+#, c-format
+msgid "Bulgaria"
+msgstr "بلغاريا"
+
+#: ../lib/network/connection/providers/xdsl.pm:246
+#: ../lib/network/connection/providers/xdsl.pm:255
+#: ../lib/network/connection/providers/xdsl.pm:264
+#: ../lib/network/connection/providers/xdsl.pm:273
+#: ../lib/network/connection/providers/xdsl.pm:282
+#: ../lib/network/connection/providers/xdsl.pm:291
+#: ../lib/network/connection/providers/xdsl.pm:300
+#: ../lib/network/connection/providers/xdsl.pm:309
+#: ../lib/network/connection/providers/xdsl.pm:318
+#: ../lib/network/connection/providers/xdsl.pm:327
+#: ../lib/network/connection/providers/xdsl.pm:336
+#: ../lib/network/connection/providers/xdsl.pm:345
+#: ../lib/network/connection/providers/xdsl.pm:354
+#: ../lib/network/connection/providers/xdsl.pm:363
+#: ../lib/network/connection/providers/xdsl.pm:372
+#: ../lib/network/connection/providers/xdsl.pm:381
+#: ../lib/network/connection/providers/xdsl.pm:390
+#: ../lib/network/connection/providers/xdsl.pm:399
+#: ../lib/network/connection/providers/xdsl.pm:408
+#: ../lib/network/connection/providers/xdsl.pm:417
+#, c-format
+msgid "China"
+msgstr "الصين"
+
+#: ../lib/network/connection/providers/xdsl.pm:426
+#: ../lib/network/connection/providers/xdsl.pm:436
+#, c-format
+msgid "Czech Republic"
+msgstr "جمهورية التشيك"
+
+#: ../lib/network/connection/providers/xdsl.pm:446
+#: ../lib/network/connection/providers/xdsl.pm:455
+#: ../lib/network/connection/providers/xdsl.pm:464
+#, c-format
+msgid "Denmark"
+msgstr "الدنمارك"
+
+#: ../lib/network/connection/providers/xdsl.pm:473
+#, c-format
+msgid "Egypt"
+msgstr "مصر"
+
+#: ../lib/network/connection/providers/xdsl.pm:483
+#, c-format
+msgid "Finland"
+msgstr "فنلندا"
+
+#: ../lib/network/connection/providers/xdsl.pm:621
+#: ../lib/network/connection/providers/xdsl.pm:630
+#: ../lib/network/connection/providers/xdsl.pm:640
+#, c-format
+msgid "Germany"
+msgstr "ألمانيا"
+
+#: ../lib/network/connection/providers/xdsl.pm:650
+#, c-format
+msgid "Greece"
+msgstr "اليونان"
+
+#: ../lib/network/connection/providers/xdsl.pm:659
+#, c-format
+msgid "Hungary"
+msgstr "المجر"
+
+#: ../lib/network/connection/providers/xdsl.pm:668
+#, c-format
+msgid "Ireland"
+msgstr "أيرلندا"
+
+#: ../lib/network/connection/providers/xdsl.pm:677
+#, c-format
+msgid "Israel"
+msgstr "اسرائيل"
+
+#: ../lib/network/connection/providers/xdsl.pm:687
+#, c-format
+msgid "India"
+msgstr "الهند"
+
+#: ../lib/network/connection/providers/xdsl.pm:696
+#: ../lib/network/connection/providers/xdsl.pm:705
+#, c-format
+msgid "Iceland"
+msgstr "آيسلندا"
+
+#: ../lib/network/connection/providers/xdsl.pm:714
+#: ../lib/network/connection/providers/xdsl.pm:725
+#: ../lib/network/connection/providers/xdsl.pm:735
+#: ../lib/network/connection/providers/xdsl.pm:746
+#: ../lib/network/netconnect.pm:35
+#, c-format
+msgid "Italy"
+msgstr "إيطاليا"
+
+#: ../lib/network/connection/providers/xdsl.pm:758
+#, c-format
+msgid "Sri Lanka"
+msgstr "سريلانكا"
+
+#: ../lib/network/connection/providers/xdsl.pm:770
+#, c-format
+msgid "Lithuania"
+msgstr "ليتوانيا"
+
+#: ../lib/network/connection/providers/xdsl.pm:779
+#: ../lib/network/connection/providers/xdsl.pm:789
+#, c-format
+msgid "Mauritius"
+msgstr "موريشيوس"
+
+#: ../lib/network/connection/providers/xdsl.pm:800
+#, c-format
+msgid "Morocco"
+msgstr "المغرب"
+
+#: ../lib/network/connection/providers/xdsl.pm:810
+#: ../lib/network/connection/providers/xdsl.pm:819
+#: ../lib/network/connection/providers/xdsl.pm:828
+#: ../lib/network/connection/providers/xdsl.pm:837
+#: ../lib/network/netconnect.pm:34
+#, c-format
+msgid "Netherlands"
+msgstr "هولندا"
+
+#: ../lib/network/connection/providers/xdsl.pm:846
+#: ../lib/network/connection/providers/xdsl.pm:852
+#: ../lib/network/connection/providers/xdsl.pm:858
+#: ../lib/network/connection/providers/xdsl.pm:864
+#: ../lib/network/connection/providers/xdsl.pm:870
+#: ../lib/network/connection/providers/xdsl.pm:876
+#: ../lib/network/connection/providers/xdsl.pm:882
+#, c-format
+msgid "Norway"
+msgstr "النرويج"
+
+#: ../lib/network/connection/providers/xdsl.pm:890
+#, c-format
+msgid "Pakistan"
+msgstr "باكستان"
+
+#: ../lib/network/connection/providers/xdsl.pm:901
+#: ../lib/network/connection/providers/xdsl.pm:911
+#, c-format
+msgid "Poland"
+msgstr "بولندا"
+
+#: ../lib/network/connection/providers/xdsl.pm:922
+#, c-format
+msgid "Portugal"
+msgstr "البرتغال"
+
+#: ../lib/network/connection/providers/xdsl.pm:931
+#, c-format
+msgid "Russia"
+msgstr "روسيا"
+
+#: ../lib/network/connection/providers/xdsl.pm:942
+#, c-format
+msgid "Singapore"
+msgstr "سنغافورة"
+
+#: ../lib/network/connection/providers/xdsl.pm:951
+#, c-format
+msgid "Senegal"
+msgstr "السنغال"
+
+#: ../lib/network/connection/providers/xdsl.pm:961
+#, c-format
+msgid "Slovenia"
+msgstr "سلوفينيا"
+
+#: ../lib/network/connection/providers/xdsl.pm:972
+#: ../lib/network/connection/providers/xdsl.pm:984
+#: ../lib/network/connection/providers/xdsl.pm:996
+#: ../lib/network/connection/providers/xdsl.pm:1009
+#: ../lib/network/connection/providers/xdsl.pm:1019
+#: ../lib/network/connection/providers/xdsl.pm:1029
+#: ../lib/network/connection/providers/xdsl.pm:1040
+#: ../lib/network/connection/providers/xdsl.pm:1050
+#: ../lib/network/connection/providers/xdsl.pm:1060
+#: ../lib/network/connection/providers/xdsl.pm:1070
+#: ../lib/network/connection/providers/xdsl.pm:1080
+#: ../lib/network/connection/providers/xdsl.pm:1090
+#: ../lib/network/connection/providers/xdsl.pm:1101
+#: ../lib/network/connection/providers/xdsl.pm:1112
+#: ../lib/network/connection/providers/xdsl.pm:1124
+#: ../lib/network/connection/providers/xdsl.pm:1136
+#, c-format
+msgid "Spain"
+msgstr "أسبانيا"
+
+#: ../lib/network/connection/providers/xdsl.pm:1149
+#, c-format
+msgid "Sweden"
+msgstr "السويد"
+
+#: ../lib/network/connection/providers/xdsl.pm:1158
+#: ../lib/network/connection/providers/xdsl.pm:1167
+#: ../lib/network/connection/providers/xdsl.pm:1177
+#, c-format
+msgid "Switzerland"
+msgstr "السويسرية"
+
+#: ../lib/network/connection/providers/xdsl.pm:1186
+#, c-format
+msgid "Thailand"
+msgstr "تايلاند"
+
+#: ../lib/network/connection/providers/xdsl.pm:1196
+#, c-format
+msgid "Tunisia"
+msgstr "تونس"
+
+#: ../lib/network/connection/providers/xdsl.pm:1207
+#, c-format
+msgid "Turkey"
+msgstr "تركيا"
+
+#: ../lib/network/connection/providers/xdsl.pm:1220
+#, c-format
+msgid "United Arab Emirates"
+msgstr "الإمارات العربية المتحدة"
+
+#: ../lib/network/connection/providers/xdsl.pm:1230
+#: ../lib/network/connection/providers/xdsl.pm:1240
+#: ../lib/network/netconnect.pm:38
+#, c-format
+msgid "United Kingdom"
+msgstr "المملكة المتحدة"
+
+#: ../lib/network/connection/wireless.pm:11
+#, c-format
+msgid "Wireless"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:27
+#, c-format
+msgid "Use a Windows driver (with ndiswrapper)"
+msgstr "استخدام مشغّل ويندوز (مع ndiswrapper("
+
+#: ../lib/network/connection/wireless.pm:44
+#, c-format
+msgid "Open WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:45
+#, c-format
+msgid "Restricted WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:46
+#, c-format
+msgid "WPA Pre-Shared Key"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:182 ../lib/network/thirdparty.pm:175
+#, c-format
+msgid "Firmware files are required for this device."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:248
+#, c-format
+msgid ""
+"Your wireless card is disabled, please enable the wireless switch (RF kill "
+"switch) first."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:307
+#, fuzzy, c-format
+msgid "Wireless settings"
+msgstr "اتّصال لاسلكي"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Ad-hoc"
+msgstr "مُصطنع"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Managed"
+msgstr "مُدار"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Master"
+msgstr "رئيسي"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Repeater"
+msgstr "مُكرّر"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Secondary"
+msgstr "ثانوي"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Auto"
+msgstr "آلي"
+
+#: ../lib/network/connection/wireless.pm:318
+#, c-format
+msgid "Encryption mode"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:327
+#, c-format
+msgid ""
+"RTS/CTS adds a handshake before each packet transmission to make sure that "
+"the\n"
+"channel is clear. This adds overhead, but increase performance in case of "
+"hidden\n"
+"nodes or large number of active nodes. This parameter sets the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, "
+"fixed\n"
+"or off."
+msgstr ""
+"يضيف RTS/CTS المُصافحة قبل كل بثّ رزم للتّأكّد من أنّ\n"
+"القناة آمنة للإرسال. يضيف هذا ضغطاً، ولكن يزيد الأداء في حالة وجود\n"
+"نقاط اتّصال مخفيّة أو عدد كبير من نقاط الاتصال النّشطة. يحدّد هذا المُعطى\n"
+"الرزمة الأصغر التّي ترسل لها نقطة الاتصال RTS، والتي هي قيمة مساوية لأكبر\n"
+"حجم رزمة تُعطّل المخطّط. يمكنك أيضاً تحديد هذا المُعطى بتلقائي،\n"
+"ثابت أو معطّل."
+
+#: ../lib/network/connection/wireless.pm:336
+#, c-format
+msgid ""
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
+"as the hostname).\n"
+"\n"
+"See iwconfig(8) man page for further information."
+msgstr ""
+"هنا، يمكن تهيئة مُعاملات إضافيّة للتشبيك اللاسلكي مثل:\n"
+"ap، channel، commit، enc، power، retry، sens، txpower )nick محدّد مسبّقا كإسم "
+"المضيف).\n"
+"\n"
+"راجع صفحة الدّليل iwconfig(8) للمزيد من المعلومات."
+
+#: ../lib/network/connection/wireless.pm:344
+#, c-format
+msgid ""
+"iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
+"\n"
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+"يستخدم iwspy لتحديد قائمة من العناوين لواجهة الشبكة اللاسلكيّة\n"
+"ولقراءة معرومات جودة الاتصال لكل من هذه.\n"
+"\n"
+"هذه المعلومات هي نفسها كالتي متوفّرة في /proc/net/wireless :\n"
+"جودة الاتصال، قوّة الإشارة ومستوى الضّوضاء.\n"
+"\n"
+"رجاع صفحة دليل iwpspy)8( للمزيد من المعلومات."
+
+#: ../lib/network/connection/wireless.pm:354
+#, c-format
+msgid ""
+"iwpriv enable to set up optionals (private) parameters of a wireless "
+"network\n"
+"interface.\n"
+"\n"
+"iwpriv deals with parameters and setting specific to each driver (as opposed "
+"to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to "
+"use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
+msgstr ""
+"يمكنك iwpriv من إعداد المُعطيات الاختياريّة (الخاصّة) لواجهة الشّبكة\n"
+"اللّاسلكيّة.\n"
+"\n"
+"يتعامل iwpriv مع المُعطيات وتحديد الخواصّ لكل مشغّل (بعكس\n"
+"iwconfig والذي يتعامل مع الأشياء العامّة).\n"
+"\n"
+"نظريّاً، يجب أن يُبيّن مواثقة كلّ مشغّل جهاز كيفيّة استخدام\n"
+"الأوامر الخاصّة بكل واجهة وتأثيرها.\n"
+"\n"
+"راجع صفحة دليل iwpriv(8) للمزيد من المعلومات."
+
+#: ../lib/network/connection/wireless.pm:372
+#, c-format
+msgid "An encryption key is required."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:378
+#, 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 ""
+"يجب أن يكون للتردّد اللاحقة k، أو M أو G (مثلاً، \"2.46G\" للتردّد 2.46 GHz(، "
+"أو إضافة أصفار كافية."
+
+#: ../lib/network/connection/wireless.pm:384
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
+"يجب أن يكون للمعدّل اللاحقة k، أو M أو G (مثلاً، \"11M\" للمعدّل 11M)، أو إضافة "
+"أصفار كافية."
+
+#: ../lib/network/connection/wireless.pm:396
+#, c-format
+msgid "Allow access point roaming"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:499
+#, c-format
+msgid "Associated to wireless network \"%s\" on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:500
+#, c-format
+msgid "Lost association to wireless network on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:8
+#, fuzzy, c-format
+msgid "DSL"
+msgstr "SSL"
+
+#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
+#, c-format
+msgid "Alcatel speedtouch USB modem"
+msgstr "مودم Alcatel speedtouch USB"
+
+#: ../lib/network/connection/xdsl.pm:104
+#, c-format
+msgid ""
+"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
+"problem.\n"
+"\n"
+"You can find a driver on http://eciadsl.flashtux.org/"
+msgstr ""
+"مودم ECI Hi-Focus لا يمكن دعمه بسبب مشكلة توزيع المُشغّل المُجمّع.\n"
+"\n"
+"يمكنك العثور على المُشغّلات على الموقع http://eciadsl.flashtux.org/"
+
+#: ../lib/network/connection/xdsl.pm:176
+#, c-format
+msgid "DSL over CAPI"
+msgstr "DSL عبر CAPI"
+
+#: ../lib/network/connection/xdsl.pm:179
+#, c-format
+msgid "Dynamic Host Configuration Protocol (DHCP)"
+msgstr "بروتوكول تهيئة المضيف الديناميكيّة (DHCP)"
+
+#: ../lib/network/connection/xdsl.pm:180
+#, c-format
+msgid "Manual TCP/IP configuration"
+msgstr "تهيئة TCP/IP يدويّة"
+
+#: ../lib/network/connection/xdsl.pm:181
+#, c-format
+msgid "Point to Point Tunneling Protocol (PPTP)"
+msgstr "بروتوكول النفق من نقطة إلى نقطة (PPTP)"
+
+#: ../lib/network/connection/xdsl.pm:182
+#, c-format
+msgid "PPP over Ethernet (PPPoE)"
+msgstr "PPP عبر Ethernet (PPPoE)"
+
+#: ../lib/network/connection/xdsl.pm:183
+#, c-format
+msgid "PPP over ATM (PPPoA)"
+msgstr "PPP عبر ATM (PPPoA)"
+
+#: ../lib/network/connection/xdsl.pm:223
+#, c-format
+msgid "Virtual Path ID (VPI):"
+msgstr "رقم تعريف المسار الوهمي (VPI):"
+
+#: ../lib/network/connection/xdsl.pm:224
+#, c-format
+msgid "Virtual Circuit ID (VCI):"
+msgstr "رقم تعريف الدّارة الوهميّة (VCI):"
+
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakvpn.pm:45 ../lib/network/netconnect.pm:131
+#: ../lib/network/thirdparty.pm:115
+#, fuzzy, c-format
+msgid "Could not install the packages (%s)!"
+msgstr "تعذر تثبيت حزم %s!"
+
+#: ../lib/network/drakfirewall.pm:12
+#, c-format
+msgid "Web Server"
+msgstr "خادم الوب"
+
+#: ../lib/network/drakfirewall.pm:17
+#, c-format
+msgid "Domain Name Server"
+msgstr "خادم اسم النطاق"
+
+#: ../lib/network/drakfirewall.pm:22
+#, c-format
+msgid "SSH server"
+msgstr "خادم SSH"
+
+#: ../lib/network/drakfirewall.pm:27
+#, c-format
+msgid "FTP server"
+msgstr "خادم FTP"
+
+#: ../lib/network/drakfirewall.pm:32
+#, c-format
+msgid "Mail Server"
+msgstr "خادم بريد"
+
+#: ../lib/network/drakfirewall.pm:37
+#, c-format
+msgid "POP and IMAP Server"
+msgstr "خادم POP و IMAP"
+
+#: ../lib/network/drakfirewall.pm:42
+#, c-format
+msgid "Telnet server"
+msgstr "خادم Telnet"
+
+#: ../lib/network/drakfirewall.pm:48
+#, c-format
+msgid "Windows Files Sharing (SMB)"
+msgstr "مشاركة ملفّات ويندوز (SMB)"
+
+#: ../lib/network/drakfirewall.pm:54
+#, c-format
+msgid "CUPS server"
+msgstr "خادم CUPS"
+
+#: ../lib/network/drakfirewall.pm:60
+#, c-format
+msgid "Echo request (ping)"
+msgstr "طلب الصّدى (ping)"
+
+#: ../lib/network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr "BitTorrent"
+
+#: ../lib/network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
+#, fuzzy, c-format
+msgid "Firewall configuration"
+msgstr "تهيئة يدوية"
+
+#: ../lib/network/drakfirewall.pm:166
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandriva Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized Mandriva Security Firewall distribution."
+msgstr ""
+"أداة تهيئة drakfirewall\n"
+"\n"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام ماندريبا لينكس هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصّصاً وفعّالاً، ألق نظرة على\n"
+"توزيعة Mandriva Security Firewall المُتخصّصة."
+
+#: ../lib/network/drakfirewall.pm:172
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+"أداة تهيئة DrakFirewall\n"
+"\n"
+"تأكد من أنك قمت بتهيئة اتصالك بالشبكة/الإنترنت باستخدام\n"
+"drakconnect قبل المتابعة."
+
+#: ../lib/network/drakfirewall.pm:189
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "أي خدمة تريد السماح للإنترنت أن تتصل بها؟"
+
+#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
+#, c-format
+msgid "Firewall"
+msgstr "جدار ناري"
+
+#: ../lib/network/drakfirewall.pm:192
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"يمكنك إدخال منافذ متنوعة. \n"
+"أمثلة صالحة هي:139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"ألق نظرة على /etc/services لمزيد من المعلومات."
+
+#: ../lib/network/drakfirewall.pm:198
+#, 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.\n"
+"\n"
+"You can also give a range of ports (eg: 24300:24350/udp)"
+msgstr ""
+"تم إعطاء منفذ غير صالح: %s.\n"
+"النسق الصحيح هو \"port/tcp\" أو \"port/udp\"، \n"
+"حيث يكون المنفذ بين 1 و65535.\n"
+"\n"
+"يمكنك أيضاَ إعطاء مدى من المنافذ (مثلاً: 2400:24350/udp)"
+
+#: ../lib/network/drakfirewall.pm:208
+#, c-format
+msgid "Everything (no firewall)"
+msgstr "كل شئ (لا جدار ناري)"
+
+#: ../lib/network/drakfirewall.pm:210
+#, c-format
+msgid "Other ports"
+msgstr "منافذ أخرى"
+
+#: ../lib/network/drakfirewall.pm:211
+#, c-format
+msgid "Log firewall messages in system logs"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:256
+#, c-format
+msgid ""
+"You can be warned when someone accesses to a service or tries to intrude "
+"into your computer.\n"
+"Please select which network activities should be watched."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:261
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
+#
+#: ../lib/network/drakroam.pm:29
+#, c-format
+msgid "No device found"
+msgstr "لم يُعثر على أي جهاز"
+
+#: ../lib/network/drakroam.pm:63 ../lib/network/drakroam.pm:161
+#, fuzzy, c-format
+msgid "Please enter settings for network"
+msgstr "معلومات مفصّلة"
+
+#: ../lib/network/drakroam.pm:67 ../lib/network/netconnect.pm:177
+#, c-format
+msgid "Configuring device..."
+msgstr "تهيئة الجهاز..."
+
+#: ../lib/network/drakroam.pm:95
+#, c-format
+msgid "Hostname changed to \"%s\""
+msgstr ""
+
+#: ../lib/network/drakroam.pm:108 ../lib/network/netconnect.pm:209
+#, fuzzy, c-format
+msgid "Scanning for networks..."
+msgstr "جاري مسح الشبكة..."
+
+#: ../lib/network/drakroam.pm:200
+#, fuzzy, c-format
+msgid "Connecting..."
+msgstr "اتصال..."
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Disconnect"
+msgstr "اقطع الاتصال"
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Connect"
+msgstr "اتصل"
+
+#: ../lib/network/drakroam.pm:250
+#, fuzzy, c-format
+msgid "Disconnecting..."
+msgstr "قطع الإتصال..."
+
+#: ../lib/network/drakroam.pm:279
+#, c-format
+msgid "SSID"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:280
+#, c-format
+msgid "Signal strength"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:281
+#, c-format
+msgid "Encryption"
+msgstr "التشفير"
+
+#: ../lib/network/drakroam.pm:335 ../lib/network/netconnect.pm:761
+#, c-format
+msgid "Wireless connection"
+msgstr "اتّصال لاسلكي"
+
+#: ../lib/network/drakroam.pm:350
+#, c-format
+msgid "Configure"
+msgstr "تهيئة"
+
+#: ../lib/network/drakroam.pm:352
+#, c-format
+msgid "Refresh"
+msgstr "إنعاش"
+
+#: ../lib/network/drakvpn.pm:30
+#, fuzzy, c-format
+msgid "VPN configuration"
+msgstr "تهيئة CUPS"
+
+#: ../lib/network/drakvpn.pm:34
+#, fuzzy, c-format
+msgid "Choose the VPN type"
+msgstr "اختيار الحجم الجديد"
+
+#: ../lib/network/drakvpn.pm:49
+#, c-format
+msgid "Initializing tools and detecting devices for %s..."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:52
+#, fuzzy, c-format
+msgid "Unable to initialize %s connection type!"
+msgstr "نوع وصلة مجهول"
+
+#: ../lib/network/drakvpn.pm:60
+#, c-format
+msgid "Please select an existing VPN connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:64
+#, fuzzy, c-format
+msgid "Configure a new connection..."
+msgstr "اختبار الوصلة..."
+
+#: ../lib/network/drakvpn.pm:66
+#, fuzzy, c-format
+msgid "New name"
+msgstr "الاسم الحقيقي"
+
+#: ../lib/network/drakvpn.pm:70
+#, c-format
+msgid "You must select an existing connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:81
+#, fuzzy, c-format
+msgid "Please enter the required key(s)"
+msgstr "الرجاء إدخال عنوان خادم WebDav"
+
+#: ../lib/network/drakvpn.pm:86
+#, fuzzy, c-format
+msgid "Please enter the settings of your VPN connection"
+msgstr "تعذر الإتصال بالمرآة %s"
+
+#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#, c-format
+msgid "Do you want to start the connection now?"
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:100
+#, fuzzy, c-format
+msgid "Connection failed."
+msgstr "اسم الإتصال"
+
+#: ../lib/network/drakvpn.pm:108
+#, c-format
+msgid ""
+"The VPN connection is now configured.\n"
+"\n"
+"This VPN connection can be automatically started together with a network "
+"connection.\n"
+"It can be done by reconfiguring the network connection and selecting this "
+"VPN connection.\n"
+msgstr ""
+
+#: ../lib/network/ifw.pm:129
+#, fuzzy, c-format
+msgid "Port scanning"
+msgstr "لا مشاركة"
+
+#: ../lib/network/ifw.pm:130
+#, fuzzy, c-format
+msgid "Service attack"
+msgstr "الخدمة المُهاجمة: %s"
+
+#: ../lib/network/ifw.pm:131
+#, fuzzy, c-format
+msgid "Password cracking"
+msgstr "كلمة المرور (مجدداً)"
+
+#: ../lib/network/ifw.pm:132
+#, c-format
+msgid "\"%s\" attack"
+msgstr ""
+
+#: ../lib/network/ifw.pm:134
+#, c-format
+msgid "A port scanning attack has been attempted by %s."
+msgstr "حدث هجوم مسح للمنافذ من قبل %s."
+
+#: ../lib/network/ifw.pm:135
+#, c-format
+msgid "The %s service has been attacked by %s."
+msgstr "تم الهجوم على الخدمة %s من قبل %s."
+
+#: ../lib/network/ifw.pm:136
+#, c-format
+msgid "A password cracking attack has been attempted by %s."
+msgstr "حدث هجوم لاختراق كلمة المرور من قبل %s."
+
+#: ../lib/network/ifw.pm:137
+#, fuzzy, c-format
+msgid "A \"%s\" attack has been attempted by %s"
+msgstr "حدث هجوم مسح للمنافذ من قبل %s."
+
+#: ../lib/network/ifw.pm:146
+#, c-format
+msgid ""
+"The \"%s\" application is trying to make a service (%s) available to the "
+"network."
+msgstr ""
+
+#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
+#: ../lib/network/ifw.pm:150
+#, fuzzy, c-format
+msgid "port %d"
+msgstr "تقرير"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#, c-format
+msgid "Manual"
+msgstr "يدوي"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
+#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
+#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
+#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#: ../lib/network/netconnect.pm:638
+#, c-format
+msgid "Automatic"
+msgstr "آلي"
+
+#: ../lib/network/ndiswrapper.pm:27
+#, c-format
+msgid "No device supporting the %s ndiswrapper driver is present!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:33
+#, c-format
+msgid "Please select the Windows driver (.inf file)"
+msgstr "الرجاء اختيار مشغّل ويندوز (ملف .inf)"
+
+#: ../lib/network/ndiswrapper.pm:42
+#, c-format
+msgid "Unable to install the %s ndiswrapper driver!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:86
+#, c-format
+msgid "Unable to load the ndiswrapper module!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:92
+#, c-format
+msgid ""
+"The selected device has already been configured with the %s driver.\n"
+"Do you really want to use a ndiswrapper driver?"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:102
+#, c-format
+msgid "Unable to find the ndiswrapper interface!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:115
+#, c-format
+msgid "Choose an ndiswrapper driver"
+msgstr "اختيار مشغّل ndiswrapper"
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Use the ndiswrapper driver %s"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Install a new driver"
+msgstr "تثبيت مشغّل جديد"
+
+#: ../lib/network/ndiswrapper.pm:129
+#, c-format
+msgid "Select a device:"
+msgstr ""
+
+#: ../lib/network/netcenter.pm:55
+#, fuzzy, c-format
+msgid "Network Center"
+msgstr "واجهة الشبكة "
+
+#: ../lib/network/netconnect.pm:37
+#, c-format
+msgid "United States"
+msgstr "الولايات المتحدة"
+
+#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
+#: ../lib/network/netconnect.pm:507
+#, c-format
+msgid "Manual choice"
+msgstr "اختيار يدوي"
+
+#: ../lib/network/netconnect.pm:60
+#, c-format
+msgid "Internal ISDN card"
+msgstr "بطاقة ISDN داخلية"
+
+#: ../lib/network/netconnect.pm:65
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr "بروتوكول لبقية العالم"
+
+#: ../lib/network/netconnect.pm:123
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "اختر الوصلة التي تريد تهيئتها"
+
+#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
+#: ../lib/network/netconnect.pm:788
+#, c-format
+msgid "Select the network interface to configure:"
+msgstr "اختيار واجهة الشبكة لتهيئتها:"
+
+#: ../lib/network/netconnect.pm:164
+#, c-format
+msgid "No device can be found for this connection type."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:173
+#, fuzzy, c-format
+msgid "Hardware Configuration"
+msgstr "تهيئة الشبكة"
+
+#: ../lib/network/netconnect.pm:194
+#, c-format
+msgid "Please select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:212
+#, c-format
+msgid "Please select your network:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:241
+#, c-format
+msgid ""
+"Please select your connection protocol.\n"
+"If you do not know it, keep the preselected protocol."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#, c-format
+msgid "Connection control"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Connection Configuration"
+msgstr "تهيئة الاتصال"
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "فضلاً املأ أو أشّر على الحقل أدناه"
+
+#: ../lib/network/netconnect.pm:318
+#, c-format
+msgid "Your personal phone number"
+msgstr "رقم هاتفك الشخصي"
+
+#: ../lib/network/netconnect.pm:319
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "اسم المزوّد (مثلاً provider.net("
+
+#: ../lib/network/netconnect.pm:321
+#, c-format
+msgid "Provider DNS 1 (optional)"
+msgstr "مُزوّد DNS 1 (اختياري)"
+
+#: ../lib/network/netconnect.pm:322
+#, c-format
+msgid "Provider DNS 2 (optional)"
+msgstr "مُزوّد Provider DNS 2 (اختياري)"
+
+#: ../lib/network/netconnect.pm:332
+#, c-format
+msgid "Card IO_1"
+msgstr "IO_1 للبطاقة"
+
+#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#, c-format
+msgid "External ISDN modem"
+msgstr "مودم ISDN خارجي"
+
+#: ../lib/network/netconnect.pm:384
+#, c-format
+msgid "Select a device!"
+msgstr "اختيار جهاز!"
+
+#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
+#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid "ISDN Configuration"
+msgstr "تهيئة ISDN"
+
+#: ../lib/network/netconnect.pm:394
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "ما هو نوع البطاقة لديك؟"
+
+#: ../lib/network/netconnect.pm:404
+#, 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، فإن القيم التي ستعرض على الشاشة التالية يجب أن تكون "
+"صحيحة.\n"
+"\n"
+"إذا كانت لديك بطاقة PCMCIA، يجب عليك أن تعرف قيم \"irq\" و \"io\" الخاصة "
+"ببطاقتك.\n"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Continue"
+msgstr "استمرار"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Abort"
+msgstr "إجهاض"
+
+#: ../lib/network/netconnect.pm:414
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "أي من الآتي هي بطاقة ISDN الخاصة بك؟"
+
+#: ../lib/network/netconnect.pm:432
+#, c-format
+msgid ""
+"A CAPI driver is available for this modem. This CAPI driver can offer more "
+"capabilities than the free driver (like sending faxes). Which driver do you "
+"want to use?"
+msgstr ""
+"يتوفّر مشغّل CAPI لهذا المودم. قد يكون لدافعة CAPI هذه قدراتٍ أكثر من مشغل حرّ "
+"(كالقدرة على إرسال الفاكسات). أي المشغّلين تودّ استعماله؟"
+
+#: ../lib/network/netconnect.pm:446
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "ما هو البروتوكول الذي تريد استخدامه؟"
+
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it is not listed, choose Unlisted."
+msgstr ""
+"اختر موفر الخدمة الخاص بك.\n"
+"ان لم يكن موجوداً في القائمة، اختر غير موجود."
+
+#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
+#, c-format
+msgid "Provider:"
+msgstr "المُزوّد:"
+
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid ""
+"Your modem is not supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+"المودم لديك غير مدعوم من النظام.\n"
+"الق نظرة على http://www.linmodems.org"
+
+#: ../lib/network/netconnect.pm:490
+#, c-format
+msgid "Select the modem to configure:"
+msgstr "اختر المودم لتهيئته:"
+
+#: ../lib/network/netconnect.pm:492
+#, c-format
+msgid "Modem"
+msgstr "المودم"
+
+#: ../lib/network/netconnect.pm:527
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "الرجاء اختيار المنفذ التسلسلي المرتبط به المودم لديك."
+
+#: ../lib/network/netconnect.pm:556
+#, c-format
+msgid "Select your provider:"
+msgstr "اختر مُزوّدك:"
+
+#: ../lib/network/netconnect.pm:580
+#, c-format
+msgid "Dialup: account options"
+msgstr "الاتصال الهاتفي: خيارات الحساب"
+
+#: ../lib/network/netconnect.pm:583
+#, c-format
+msgid "Connection name"
+msgstr "اسم الإتصال"
+
+#: ../lib/network/netconnect.pm:584
+#, c-format
+msgid "Phone number"
+msgstr "رقم الهاتف"
+
+#: ../lib/network/netconnect.pm:585
+#, c-format
+msgid "Login ID"
+msgstr "معرّف الدخول"
+
+#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
+#, c-format
+msgid "Dialup: IP parameters"
+msgstr "الاتصال الهاتفي: مُعطيات IP"
+
+#: ../lib/network/netconnect.pm:603
+#, c-format
+msgid "IP parameters"
+msgstr "مُعطيات IP"
+
+#: ../lib/network/netconnect.pm:605
+#, c-format
+msgid "Subnet mask"
+msgstr "قناع الشّبكة الفرعيّة"
+
+#: ../lib/network/netconnect.pm:617
+#, c-format
+msgid "Dialup: DNS parameters"
+msgstr "الاتصال الهاتفي: مُعطيات DNS"
+
+#: ../lib/network/netconnect.pm:620
+#, c-format
+msgid "DNS"
+msgstr "DNS"
+
+#: ../lib/network/netconnect.pm:621
+#, c-format
+msgid "Domain name"
+msgstr "اسم النطاق"
+
+#: ../lib/network/netconnect.pm:624
+#, c-format
+msgid "Set hostname from IP"
+msgstr "تحديد اسم المضيف من عنوان IP"
+
+#: ../lib/network/netconnect.pm:637
+#, c-format
+msgid "Gateway IP address"
+msgstr "عنوان IP للبوّابة"
+
+#: ../lib/network/netconnect.pm:670
+#, c-format
+msgid "Automatically at boot"
+msgstr "آليا عند الإقلاع"
+
+#: ../lib/network/netconnect.pm:672
+#, c-format
+msgid "By using Net Applet in the system tray"
+msgstr "باستعمال بريمج الشّبكة (Net Applet( في درج النّظام"
+
+#: ../lib/network/netconnect.pm:674
+#, c-format
+msgid "Manually (the interface would still be activated at boot)"
+msgstr "يدويا (ستمكّن الواجهة عند الإقلاع رغم هذا)"
+
+#: ../lib/network/netconnect.pm:683
+#, c-format
+msgid "How do you want to dial this connection?"
+msgstr "كيف تريد طلب هذا الاتصال؟"
+
+#: ../lib/network/netconnect.pm:696
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "هل تريد أن تحاول أن تتصل بالإنترنت الآن؟"
+
+#: ../lib/network/netconnect.pm:723
+#, c-format
+msgid "The system is now connected to the Internet."
+msgstr "النظام الآن متصل بالإنترنت"
+
+#: ../lib/network/netconnect.pm:724
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "لأسباب أمنية، سيتم قطع الإتصال الآن."
+
+#: ../lib/network/netconnect.pm:725
+#, c-format
+msgid ""
+"The system does not seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"لا يبدو أن النظام متصل بالإنترنت.\n"
+"حاول إعادة تهيئة الوصلة."
+
+#: ../lib/network/netconnect.pm:740
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr ""
+"تهانينا، انتهت تهيئة الشبكة و الإنترنت.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:743
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+"بعد عمل ذلك، ننصح بإعادة تشغيل بيئة X لديك لتفادي أي مشاكل تتعلق بإسم المضيف."
+
+#: ../lib/network/netconnect.pm:744
+#, c-format
+msgid ""
+"Problems occurred during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection does not "
+"work, you might want to relaunch the configuration."
+msgstr ""
+"ظهرت مشاكل أثناء التهيئة.\n"
+"اختبر الوصلة باستخدام net_monitor أو mcc. إذا لم تعمل الوصلة، فقد تريد إعادة "
+"التهيئة."
+
+#: ../lib/network/netconnect.pm:756
+#, c-format
+msgid "Sagem USB modem"
+msgstr "مودم Sagem USB"
+
+#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
+#, c-format
+msgid "Bewan modem"
+msgstr "مودم Bewan"
+
+#: ../lib/network/netconnect.pm:759
+#, c-format
+msgid "ECI Hi-Focus modem"
+msgstr "مودم ECI Hi-Focus"
+
+#: ../lib/network/netconnect.pm:760
+#, c-format
+msgid "LAN connection"
+msgstr "وصلة LAN"
+
+#: ../lib/network/netconnect.pm:762
+#, c-format
+msgid "ADSL connection"
+msgstr "وصلة ADSL"
+
+#: ../lib/network/netconnect.pm:763
+#, c-format
+msgid "Cable connection"
+msgstr "وصلة كيبل"
+
+#: ../lib/network/netconnect.pm:764
+#, c-format
+msgid "ISDN connection"
+msgstr "وصلة ISDN"
+
+#: ../lib/network/netconnect.pm:765
+#, c-format
+msgid "Modem connection"
+msgstr "وصلة المودم"
+
+#: ../lib/network/netconnect.pm:766
+#, c-format
+msgid "DVB connection"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:768
+#, c-format
+msgid "(detected on port %s)"
+msgstr "(اكتشاف على المنفذ %s)"
+
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected %s)"
+msgstr "(اكتشف %s)"
+
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected)"
+msgstr "(تم اكتشافه)"
+
+#: ../lib/network/netconnect.pm:771
+#, c-format
+msgid "Network Configuration"
+msgstr "تهيئة الشبكة"
+
+#: ../lib/network/netconnect.pm:772
+#, c-format
+msgid "Zeroconf hostname resolution"
+msgstr "ترجمة اسم مضيف Zeroconf"
+
+#: ../lib/network/netconnect.pm:773
+#, c-format
+msgid ""
+"If desired, enter a Zeroconf hostname.\n"
+"This is the name your machine will use to advertise any of\n"
+"its shared resources that are not managed by the network.\n"
+"It is not necessary on most networks."
+msgstr ""
+"إن أردت، أدخل إسم مضيف Zeroconf.\n"
+"هذا هو الإسم الّذي سيستعمله حاسبك للتّشهير\n"
+"بأيّة من خدماته المشتركة و الّتي لا تديرها الشّبكة.\n"
+"غير ضروري على معظم الشّبكات."
+
+#: ../lib/network/netconnect.pm:777
+#, c-format
+msgid "Zeroconf Host name"
+msgstr "اسم مضيف Zeroconf"
+
+#: ../lib/network/netconnect.pm:778
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr "يجب أن يحتوي اسم مضيف Zeroconf على . (نقطة("
+
+#: ../lib/network/netconnect.pm:779
+#, 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"
+"اضغط موافق لحفظ التهيئة الخاصة بك، أو اضغط إلغاء لإعادة تهيئة وصلات الإنترنت "
+"و الشبكة.\n"
+
+#: ../lib/network/netconnect.pm:782
+#, c-format
+msgid "The network needs to be restarted. Do you want to restart it?"
+msgstr "يجب إعادة تشغيل الشبكة. هل تريد إعادة تشغيلها؟"
+
+#: ../lib/network/netconnect.pm:783
+#, c-format
+msgid ""
+"A problem occurred while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"ظهرت مشكلة أثناء إعادة تشغيل الشبكة: \n"
+"\n"
+"%s"
+
+#: ../lib/network/netconnect.pm:784
+#, c-format
+msgid ""
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press \"%s\" to continue."
+msgstr ""
+"سوف نقوم الآن بتهيئة الاتّصال %s\n"
+"\n"
+"\n"
+"اضغط \"%s\" لتستمرّ."
+
+#: ../lib/network/netconnect.pm:785
+#, c-format
+msgid "Configuration is complete, do you want to apply settings?"
+msgstr "تم الانتهاء من التهيئة، هل تريد تطبيق الإعدادات ؟"
+
+#: ../lib/network/netconnect.pm:786
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+"لقد قمت بتهيئة طرق متعددة للإتصال بالإنترنت.\n"
+"اختر الطريقة التي تريد استخدامها.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:787
+#, c-format
+msgid "Internet connection"
+msgstr "وصلة انترنت"
+
+#: ../lib/network/netconnect.pm:789
+#, c-format
+msgid "Configuring network device %s (driver %s)"
+msgstr "جاري تهيئة جهاز الشبكة %s (مشغّل %s)"
+
+#: ../lib/network/netconnect.pm:790
+#, c-format
+msgid ""
+"The following protocols can be used to configure a LAN connection. Please "
+"choose the one you want to use."
+msgstr ""
+"البروتوكولات التّالية يمكن استخدامها لتهيئة اتصال LAN. الرجاء اختيار "
+"البروتوكول الذي تريد استخدامه."
+
+#: ../lib/network/netconnect.pm:791
+#, 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 ""
+"الرجاء إدخال اسم المضيف.\n"
+"يجب أن يكون اسم المضيف صالحاً و كاملاً،\n"
+"مثل ``mybox.mylab.myco.com''.\n"
+"يمكنك أيضاً إدخال عنوان IP الخاص بالبوابة ان وُجدت."
+
+#: ../lib/network/netconnect.pm:796
+#, c-format
+msgid "Last but not least you can also type in your DNS server IP addresses."
+msgstr "أخيراً وليس آخراً يمكنك أيضاً أن تدخل عناوين IP لخادمات DNS."
+
+#: ../lib/network/netconnect.pm:797
+#, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "عنوان خادم DNS يجب أن يكون على النسق 1.2.3.4"
+
+#: ../lib/network/netconnect.pm:799
+#, c-format
+msgid "Gateway device"
+msgstr "جهاز البوابة"
+
+#: ../lib/network/netconnect.pm:813
+#, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr ""
+"حدث خطأ غير متوقّع:\n"
+"%s"
+
+#: ../lib/network/network.pm:429
+#, c-format
+msgid "Proxies configuration"
+msgstr "تهيئة البروكسي"
+
+#: ../lib/network/network.pm:430
+#, c-format
+msgid ""
+"Here you can set up your proxies configuration (eg: http://"
+"my_caching_server:8080)"
+msgstr ""
+
+#: ../lib/network/network.pm:431
+#, c-format
+msgid "HTTP proxy"
+msgstr "بروكسي HTTP"
+
+#: ../lib/network/network.pm:432
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: ../lib/network/network.pm:433
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: ../lib/network/network.pm:434
+#, c-format
+msgid "FTP proxy"
+msgstr "بروكسي FTP"
+
+#: ../lib/network/network.pm:435
+#, fuzzy, c-format
+msgid "No proxy for (comma separated list):"
+msgstr "%d حرفيات مفصولة بالفاصلة"
+
+#: ../lib/network/network.pm:440
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "البروكسي يجب أن يكون http://..."
+
+#: ../lib/network/network.pm:441
+#, fuzzy, c-format
+msgid "Proxy should be http://... or https://..."
+msgstr "البروكسي يجب أن يكون http://..."
+
+#: ../lib/network/network.pm:442
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
+
+#: ../lib/network/shorewall.pm:61
+#, c-format
+msgid ""
+"Please select the interfaces that will be protected by the firewall.\n"
+"\n"
+"All interfaces directly connected to Internet should be selected,\n"
+"while interfaces connected to a local network may be unselected.\n"
+"\n"
+"Which interfaces should be protected?\n"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:136
+#, c-format
+msgid "Keep custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:137
+#, c-format
+msgid "Drop custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:142
+#, c-format
+msgid ""
+"Your firewall configuration has been manually edited and contains\n"
+"rules that may conflict with the configuration that has just been set up.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:135
+#, c-format
+msgid "Some components (%s) are required but aren't available for %s hardware."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:136
+#, c-format
+msgid "Some packages (%s) are required but aren't available."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:138
+#, c-format
+msgid ""
+"These packages can be found in Mandriva Club or in Mandriva commercial "
+"releases."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:139
+#, c-format
+msgid "The following component is missing: %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:141
+#, c-format
+msgid ""
+"The required files can also be installed from this URL:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:183
+#, c-format
+msgid "Use a floppy"
+msgstr "استخدام قرص مرن"
+
+#: ../lib/network/thirdparty.pm:179 ../lib/network/thirdparty.pm:186
+#, c-format
+msgid "Use my Windows partition"
+msgstr "جاري تغيير حجم تجزيء ويندوز"
+
+#: ../lib/network/thirdparty.pm:180
+#, c-format
+msgid "Select file"
+msgstr "اختيار ملف"
+
+#: ../lib/network/thirdparty.pm:191
+#, fuzzy, c-format
+msgid "Please select the firmware file (for example: %s)"
+msgstr "الرجاء اختيار مشغّل ويندوز (ملف .inf)"
+
+#: ../lib/network/thirdparty.pm:215
+#, fuzzy, c-format
+msgid "Unable to find \"%s\" on your Windows system!"
+msgstr "حذف الخطوط من النظام"
+
+#: ../lib/network/thirdparty.pm:217
+#, c-format
+msgid "No Windows system has been detected!"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:227
+#, c-format
+msgid "Insert floppy"
+msgstr "أدخل قرص مرن"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+"أدخل قرص مرن منسّق على نظام ملفات FAT في السواقة %s مع %s في الدّليل الجذري "
+"واضغط %s"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid "Next"
+msgstr "التالي"
+
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "خطأ في الوصول إلى القرص المرن، لم يمكن تجهيز الجهاز %s"
+
+#: ../lib/network/thirdparty.pm:327
+#, c-format
+msgid "Looking for required software and drivers..."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:338
+#, fuzzy, c-format
+msgid "Please wait, running device configuration commands..."
+msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة الأجهزة..."
+
+#: ../lib/network/vpn/openvpn.pm:107
+#, c-format
+msgid "X509 Public Key Infrastructure"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:108
+#, c-format
+msgid "Static Key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:115
+#, c-format
+msgid "Type"
+msgstr "النوع"
+
+#. -PO: please don't translate the CA acronym
+#: ../lib/network/vpn/openvpn.pm:142
+#, c-format
+msgid "Certificate Authority (CA)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:148
+#, c-format
+msgid "Certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:154
+#, fuzzy, c-format
+msgid "Key"
+msgstr "كينيا"
+
+#: ../lib/network/vpn/openvpn.pm:160
+#, fuzzy, c-format
+msgid "TLS control channel key"
+msgstr "مفتاح Control الأيسر"
+
+#: ../lib/network/vpn/openvpn.pm:167
+#, c-format
+msgid "Key direction"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:175
+#, fuzzy, c-format
+msgid "Authenticate using username and password"
+msgstr "تعذر الدخول باستخدام اسم المستخدم %s (كلمة مرور سيئة؟)"
+
+#: ../lib/network/vpn/openvpn.pm:181
+#, c-format
+msgid "Check server certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:187
+#, fuzzy, c-format
+msgid "Cipher algorithm"
+msgstr "خوارزمية التّشفير"
+
+#: ../lib/network/vpn/openvpn.pm:191
+#, c-format
+msgid "Default"
+msgstr "افتراضي"
+
+#: ../lib/network/vpn/openvpn.pm:195
+#, c-format
+msgid "Size of cipher key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:206
+#, fuzzy, c-format
+msgid "Get from server"
+msgstr "خادم Telnet"
+
+#: ../lib/network/vpn/openvpn.pm:216
+#, fuzzy, c-format
+msgid "Gateway port"
+msgstr "البوّابة"
+
+#: ../lib/network/vpn/openvpn.pm:232
+#, fuzzy, c-format
+msgid "Remote IP address"
+msgstr "عنوان IP للبوّابة"
+
+#: ../lib/network/vpn/openvpn.pm:237
+#, fuzzy, c-format
+msgid "Use TCP protocol"
+msgstr "البروتوكول"
+
+#: ../lib/network/vpn/openvpn.pm:243
+#, c-format
+msgid "Virtual network device type"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:250
+#, c-format
+msgid "Virtual network device number (optional)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:365
+#, c-format
+msgid "Starting connection.."
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:380
+#, c-format
+msgid "Please insert your token"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:9
+#, c-format
+msgid "Cisco VPN Concentrator"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:43
+#, fuzzy, c-format
+msgid "Group name"
+msgstr "هوية المجموعة"
+
+#: ../lib/network/vpn/vpnc.pm:47
+#, c-format
+msgid "Group secret"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:52
+#, c-format
+msgid "Username"
+msgstr "اسم المستخدم"
+
+#: ../lib/network/vpn/vpnc.pm:61
+#, c-format
+msgid "Use Cisco-UDP encapsulation"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:67
+#, c-format
+msgid "Use specific UDP port"
+msgstr ""
+
+#~ msgid "Get Online Help"
+#~ msgstr "الحصول على مساعدة على الخطّ"
diff --git a/po/az.po b/po/az.po
index a42a863..0e5c503 100644
--- a/po/az.po
+++ b/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-az\n"
-"POT-Creation-Date: 2007-01-10 15:18+0100\n"
+"POT-Creation-Date: 2007-08-09 11:47+0200\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -18,2604 +18,522 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: ../lib/network/connection.pm:16
-#, c-format
-msgid "Unknown connection type"
-msgstr "Namə'lum bağlantı növü"
-
-#: ../lib/network/connection.pm:115
-#, c-format
-msgid "Network access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:116
+#: ../bin/drakconnect:61 ../lib/network/netconnect.pm:118
#, c-format
-msgid "Access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:117
-#, c-format
-msgid "Address settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:149 ../lib/network/drakvpn.pm:62
-#: ../lib/network/vpn/openvpn.pm:365 ../lib/network/vpn/openvpn.pm:379
-#: ../lib/network/vpn/openvpn.pm:390 ../tools/net_applet:129
-#, fuzzy, c-format
-msgid "VPN connection"
-msgstr "LAN bağlantısı"
-
-#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
-#: ../lib/network/connection/wireless.pm:37 ../lib/network/vpn/openvpn.pm:127
-#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
-#, c-format
-msgid "None"
-msgstr "Heç biri"
-
-#: ../lib/network/connection.pm:163
-#, c-format
-msgid "Allow users to manage the connection"
-msgstr ""
-
-#: ../lib/network/connection.pm:164
-#, c-format
-msgid "Start the connection at boot"
-msgstr ""
-
-#: ../lib/network/connection.pm:165 ../tools/drakconnect:462
-#, fuzzy, c-format
-msgid "Metric"
-msgstr "məhdudlaşdır"
-
-#: ../lib/network/connection.pm:230
-#, fuzzy, c-format
-msgid "Link detected on interface %s"
-msgstr "(%s qapısında tapıldı)"
+msgid "Network & Internet Configuration"
+msgstr "Şəbəkə və İnternet Qurğuları"
-#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:278
+#: ../bin/drakconnect:81
#, c-format
-msgid "Link beat lost on interface %s"
-msgstr ""
+msgid "Network configuration (%d adapters)"
+msgstr "Şəbəkə quraşdırılması (%d adapter)"
-#: ../lib/network/connection/cable.pm:13
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Cable"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:14
-#, fuzzy, c-format
-msgid "Cable modem"
-msgstr "Kart modeli:"
+msgid "Gateway:"
+msgstr "Şəbəkə Keçidi:"
-#: ../lib/network/connection/cable.pm:45
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr ""
+msgid "Interface:"
+msgstr "Ara üz:"
-#: ../lib/network/connection/cable.pm:48 ../lib/network/netconnect.pm:587
-#: ../tools/drakconnect:482
+#: ../bin/drakconnect:97 ../bin/net_monitor:119
#, c-format
-msgid "Authentication"
-msgstr "Tanıtma"
+msgid "Wait please"
+msgstr "Xahiş edirik, gözləyin"
-#: ../lib/network/connection/cable.pm:50 ../lib/network/connection/ppp.pm:22
-#: ../lib/network/netconnect.pm:326 ../lib/network/vpn/openvpn.pm:393
-#: ../tools/drakconnect:492
+#: ../bin/drakconnect:113 ../bin/drakinvictus:105
#, c-format
-msgid "Account Login (user name)"
-msgstr "Hesab Girişi (istifadəçi adı)"
+msgid "Interface"
+msgstr "Ara üz"
-#: ../lib/network/connection/cable.pm:52 ../lib/network/connection/ppp.pm:23
-#: ../lib/network/netconnect.pm:327 ../lib/network/vpn/openvpn.pm:394
-#: ../tools/drakconnect:493
+#: ../bin/drakconnect:113 ../bin/drakconnect:321 ../bin/drakconnect:888
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:125
+#: ../lib/network/netconnect.pm:604 ../lib/network/vpn/openvpn.pm:221
#, c-format
-msgid "Account Password"
-msgstr "Hesap Şifrəsi"
+msgid "IP address"
+msgstr "IP ünvanı"
-#: ../lib/network/connection/cellular.pm:47
+#: ../bin/drakconnect:113 ../bin/drakconnect:305 ../bin/drakconnect:563
+#: ../bin/drakids:252 ../bin/drakvpn-old:839 ../lib/network/netconnect.pm:448
#, c-format
-msgid "Access Point Name"
-msgstr ""
+msgid "Protocol"
+msgstr "Protokol"
-#: ../lib/network/connection/cellular_bluetooth.pm:10
+#: ../bin/drakconnect:113 ../lib/network/netconnect.pm:434
#, c-format
-msgid "Bluetooth"
-msgstr ""
+msgid "Driver"
+msgstr "Sürücü"
-#: ../lib/network/connection/cellular_bluetooth.pm:11
+#: ../bin/drakconnect:113
#, c-format
-msgid "Bluetooth Dial Up Networking"
-msgstr ""
+msgid "State"
+msgstr "Vəziyyət"
-#: ../lib/network/connection/cellular_card.pm:8
+#: ../bin/drakconnect:130
#, c-format
-msgid "GPRS/Edge/3G"
-msgstr ""
+msgid "Hostname: "
+msgstr "Ev sahibi adı: "
-#: ../lib/network/connection/cellular_card.pm:67
-#: ../lib/network/vpn/openvpn.pm:391
+#: ../bin/drakconnect:132
#, c-format
-msgid "PIN number"
-msgstr ""
-
-#: ../lib/network/connection/cellular_card.pm:130
-#, fuzzy, c-format
-msgid "Unable to open device %s"
-msgstr "Fork edilə bilmir: %s"
-
-#: ../lib/network/connection/cellular_card.pm:155
-#, fuzzy, c-format
-msgid "Please check that your SIM card is inserted."
-msgstr ""
-"\n"
-"Xahiş edirik, istədiyiniz bütün seçimləri seçin.\n"
+msgid "Configure hostname..."
+msgstr "Qovşaq adını quraşdır..."
-#: ../lib/network/connection/cellular_card.pm:161
+#: ../bin/drakconnect:146 ../bin/drakconnect:851
#, c-format
-msgid ""
-"You entered a wrong PIN code.\n"
-"Entering the wrong PIN code multiple times may lock your SIM card!"
-msgstr ""
+msgid "LAN configuration"
+msgstr "Yerli Şəbəkə (lAN) quraşdırılması"
-#: ../lib/network/connection/dvb.pm:12
+#: ../bin/drakconnect:151
#, c-format
-msgid "DVB"
-msgstr ""
+msgid "Configure Local Area Network..."
+msgstr "Yerli Şəbəkəni Quraşdır..."
-#: ../lib/network/connection/dvb.pm:13
+#: ../bin/drakconnect:157 ../bin/drakconnect:240 ../bin/draknfs:183
+#: ../bin/net_applet:138
#, c-format
-msgid "Satellite (DVB)"
-msgstr ""
+msgid "Help"
+msgstr "Yardım"
-#: ../lib/network/connection/dvb.pm:56
+#: ../bin/drakconnect:159 ../bin/drakconnect:241 ../bin/drakconnect:245
+#: ../bin/drakinvictus:140
#, c-format
-msgid "Adapter card"
-msgstr ""
+msgid "Apply"
+msgstr "Tədbiq Et"
-#: ../lib/network/connection/dvb.pm:57
+#: ../bin/drakconnect:161 ../bin/drakconnect:943 ../bin/drakconnect:1034
+#: ../bin/draknetprofile:106 ../bin/net_monitor:341
#, c-format
-msgid "Net demux"
-msgstr ""
+msgid "Cancel"
+msgstr "Ləğv Et"
-#: ../lib/network/connection/dvb.pm:58
+#: ../bin/drakconnect:162 ../bin/drakconnect:858 ../bin/drakconnect:945
+#: ../bin/drakconnect:1035 ../bin/draknetprofile:108 ../bin/net_monitor:342
#, c-format
-msgid "PID"
-msgstr "PID"
+msgid "Ok"
+msgstr "Oldu"
-#: ../lib/network/connection/ethernet.pm:10
+#: ../bin/drakconnect:164 ../bin/drakconnect:636 ../bin/drakgw:359
+#: ../bin/draksambashare:208 ../lib/network/drakroam.pm:200
+#: ../lib/network/drakroam.pm:250
#, c-format
-msgid "Ethernet"
-msgstr ""
+msgid "Please wait"
+msgstr "Xahiş edirik, gözləyin"
-#: ../lib/network/connection/ethernet.pm:53
+#: ../bin/drakconnect:166 ../bin/drakconnect:638
#, c-format
-msgid "Unable to find network interface for selected device (using %s driver)."
-msgstr ""
+msgid "Please Wait... Applying the configuration"
+msgstr "Xahiş edirik, gözləyin... Qurğular tətbiq edilir"
-#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#: ../bin/drakconnect:192
#, c-format
-msgid "Manual configuration"
-msgstr "Əllə quraşdırma"
+msgid "Manage connections"
+msgstr "Bağlantıları idarə et"
-#: ../lib/network/connection/ethernet.pm:62
+#: ../bin/drakconnect:219 ../lib/network/drakroam.pm:346
#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Avtomatik IP (BOOTP/DHCP)"
+msgid "Device: "
+msgstr "Avadanlıq: "
-#: ../lib/network/connection/ethernet.pm:116
+#: ../bin/drakconnect:302
#, fuzzy, c-format
-msgid "IP settings"
-msgstr "PLL qurğusu:"
-
-#: ../lib/network/connection/ethernet.pm:125 ../lib/network/netconnect.pm:604
-#: ../lib/network/vpn/openvpn.pm:221 ../tools/drakconnect:113
-#: ../tools/drakconnect:321 ../tools/drakconnect:887 ../tools/drakhosts:196
-#, c-format
-msgid "IP address"
-msgstr "IP ünvanı"
-
-#: ../lib/network/connection/ethernet.pm:129
-#, 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)."
-msgstr ""
-"Xahiş edirik, bu kompüter üçün IP qurğularını girin.\n"
-"Hər üzv nöqtəli onluq IP şəklində girilməlidir,\n"
-"(misal üçün 1.2.3.4)."
+msgid "IP configuration"
+msgstr "CUPS quraşdırılması"
-#: ../lib/network/connection/ethernet.pm:132 ../tools/drakconnect:326
-#: ../tools/drakconnect:888 ../tools/drakgw:177
+#: ../bin/drakconnect:326 ../bin/drakconnect:889 ../bin/drakgw:177
+#: ../lib/network/connection/ethernet.pm:132
#, c-format
msgid "Netmask"
msgstr "Netmask"
-#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:636
-#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
-#: ../tools/drakconnect:332
+#: ../bin/drakconnect:332 ../lib/network/connection/ethernet.pm:133
+#: ../lib/network/netconnect.pm:636 ../lib/network/vpn/openvpn.pm:212
+#: ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "Şəbəkə Keçidi"
-#: ../lib/network/connection/ethernet.pm:136 ../tools/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DNS Verici IP'si"
+#: ../bin/drakconnect:337
+#, c-format
+msgid "DNS servers"
+msgstr "DNS vericiləri"
-#: ../lib/network/connection/ethernet.pm:138
+#: ../bin/drakconnect:343
#, c-format
-msgid "DNS server 1"
-msgstr "DNS vericisi 1"
+msgid "Search Domain"
+msgstr "Axtarış Sahəsi"
-#: ../lib/network/connection/ethernet.pm:139
+#: ../bin/drakconnect:351 ../bin/drakvpn-old:837
#, c-format
-msgid "DNS server 2"
-msgstr "DNS vericisi 2"
+msgid "none"
+msgstr "heç biri"
-#: ../lib/network/connection/ethernet.pm:140
+#: ../bin/drakconnect:351
#, c-format
-msgid "Search domain"
-msgstr "Axtarış domeni"
+msgid "static"
+msgstr "statik"
-#: ../lib/network/connection/ethernet.pm:141
+#: ../bin/drakconnect:351
#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
+msgid "DHCP"
+msgstr "DHCP"
-#: ../lib/network/connection/ethernet.pm:143 ../tools/drakconnect:369
-#: ../tools/drakconnect:891
+#: ../bin/drakconnect:369 ../bin/drakconnect:892
+#: ../lib/network/connection/ethernet.pm:143
#, c-format
msgid "DHCP client"
msgstr "DHCP alıcısı"
-#: ../lib/network/connection/ethernet.pm:144 ../tools/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Bağlantı vaxt dolması (saniyə sonra)"
-
-#: ../lib/network/connection/ethernet.pm:145 ../tools/drakconnect:383
+#: ../bin/drakconnect:373 ../lib/network/connection/ethernet.pm:200
#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:146 ../tools/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
+msgid "Assign host name from DHCP address"
+msgstr "DHCP ünvanı üçün qovşaq adı tə'yin edin"
-#: ../lib/network/connection/ethernet.pm:147 ../tools/drakconnect:375
+#: ../bin/drakconnect:375 ../lib/network/connection/ethernet.pm:147
#, c-format
msgid "DHCP host name"
msgstr "DHCP qovşaq adı"
-#: ../lib/network/connection/ethernet.pm:149
-#, c-format
-msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:160 ../tools/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../lib/network/connection/ethernet.pm:165 ../tools/drakconnect:680
+#: ../bin/drakconnect:379 ../lib/network/connection/ethernet.pm:144
#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../lib/network/connection/ethernet.pm:170
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "Xəbərdarlıq : %s IP ünvanı çox vaxt tutulmuş olur !"
-
-#: ../lib/network/connection/ethernet.pm:176
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s onsuzda istifadədədir\n"
-
-#: ../lib/network/connection/ethernet.pm:200 ../tools/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "DHCP ünvanı üçün qovşaq adı tə'yin edin"
-
-#: ../lib/network/connection/ethernet.pm:202 ../tools/drakhosts:196
-#, c-format
-msgid "Host name"
-msgstr "Ev sahibi adı"
-
-#: ../lib/network/connection/ethernet.pm:220 ../tools/drakconnect:440
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Ani Şəbəkə Fəallaşdırılması (Network Hotplugging)"
-
-#: ../lib/network/connection/ethernet.pm:224
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:277
-#, c-format
-msgid "Link beat detected on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:280
-#, c-format
-msgid "Requesting a network address on interface %s (%s protocol)..."
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:281
-#, c-format
-msgid "Got a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:282
-#, c-format
-msgid "Failed to get a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:8
-#, c-format
-msgid "ISDN"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
-#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
-#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
-#: ../lib/network/netconnect.pm:562
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "İSA / PCMCİA"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Bilmirəm"
-
-#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCİ"
-
-#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#. -PO: POTS means "Plain old telephone service"
-#: ../lib/network/connection/pots.pm:10
-#, c-format
-msgid "POTS"
-msgstr ""
-
-#. -PO: POTS means "Plain old telephone service"
-#. -PO: remove it if it doesn't have an equivalent in your language
-#. -PO: for example, in French, it can be translated as "RTC"
-#: ../lib/network/connection/pots.pm:16
-#, c-format
-msgid "Analog telephone modem (POTS)"
-msgstr ""
-
-#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:74
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Script-based"
-msgstr "Skript əsaslı"
-
-#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:75
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:76
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Terminal-based"
-msgstr "Terminal-əsaslı"
-
-#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:77
-#: ../tools/drakconnect:499
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:78
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: ../lib/network/connection/providers/cellular.pm:13
-#: ../lib/network/connection/providers/cellular.pm:18
-#: ../lib/network/connection/providers/cellular.pm:23
-#: ../lib/network/connection/providers/xdsl.pm:492
-#: ../lib/network/connection/providers/xdsl.pm:504
-#: ../lib/network/connection/providers/xdsl.pm:516
-#: ../lib/network/connection/providers/xdsl.pm:528
-#: ../lib/network/connection/providers/xdsl.pm:539
-#: ../lib/network/connection/providers/xdsl.pm:551
-#: ../lib/network/connection/providers/xdsl.pm:563
-#: ../lib/network/connection/providers/xdsl.pm:575
-#: ../lib/network/connection/providers/xdsl.pm:588
-#: ../lib/network/connection/providers/xdsl.pm:599
-#: ../lib/network/connection/providers/xdsl.pm:610
-#: ../lib/network/netconnect.pm:33
-#, c-format
-msgid "France"
-msgstr "Fransa"
-
-#: ../lib/network/connection/providers/xdsl.pm:47
-#: ../lib/network/connection/providers/xdsl.pm:57
-#, c-format
-msgid "Algeria"
-msgstr "Əlcəzair"
-
-#: ../lib/network/connection/providers/xdsl.pm:67
-#: ../lib/network/connection/providers/xdsl.pm:77
-#, c-format
-msgid "Argentina"
-msgstr "Argentina"
-
-#: ../lib/network/connection/providers/xdsl.pm:87
-#: ../lib/network/connection/providers/xdsl.pm:96
-#: ../lib/network/connection/providers/xdsl.pm:105
-#, c-format
-msgid "Austria"
-msgstr "Avstriya"
-
-#: ../lib/network/connection/providers/xdsl.pm:114
-#: ../lib/network/connection/providers/xdsl.pm:124
-#: ../lib/network/connection/providers/xdsl.pm:134
-#, c-format
-msgid "Australia"
-msgstr "Avstraliya"
-
-#: ../lib/network/connection/providers/xdsl.pm:144
-#: ../lib/network/connection/providers/xdsl.pm:153
-#: ../lib/network/connection/providers/xdsl.pm:164
-#: ../lib/network/connection/providers/xdsl.pm:173
-#: ../lib/network/connection/providers/xdsl.pm:182
-#: ../lib/network/netconnect.pm:36
-#, c-format
-msgid "Belgium"
-msgstr "Belçika"
-
-#: ../lib/network/connection/providers/xdsl.pm:191
-#: ../lib/network/connection/providers/xdsl.pm:201
-#: ../lib/network/connection/providers/xdsl.pm:210
-#: ../lib/network/connection/providers/xdsl.pm:219
-#, c-format
-msgid "Brazil"
-msgstr "Braziliya"
-
-#: ../lib/network/connection/providers/xdsl.pm:228
-#: ../lib/network/connection/providers/xdsl.pm:237
-#, c-format
-msgid "Bulgaria"
-msgstr "Bolqarıstan"
-
-#: ../lib/network/connection/providers/xdsl.pm:246
-#: ../lib/network/connection/providers/xdsl.pm:255
-#: ../lib/network/connection/providers/xdsl.pm:264
-#: ../lib/network/connection/providers/xdsl.pm:273
-#: ../lib/network/connection/providers/xdsl.pm:282
-#: ../lib/network/connection/providers/xdsl.pm:291
-#: ../lib/network/connection/providers/xdsl.pm:300
-#: ../lib/network/connection/providers/xdsl.pm:309
-#: ../lib/network/connection/providers/xdsl.pm:318
-#: ../lib/network/connection/providers/xdsl.pm:327
-#: ../lib/network/connection/providers/xdsl.pm:336
-#: ../lib/network/connection/providers/xdsl.pm:345
-#: ../lib/network/connection/providers/xdsl.pm:354
-#: ../lib/network/connection/providers/xdsl.pm:363
-#: ../lib/network/connection/providers/xdsl.pm:372
-#: ../lib/network/connection/providers/xdsl.pm:381
-#: ../lib/network/connection/providers/xdsl.pm:390
-#: ../lib/network/connection/providers/xdsl.pm:399
-#: ../lib/network/connection/providers/xdsl.pm:408
-#: ../lib/network/connection/providers/xdsl.pm:417
-#, c-format
-msgid "China"
-msgstr "Çin"
-
-#: ../lib/network/connection/providers/xdsl.pm:426
-#: ../lib/network/connection/providers/xdsl.pm:436
-#, c-format
-msgid "Czech Republic"
-msgstr "Çex Respublikası"
-
-#: ../lib/network/connection/providers/xdsl.pm:446
-#: ../lib/network/connection/providers/xdsl.pm:455
-#: ../lib/network/connection/providers/xdsl.pm:464
-#, c-format
-msgid "Denmark"
-msgstr "Danimarka"
-
-#: ../lib/network/connection/providers/xdsl.pm:473
-#, c-format
-msgid "Egypt"
-msgstr "Misir"
-
-#: ../lib/network/connection/providers/xdsl.pm:483
-#, c-format
-msgid "Finland"
-msgstr "Finlandiya"
-
-#: ../lib/network/connection/providers/xdsl.pm:621
-#: ../lib/network/connection/providers/xdsl.pm:630
-#: ../lib/network/connection/providers/xdsl.pm:640
-#, c-format
-msgid "Germany"
-msgstr "Almanya"
-
-#: ../lib/network/connection/providers/xdsl.pm:650
-#, c-format
-msgid "Greece"
-msgstr "Yunanıstan"
-
-#: ../lib/network/connection/providers/xdsl.pm:659
-#, c-format
-msgid "Hungary"
-msgstr "Macarıstan"
-
-#: ../lib/network/connection/providers/xdsl.pm:668
-#, c-format
-msgid "Ireland"
-msgstr "İrlandiya"
-
-#: ../lib/network/connection/providers/xdsl.pm:677
-#, c-format
-msgid "Israel"
-msgstr "İsrail"
-
-#: ../lib/network/connection/providers/xdsl.pm:687
-#, c-format
-msgid "India"
-msgstr "Hindistan"
-
-#: ../lib/network/connection/providers/xdsl.pm:696
-#: ../lib/network/connection/providers/xdsl.pm:705
-#, c-format
-msgid "Iceland"
-msgstr "İslandiya"
-
-#: ../lib/network/connection/providers/xdsl.pm:714
-#: ../lib/network/connection/providers/xdsl.pm:725
-#: ../lib/network/connection/providers/xdsl.pm:735
-#: ../lib/network/connection/providers/xdsl.pm:746
-#: ../lib/network/netconnect.pm:35
-#, c-format
-msgid "Italy"
-msgstr "İtaliya"
-
-#: ../lib/network/connection/providers/xdsl.pm:758
-#, c-format
-msgid "Sri Lanka"
-msgstr "Şri Lanka"
-
-#: ../lib/network/connection/providers/xdsl.pm:770
-#, c-format
-msgid "Lithuania"
-msgstr "Litva"
-
-#: ../lib/network/connection/providers/xdsl.pm:779
-#: ../lib/network/connection/providers/xdsl.pm:789
-#, c-format
-msgid "Mauritius"
-msgstr "Maurit"
-
-#: ../lib/network/connection/providers/xdsl.pm:800
-#, c-format
-msgid "Morocco"
-msgstr "Mərakeş"
-
-#: ../lib/network/connection/providers/xdsl.pm:810
-#: ../lib/network/connection/providers/xdsl.pm:819
-#: ../lib/network/connection/providers/xdsl.pm:828
-#: ../lib/network/connection/providers/xdsl.pm:837
-#: ../lib/network/netconnect.pm:34
-#, c-format
-msgid "Netherlands"
-msgstr "Hollandiya"
-
-#: ../lib/network/connection/providers/xdsl.pm:846
-#: ../lib/network/connection/providers/xdsl.pm:852
-#: ../lib/network/connection/providers/xdsl.pm:858
-#: ../lib/network/connection/providers/xdsl.pm:864
-#: ../lib/network/connection/providers/xdsl.pm:870
-#: ../lib/network/connection/providers/xdsl.pm:876
-#: ../lib/network/connection/providers/xdsl.pm:882
-#, c-format
-msgid "Norway"
-msgstr "Norvegiya"
-
-#: ../lib/network/connection/providers/xdsl.pm:890
-#, c-format
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#: ../lib/network/connection/providers/xdsl.pm:901
-#: ../lib/network/connection/providers/xdsl.pm:911
-#, c-format
-msgid "Poland"
-msgstr "Polşa"
-
-#: ../lib/network/connection/providers/xdsl.pm:922
-#, c-format
-msgid "Portugal"
-msgstr "Portuqaliya"
-
-#: ../lib/network/connection/providers/xdsl.pm:931
-#, c-format
-msgid "Russia"
-msgstr "Rusiya"
-
-#: ../lib/network/connection/providers/xdsl.pm:942
-#, c-format
-msgid "Singapore"
-msgstr "Sinqapur"
-
-#: ../lib/network/connection/providers/xdsl.pm:951
-#, c-format
-msgid "Senegal"
-msgstr "Seneqal"
-
-#: ../lib/network/connection/providers/xdsl.pm:961
-#, c-format
-msgid "Slovenia"
-msgstr "Sloveniya"
-
-#: ../lib/network/connection/providers/xdsl.pm:972
-#: ../lib/network/connection/providers/xdsl.pm:984
-#: ../lib/network/connection/providers/xdsl.pm:996
-#: ../lib/network/connection/providers/xdsl.pm:1009
-#: ../lib/network/connection/providers/xdsl.pm:1019
-#: ../lib/network/connection/providers/xdsl.pm:1029
-#: ../lib/network/connection/providers/xdsl.pm:1040
-#: ../lib/network/connection/providers/xdsl.pm:1050
-#: ../lib/network/connection/providers/xdsl.pm:1060
-#: ../lib/network/connection/providers/xdsl.pm:1070
-#: ../lib/network/connection/providers/xdsl.pm:1080
-#: ../lib/network/connection/providers/xdsl.pm:1090
-#: ../lib/network/connection/providers/xdsl.pm:1101
-#: ../lib/network/connection/providers/xdsl.pm:1112
-#: ../lib/network/connection/providers/xdsl.pm:1124
-#: ../lib/network/connection/providers/xdsl.pm:1136
-#, c-format
-msgid "Spain"
-msgstr "İspaniya"
-
-#: ../lib/network/connection/providers/xdsl.pm:1149
-#, c-format
-msgid "Sweden"
-msgstr "İsveç"
-
-#: ../lib/network/connection/providers/xdsl.pm:1158
-#: ../lib/network/connection/providers/xdsl.pm:1167
-#: ../lib/network/connection/providers/xdsl.pm:1177
-#, c-format
-msgid "Switzerland"
-msgstr "İsveçrə"
-
-#: ../lib/network/connection/providers/xdsl.pm:1186
-#, c-format
-msgid "Thailand"
-msgstr "Tayland"
-
-#: ../lib/network/connection/providers/xdsl.pm:1196
-#, c-format
-msgid "Tunisia"
-msgstr "Tunis"
-
-#: ../lib/network/connection/providers/xdsl.pm:1207
-#, c-format
-msgid "Turkey"
-msgstr "Türkiyə"
-
-#: ../lib/network/connection/providers/xdsl.pm:1220
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Birləşmiş Ərəb Əmirlikləri"
-
-#: ../lib/network/connection/providers/xdsl.pm:1230
-#: ../lib/network/connection/providers/xdsl.pm:1240
-#: ../lib/network/netconnect.pm:38
-#, c-format
-msgid "United Kingdom"
-msgstr "Birləşmiş Krallıq"
-
-#: ../lib/network/connection/wireless.pm:11
-#, c-format
-msgid "Wireless"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:21
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:38
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:39
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
+msgid "DHCP timeout (in seconds)"
+msgstr "Bağlantı vaxt dolması (saniyə sonra)"
-#: ../lib/network/connection/wireless.pm:40
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
+#: ../bin/drakconnect:382 ../lib/network/connection/ethernet.pm:136
+#, fuzzy, c-format
+msgid "Get DNS servers from DHCP"
+msgstr "DNS Verici IP'si"
-#: ../lib/network/connection/wireless.pm:181 ../lib/network/thirdparty.pm:174
+#: ../bin/drakconnect:383 ../lib/network/connection/ethernet.pm:145
#, c-format
-msgid "Firmware files are required for this device."
+msgid "Get YP servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:209
+#: ../bin/drakconnect:384 ../lib/network/connection/ethernet.pm:146
#, c-format
-msgid ""
-"Your wireless card is disabled, please enable the wireless switch (RF kill "
-"switch) first."
+msgid "Get NTPD servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:270
-#, fuzzy, c-format
-msgid "Wireless settings"
-msgstr "Kabelsiz bağlantı"
-
-#: ../lib/network/connection/wireless.pm:275 ../tools/drakconnect:406
-#: ../tools/drakroam:119
+#: ../bin/drakconnect:406 ../lib/network/connection/wireless.pm:312
+#: ../lib/network/drakroam.pm:282
#, c-format
msgid "Operating Mode"
msgstr "İdrə Modu"
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Ad-hoc"
-msgstr "Ad-hoc"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Managed"
-msgstr "İdarə edilən"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Master"
-msgstr "Əsas"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Repeater"
-msgstr "Təkrarlayıcı"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Secondary"
-msgstr "İkinci"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Auto"
-msgstr "Avtomatik"
-
-#: ../lib/network/connection/wireless.pm:279 ../tools/drakconnect:407
+#: ../bin/drakconnect:407 ../lib/network/connection/wireless.pm:316
#, c-format
msgid "Network name (ESSID)"
msgstr "Şəbəkə adı (ESSID)"
-#: ../lib/network/connection/wireless.pm:281
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:283 ../tools/drakconnect:421
-#, c-format
-msgid "Encryption key"
-msgstr "Şifrələmə açarı"
-
-#: ../lib/network/connection/wireless.pm:285 ../tools/drakconnect:408
+#: ../bin/drakconnect:408 ../lib/network/connection/wireless.pm:322
#, c-format
msgid "Network ID"
msgstr "Şəbəkə ID-si"
-#: ../lib/network/connection/wireless.pm:286 ../tools/drakconnect:409
+#: ../bin/drakconnect:409 ../lib/network/connection/wireless.pm:323
#, c-format
msgid "Operating frequency"
msgstr "İşləmə tezliyi"
-#: ../lib/network/connection/wireless.pm:287 ../tools/drakconnect:410
+#: ../bin/drakconnect:410 ../lib/network/connection/wireless.pm:324
#, c-format
msgid "Sensitivity threshold"
msgstr "Həssaslıq aralığı"
-#: ../lib/network/connection/wireless.pm:288 ../tools/drakconnect:411
+#: ../bin/drakconnect:411 ../lib/network/connection/wireless.pm:325
#, c-format
msgid "Bitrate (in b/s)"
msgstr "Vuruş sıxlığı (v/s olaraq)"
-#: ../lib/network/connection/wireless.pm:289 ../tools/drakconnect:422
+#: ../bin/drakconnect:421 ../lib/network/connection/wireless.pm:320
#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
+msgid "Encryption key"
+msgstr "Şifrələmə açarı"
-#: ../lib/network/connection/wireless.pm:290
+#: ../bin/drakconnect:422 ../lib/network/connection/wireless.pm:326
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
+msgid "RTS/CTS"
+msgstr "RTS/CTS"
-#: ../lib/network/connection/wireless.pm:297 ../tools/drakconnect:423
+#: ../bin/drakconnect:423 ../lib/network/connection/wireless.pm:334
#, c-format
msgid "Fragmentation"
msgstr "Fraqmentasiya"
-#: ../lib/network/connection/wireless.pm:298 ../tools/drakconnect:424
+#: ../bin/drakconnect:424 ../lib/network/connection/wireless.pm:335
#, c-format
msgid "iwconfig command extra arguments"
msgstr "iwconfig əmri əlavə arqumentləri"
-#: ../lib/network/connection/wireless.pm:299
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: ../lib/network/connection/wireless.pm:306 ../tools/drakconnect:425
+#: ../bin/drakconnect:425 ../lib/network/connection/wireless.pm:343
#, c-format
msgid "iwspy command extra arguments"
msgstr "iwspy əmri əlavə arqumentləri"
-#: ../lib/network/connection/wireless.pm:307
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:315 ../tools/drakconnect:426
+#: ../bin/drakconnect:426 ../lib/network/connection/wireless.pm:352
#, c-format
msgid "iwpriv command extra arguments"
msgstr "iwpriv əmri əlavə arqumentləri"
-#: ../lib/network/connection/wireless.pm:317
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:335
-#, c-format
-msgid "An encryption key is required."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:341
-#, 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 ""
-"Tezliyin yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 2.46 GHz "
-"tezlik üçün \"2.46G\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
-
-#: ../lib/network/connection/wireless.pm:347
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"Sıxlığın yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 11M üçün "
-"\"11M\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
-
-#: ../lib/network/connection/wireless.pm:359
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:460
-#, c-format
-msgid "Associated to wireless network \"%s\" on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:461
-#, c-format
-msgid "Lost association to wireless network on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:8
-#, fuzzy, c-format
-msgid "DSL"
-msgstr "SSL"
-
-#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB modem"
-
-#: ../lib/network/connection/xdsl.pm:104
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:176
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:179
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Dinamik Qovşaq Quraşdırma Protokolu (DHCP)"
-
-#: ../lib/network/connection/xdsl.pm:180
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Əllə TCP/IP quraşdırması"
-
-#: ../lib/network/connection/xdsl.pm:181
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "Nöqtədən Nöqtəyə Tunelləmə Protokolu (PPTP)"
-
-#: ../lib/network/connection/xdsl.pm:182
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "Eternet üstündən PPP (PPPoE)"
-
-#: ../lib/network/connection/xdsl.pm:183
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "ATM üstündən PPP (PPPoA)"
-
-#: ../lib/network/connection/xdsl.pm:223
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "Virtual Path ID (VPI):"
-
-#: ../lib/network/connection/xdsl.pm:224
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "Virtual Circuit ID (VCI):"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:27
-#: ../lib/network/ndiswrapper.pm:42 ../lib/network/ndiswrapper.pm:86
-#: ../lib/network/ndiswrapper.pm:102 ../lib/network/netconnect.pm:131
-#: ../lib/network/netconnect.pm:179 ../lib/network/netconnect.pm:268
-#: ../lib/network/netconnect.pm:813 ../lib/network/thirdparty.pm:114
-#: ../lib/network/thirdparty.pm:131 ../lib/network/thirdparty.pm:214
-#: ../lib/network/thirdparty.pm:216 ../lib/network/thirdparty.pm:237
-#: ../tools/drakconnect:676 ../tools/drakconnect:680 ../tools/drakconnect:689
-#: ../tools/drakconnect:705 ../tools/drakgw:184 ../tools/drakhosts:100
-#: ../tools/drakhosts:245 ../tools/drakhosts:252 ../tools/drakhosts:259
-#: ../tools/drakinvictus:72 ../tools/draknetprofile:113 ../tools/draknfs:85
-#: ../tools/draknfs:106 ../tools/draknfs:273 ../tools/draknfs:400
-#: ../tools/draknfs:402 ../tools/draknfs:405 ../tools/draknfs:497
-#: ../tools/draknfs:504 ../tools/draknfs:567 ../tools/draknfs:574
-#: ../tools/draknfs:581 ../tools/drakroam:79 ../tools/drakroam:92
-#: ../tools/draksambashare:372 ../tools/draksambashare:379
-#: ../tools/draksambashare:382 ../tools/draksambashare:428
-#: ../tools/draksambashare:452 ../tools/draksambashare:518
-#: ../tools/draksambashare:533 ../tools/draksambashare:611
-#: ../tools/draksambashare:678 ../tools/draksambashare:778
-#: ../tools/draksambashare:785 ../tools/draksambashare:916
-#: ../tools/draksambashare:1109 ../tools/draksambashare:1118
-#: ../tools/draksambashare:1140 ../tools/draksambashare:1149
-#: ../tools/draksambashare:1168 ../tools/draksambashare:1177
-#: ../tools/draksambashare:1189
-#, c-format
-msgid "Error"
-msgstr "Xəta"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/netconnect.pm:131 ../lib/network/thirdparty.pm:114
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Xorg paketi qurula bilmir: %s"
-
-#: ../lib/network/drakfirewall.pm:12
-#, c-format
-msgid "Web Server"
-msgstr "Veb Vericisi"
-
-#: ../lib/network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domen Adı Vericisi"
-
-#: ../lib/network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH vericisisi"
-
-#: ../lib/network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP vericisi"
-
-#: ../lib/network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Poçt Vericisi"
-
-#: ../lib/network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP və IMAP Vericisi"
-
-#: ../lib/network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "Telnet vericisi"
-
-#: ../lib/network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS vericisi"
-
-#: ../lib/network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo istəyi (ping)"
-
-#: ../lib/network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
-#, fuzzy, c-format
-msgid "Firewall configuration"
-msgstr "Əllə quraşdırma"
-
-#: ../lib/network/drakfirewall.pm:166
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"drakfirewall quraşdırıcısı\n"
-"\n"
-"Bu, Mandriva Linux sisteminiz üçün şəxsi bir atəş divarını quraşdıracaq.\n"
-"Daha güclü və e'tibarlı sistem üçün xahiş edirik, xüsusi Mandriva Security\n"
-"Firewall buraxılışı ilə maraqlanın."
-
-#: ../lib/network/drakfirewall.pm:172
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"drakfirewall quraşdırıcısı\n"
-"\n"
-"Daha irəli getmədən Şəbəkə/İnternet bağlantınızı drakconnect\n"
-"vasitəsi ilə quraşdırdığınızdan əmin olun."
-
-#: ../lib/network/drakfirewall.pm:189
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "İnternetin hansı xidmətlərə bağlana bilməsini istəyirsiniz?"
-
-#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
-#, c-format
-msgid "Firewall"
-msgstr "Atəş Divarı"
-
-#: ../lib/network/drakfirewall.pm:192
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Müxtəlif qapılar daxil edə bilərsiniz. \n"
-"Hökmlü nümunələr: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Mə'lumat üçün /etc/services'a baxın."
-
-#: ../lib/network/drakfirewall.pm:198
-#, fuzzy, 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.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Hökmsüz qapı daxil edildi: %s.\n"
-"Düzgün şəkil \"port/tcp\" ya da \"port/udp\"dır, \n"
-"burada qapı 1 və 65535 arası ədəddir."
-
-#: ../lib/network/drakfirewall.pm:208
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Hamısına (atəş divarı olmasın)"
-
-#: ../lib/network/drakfirewall.pm:210
-#, c-format
-msgid "Other ports"
-msgstr "Diqər qapılar"
-
-#: ../lib/network/drakfirewall.pm:211
-#, c-format
-msgid "Log firewall messages in system logs"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:255 ../lib/network/drakfirewall.pm:258
-#: ../tools/drakids:40 ../tools/drakids:65 ../tools/drakids:181
-#: ../tools/drakids:190 ../tools/drakids:215 ../tools/drakids:224
-#: ../tools/drakids:234 ../tools/drakids:326 ../tools/net_applet:77
-#: ../tools/net_applet:238 ../tools/net_applet:514 ../tools/net_applet:541
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Atəş Divarı"
-
-#: ../lib/network/drakfirewall.pm:256
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activities should be watched."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:261
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:30
-#, fuzzy, c-format
-msgid "VPN configuration"
-msgstr "CUPS quraşdırılması"
-
-#: ../lib/network/drakvpn.pm:34
-#, fuzzy, c-format
-msgid "Choose the VPN type"
-msgstr "Yeni böyüklüyü seçin"
-
-#: ../lib/network/drakvpn.pm:49
-#, c-format
-msgid "Initializing tools and detecting devices for %s..."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:52
-#, fuzzy, c-format
-msgid "Unable to initialize %s connection type!"
-msgstr "Namə'lum bağlantı növü"
-
-#: ../lib/network/drakvpn.pm:60
+#: ../bin/drakconnect:434
#, c-format
-msgid "Please select an existing VPN connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:64
-#, fuzzy, c-format
-msgid "Configure a new connection..."
-msgstr "Bağlantınız sınanır..."
-
-#: ../lib/network/drakvpn.pm:66
-#, fuzzy, c-format
-msgid "New name"
-msgstr "Həqiqi ad"
-
-#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
-#: ../lib/network/ndiswrapper.pm:92 ../lib/network/netconnect.pm:471
-#: ../tools/drakconnect:978 ../tools/draknetprofile:129
-#: ../tools/draknetprofile:131 ../tools/drakproxy:36
-#, c-format
-msgid "Warning"
-msgstr "Xəbərdarlıq"
-
-#: ../lib/network/drakvpn.pm:70
-#, c-format
-msgid "You must select an existing connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:81
-#, fuzzy, c-format
-msgid "Please enter the required key(s)"
-msgstr "Xahiş edirik, WebDAV vericisi URL-ni daxil edin"
-
-#: ../lib/network/drakvpn.pm:86
-#, fuzzy, c-format
-msgid "Please enter the settings of your VPN connection"
-msgstr "%s əksi ilə rabitə qurula bilmir"
-
-#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
-#, c-format
-msgid "Do you want to start the connection now?"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:100
-#, fuzzy, c-format
-msgid "Connection failed."
-msgstr "Bağlantı adı"
-
-#: ../lib/network/drakvpn.pm:108
-#, c-format
-msgid ""
-"The VPN connection is now configured.\n"
-"\n"
-"This VPN connection can be automatically started together with a network "
-"connection.\n"
-"It can be done by reconfiguring the network connection and selecting this "
-"VPN connection.\n"
-msgstr ""
-
-#: ../lib/network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Bölüşmə yoxdur"
-
-#: ../lib/network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Xidmət _növü:"
-
-#: ../lib/network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Şifrə (təkrar)"
-
-#: ../lib/network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: ../lib/network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Bu hadisə dəyişdirilib."
-
-#: ../lib/network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Bu hadisə dəyişdirilib."
-
-#: ../lib/network/ifw.pm:146
-#, c-format
-msgid ""
-"The \"%s\" application is trying to make a service (%s) available to the "
-"network."
-msgstr ""
-
-#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
-#: ../lib/network/ifw.pm:150
-#, fuzzy, c-format
-msgid "port %d"
-msgstr "Raport Göndər"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#, c-format
-msgid "Manual"
-msgstr "Bələdçi"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
-#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
-#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
-#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#: ../lib/network/netconnect.pm:638
-#, c-format
-msgid "Automatic"
-msgstr "Avtomatik"
-
-#: ../lib/network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:86
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:92
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:102
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:115
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Səbəbsiz bir sürücü seçilir"
-
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:118
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Sistemin qurulumu"
-
-#: ../lib/network/ndiswrapper.pm:129
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:37
-#, c-format
-msgid "United States"
-msgstr "Birləşmiş Ştatlar"
-
-#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
-#: ../lib/network/netconnect.pm:507
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "əllə"
-
-#: ../lib/network/netconnect.pm:60
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Daxili ISDN kart"
-
-#: ../lib/network/netconnect.pm:65
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Dünyanın geri qalanı üçün protokol"
-
-#: ../lib/network/netconnect.pm:67 ../tools/drakconnect:564
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Avropa protokolu (EDSS1)"
-
-#: ../lib/network/netconnect.pm:68 ../tools/drakconnect:565
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Dünyanın geri qalanı üçün protokol \n"
-" D-Channel yoxdur (kiralıq xətlər)"
-
-#: ../lib/network/netconnect.pm:118 ../tools/drakconnect:61
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "Şəbəkə və İnternet Qurğuları"
-
-#: ../lib/network/netconnect.pm:123
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Qurğulamaq istədiyiniz bağlantını seçin"
-
-#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
-#: ../lib/network/netconnect.pm:788
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "Quraşdırılacaq şəbəkə ara üzünü seç:"
-
-#: ../lib/network/netconnect.pm:164
-#, c-format
-msgid "No device can be found for this connection type."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:173
-#, fuzzy, c-format
-msgid "Hardware Configuration"
-msgstr "Şəbəkə Quraşdırılması"
-
-#: ../lib/network/netconnect.pm:177 ../tools/drakroam:90
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Quraşdırılır..."
-
-#: ../lib/network/netconnect.pm:194
-#, c-format
-msgid "Please select your provider:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:209 ../tools/drakroam:170
-#, fuzzy, c-format
-msgid "Scanning for networks..."
-msgstr "Şəbəkə yoxlanır..."
-
-#: ../lib/network/netconnect.pm:212
-#, c-format
-msgid "Please select your network:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:241
-#, c-format
-msgid ""
-"Please select your connection protocol.\n"
-"If you do not know it, keep the preselected protocol."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
-#, c-format
-msgid "Connection control"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Connection Configuration"
-msgstr "Bağlantı quraşdırılması"
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Xahiş edirik, aşağıdakıları doldurun ya da seçin"
-
-#: ../lib/network/netconnect.pm:318
-#, c-format
-msgid "Your personal phone number"
-msgstr "Şəxsi telefon nömrəniz"
-
-#: ../lib/network/netconnect.pm:319
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-
-#: ../lib/network/netconnect.pm:320 ../tools/drakconnect:494
-#, c-format
-msgid "Provider phone number"
-msgstr "İXM telefon nömrəsi"
-
-#: ../lib/network/netconnect.pm:321
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Provayder DNS-i 1 (arzuya görə)"
+msgid "Start at boot"
+msgstr "Açılışda başlat"
-#: ../lib/network/netconnect.pm:322
+#: ../bin/drakconnect:440 ../lib/network/connection/ethernet.pm:220
#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Provayder DNS-i 2 (arzuya görə)"
+msgid "Network Hotplugging"
+msgstr "Ani Şəbəkə Fəallaşdırılması (Network Hotplugging)"
-#: ../lib/network/netconnect.pm:323 ../tools/drakconnect:446
+#: ../bin/drakconnect:446 ../lib/network/netconnect.pm:323
#, c-format
msgid "Dialing mode"
msgstr "Yığma modu"
-#: ../lib/network/netconnect.pm:324 ../tools/drakconnect:451
-#: ../tools/drakconnect:518
+#: ../bin/drakconnect:451 ../bin/drakconnect:518
+#: ../lib/network/netconnect.pm:324
#, c-format
msgid "Connection speed"
msgstr "Bağlantı sürəti"
-#: ../lib/network/netconnect.pm:325 ../tools/drakconnect:456
+#: ../bin/drakconnect:456 ../lib/network/netconnect.pm:325
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Bağlantı vaxt dolması (saniyə sonra)"
-#: ../lib/network/netconnect.pm:328 ../tools/drakconnect:555
-#, c-format
-msgid "Card IRQ"
-msgstr "Kart IRQ"
-
-#: ../lib/network/netconnect.pm:329 ../tools/drakconnect:556
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Kart mem (DMA)"
-
-#: ../lib/network/netconnect.pm:330 ../tools/drakconnect:557
-#, c-format
-msgid "Card IO"
-msgstr "Kart GÇ"
-
-#: ../lib/network/netconnect.pm:331 ../tools/drakconnect:558
-#, c-format
-msgid "Card IO_0"
-msgstr "Kart IO_0"
-
-#: ../lib/network/netconnect.pm:332
-#, c-format
-msgid "Card IO_1"
-msgstr "Kart IO_1"
-
-#: ../lib/network/netconnect.pm:350 ../lib/network/netconnect.pm:385
-#: ../tools/drakconnect:719 ../tools/drakgw:123
-#, c-format
-msgid "Net Device"
-msgstr "Şəbəkə Avadanlığı"
-
-#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Xarici ISDN modem"
-
-#: ../lib/network/netconnect.pm:384
-#, c-format
-msgid "Select a device!"
-msgstr "Avadanlıq seçin !"
-
-#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
-#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN quraşdırılması"
-
-#: ../lib/network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Hansı növ kartınız var?"
-
-#: ../lib/network/netconnect.pm:404
-#, 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"
-"İSA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
-"\n"
-"PCMCİA kartınız var isə kartınızın \"irq\" və ya \"io\"sunu bilməlisiniz.\n"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Davam et"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Dayandır"
-
-#: ../lib/network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Hansı sizin ISDN kartınızdır?"
-
-#: ../lib/network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:434 ../tools/drakconnect:113
-#, c-format
-msgid "Driver"
-msgstr "Sürücü"
-
-#: ../lib/network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-
-#: ../lib/network/netconnect.pm:448 ../tools/drakconnect:113
-#: ../tools/drakconnect:305 ../tools/drakconnect:563 ../tools/drakids:252
-#: ../tools/drakvpn-old:839
-#, c-format
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"İnternet xidmət vericinizi seçin.\n"
-"Siyahıda deyilsə Siyahıda deyil'-i seçin."
-
-#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
-#, c-format
-msgid "Provider:"
-msgstr "Provayder: "
-
-#: ../lib/network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Modeminiz sistem tərəfindən dəstəklənmir.\n"
-"http://www.linmodems.org ünvanına baxın"
-
-#: ../lib/network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "Quraşdırılacaq modemi seçin:"
-
-#: ../lib/network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr "Modem"
-
-#: ../lib/network/netconnect.pm:527
-#, 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"
-
-#: ../lib/network/netconnect.pm:556
-#, c-format
-msgid "Select your provider:"
-msgstr "Provayderinizi seçin:"
-
-#: ../lib/network/netconnect.pm:580
-#, c-format
-msgid "Dialup: account options"
-msgstr "Dialup: hesab seçimləri"
-
-#: ../lib/network/netconnect.pm:583
-#, c-format
-msgid "Connection name"
-msgstr "Bağlantı adı"
-
-#: ../lib/network/netconnect.pm:584
-#, c-format
-msgid "Phone number"
-msgstr "Telefon nömrəsi"
-
-#: ../lib/network/netconnect.pm:585
-#, c-format
-msgid "Login ID"
-msgstr "Giriş adı"
-
-#: ../lib/network/netconnect.pm:586 ../lib/network/vpn/vpnc.pm:56
-#: ../tools/drakinvictus:110
-#, c-format
-msgid "Password"
-msgstr "Şifrə"
-
-#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "Dialup: IP parametrləri"
-
-#: ../lib/network/netconnect.pm:603
-#, c-format
-msgid "IP parameters"
-msgstr "IP parametrləri"
-
-#: ../lib/network/netconnect.pm:605
-#, c-format
-msgid "Subnet mask"
-msgstr "Subnet maskası"
-
-#: ../lib/network/netconnect.pm:617
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "Dialup: DNS parametrləri"
-
-#: ../lib/network/netconnect.pm:620
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: ../lib/network/netconnect.pm:621
-#, c-format
-msgid "Domain name"
-msgstr "Domen adı"
-
-#: ../lib/network/netconnect.pm:622 ../tools/drakconnect:996
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Birinci DNS Vericisi (arzuya görə)"
-
-#: ../lib/network/netconnect.pm:623 ../tools/drakconnect:997
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "İkinci DNS Vericisi (arzuya görə)"
-
-#: ../lib/network/netconnect.pm:624
-#, c-format
-msgid "Set hostname from IP"
-msgstr "IP-dən qovşaq adını seç"
-
-#: ../lib/network/netconnect.pm:637
-#, c-format
-msgid "Gateway IP address"
-msgstr "Şəbəkə keçişi IP ünvanı"
-
-#: ../lib/network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Açılışda başlat"
-
-#: ../lib/network/netconnect.pm:672
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:674
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:683
+#: ../bin/drakconnect:462 ../lib/network/connection.pm:165
#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-
-#: ../lib/network/netconnect.pm:696
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "İndi internetə bağlanmağı sınamaq istəyirsiniz?"
-
-#: ../lib/network/netconnect.pm:704 ../tools/drakconnect:1027
-#, c-format
-msgid "Testing your connection..."
-msgstr "Bağlantınız sınanır..."
-
-#: ../lib/network/netconnect.pm:723
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Sistem indi İnternetə bağlıdır."
-
-#: ../lib/network/netconnect.pm:724
-#, 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."
-
-#: ../lib/network/netconnect.pm:725
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Sisteminiz İnternetə bağlı görünmür.\n"
-"Bağlantınızı yenidən quraşdırın."
-
-#: ../lib/network/netconnect.pm:740
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Təbrik edirik, internet və şəbəkə quraşdırılması bitdi.\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:743
-#, 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."
-
-#: ../lib/network/netconnect.pm:744
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Quraşdırma sırasında xətalar yarandı.\n"
-"net_monitor ya da mcc vasitəsiylə bağlantınızı sınayın. Əgər "
-"bağlantınızyoxdursa, quraşdırmanı yenidən başladın."
-
-#: ../lib/network/netconnect.pm:756
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem USB modem"
-
-#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan modem"
-
-#: ../lib/network/netconnect.pm:759
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus modem"
-
-#: ../lib/network/netconnect.pm:760
-#, c-format
-msgid "LAN connection"
-msgstr "LAN bağlantısı"
-
-#: ../lib/network/netconnect.pm:761 ../tools/drakroam:29
-#, c-format
-msgid "Wireless connection"
-msgstr "Kabelsiz bağlantı"
-
-#: ../lib/network/netconnect.pm:762
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL bağlantısı"
-
-#: ../lib/network/netconnect.pm:763
-#, c-format
-msgid "Cable connection"
-msgstr "Kabel bağlantısı"
-
-#: ../lib/network/netconnect.pm:764
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN Bağlantısı"
-
-#: ../lib/network/netconnect.pm:765
-#, c-format
-msgid "Modem connection"
-msgstr "Modem bağlantısı"
-
-#: ../lib/network/netconnect.pm:766
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:768
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(%s qapısında tapıldı)"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected %s)"
-msgstr "(%s tapıldı)"
-
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected)"
-msgstr "(tapıldı)"
-
-#: ../lib/network/netconnect.pm:771
-#, c-format
-msgid "Network Configuration"
-msgstr "Şəbəkə Quraşdırılması"
-
-#: ../lib/network/netconnect.pm:772
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf qovşaq adı həlli"
-
-#: ../lib/network/netconnect.pm:773
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:777
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf Qovşaq adı"
-
-#: ../lib/network/netconnect.pm:778
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf qovşaq adı . (nöqtə) daxil edə bilməz"
-
-#: ../lib/network/netconnect.pm:779
-#, 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 onsuzda quruludur.\n"
-"Qurğuları saxlamaq üçün Oldu'ya, İnternet və Şəbəkə qurğularınızı yenidən "
-"quraşdırmaq üçün isə Ləğv et'ə basın.\n"
-
-#: ../lib/network/netconnect.pm:782
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Şəbəkə yenidən başladılmalıdır. Yenidən başlatmaq istəyirsiniz?"
-
-#: ../lib/network/netconnect.pm:783
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
-"\n"
-"%s"
-
-#: ../lib/network/netconnect.pm:784
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"İndi %s bağlantısı qurğulanacaq.\n"
-"\n"
-"\n"
-"Davam etmək üçün \"%s\" düyməsinə basın."
-
-#: ../lib/network/netconnect.pm:785
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Quraşdırma qurtardı, dəyişiklikləri tətbiq etmək istəyirsiniz ?"
-
-#: ../lib/network/netconnect.pm:786
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Siz İnternetə bağlanmanın bir neçə yöntəmini quraşdırmışsınız.\n"
-"İstifadə etmək istədiyinizi seçin.\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:787
-#, c-format
-msgid "Internet connection"
-msgstr "İnternet bağlantısı"
-
-#: ../lib/network/netconnect.pm:789
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "%s şəbəkə avadanlığı qurulur (sürücü %s) "
-
-#: ../lib/network/netconnect.pm:790
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:791
-#, 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 ""
-"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."
-
-#: ../lib/network/netconnect.pm:796
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:797
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS vericisi ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../lib/network/netconnect.pm:798 ../tools/drakconnect:689
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
-
-#: ../lib/network/netconnect.pm:799
-#, c-format
-msgid "Gateway device"
-msgstr "Şəbəkə keçidi avadanlığı"
-
-#: ../lib/network/netconnect.pm:813
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"Gözlənilməyən xəta baş verdi:\n"
-"%s"
-
-#: ../lib/network/network.pm:429
-#, c-format
-msgid "Proxies configuration"
-msgstr "Vəkil vericilər quraşdırılması"
-
-#: ../lib/network/network.pm:430
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: ../lib/network/network.pm:431
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP vəkil verici"
-
-#: ../lib/network/network.pm:432
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: ../lib/network/network.pm:433
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: ../lib/network/network.pm:434
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP vəkili"
-
-#: ../lib/network/network.pm:435
-#, fuzzy, c-format
-msgid "No proxy for (comma separated list):"
-msgstr "%d vergüllə ayrılmış qatar"
-
-#: ../lib/network/network.pm:440
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Vəkil http://... şəklində olmalıdır."
-
-#: ../lib/network/network.pm:441
-#, fuzzy, c-format
-msgid "Proxy should be http://... or https://..."
-msgstr "Vəkil http://... şəklində olmalıdır."
-
-#: ../lib/network/network.pm:442
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL 'ftp:' ya da 'http:' ilə başlamalıdır"
-
-#: ../lib/network/shorewall.pm:61
-#, c-format
-msgid ""
-"Please select the interfaces that will be protected by the firewall.\n"
-"\n"
-"All interfaces directly connected to Internet should be selected,\n"
-"while interfaces connected to a local network may be unselected.\n"
-"\n"
-"Which interfaces should be protected?\n"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:136
-#, c-format
-msgid "Keep custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:137
-#, c-format
-msgid "Drop custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:142
-#, c-format
-msgid ""
-"Your firewall configuration has been manually edited and contains\n"
-"rules that may conflict with the configuration that has just been set up.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:134
-#, c-format
-msgid "Some components (%s) are required but aren't available for %s hardware."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:135
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:137
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:138
-#, c-format
-msgid "The following component is missing: %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:140
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:177 ../lib/network/thirdparty.pm:182
-#, c-format
-msgid "Use a floppy"
-msgstr "Disket işlət"
-
-#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:185
-#, c-format
-msgid "Use my Windows partition"
-msgstr "Windows bölməmi işlət"
-
-#: ../lib/network/thirdparty.pm:179
-#, c-format
-msgid "Select file"
-msgstr "Fayl seç"
-
-#: ../lib/network/thirdparty.pm:190
-#, c-format
-msgid "Please select the firmware file (for example: %s)"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:214
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Siseminizdəki yazı növlərini silin"
-
-#: ../lib/network/thirdparty.pm:216
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:226
-#, c-format
-msgid "Insert floppy"
-msgstr "Disket daxil edin"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Kök cərgəsində %2$s olan FAT ilə şəkilləndirilmiş %1$s disketini taxın və %3"
-"$s düyməsinə basın"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid "Next"
-msgstr "Sonrakı"
-
-#: ../lib/network/thirdparty.pm:237
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Disketə icazə xətası, %s avadanlığı bağlana bilmədi"
-
-#: ../lib/network/thirdparty.pm:319
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:330
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Xahiş edirik gözləyin, avadanlıqlar tapılır və quraşdırılır..."
-
-#: ../lib/network/vpn/openvpn.pm:107
-#, c-format
-msgid "X509 Public Key Infrastructure"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:108
-#, c-format
-msgid "Static Key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:115
-#, c-format
-msgid "Type"
-msgstr "Növ"
-
-#. -PO: please don't translate the CA acronym
-#: ../lib/network/vpn/openvpn.pm:142
-#, c-format
-msgid "Certificate Authority (CA)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:148
-#, c-format
-msgid "Certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:154
-#, c-format
-msgid "Key"
-msgstr "Açarla"
-
-#: ../lib/network/vpn/openvpn.pm:160
-#, fuzzy, c-format
-msgid "TLS control channel key"
-msgstr "Sol Control düyməsi"
-
-#: ../lib/network/vpn/openvpn.pm:167
-#, c-format
-msgid "Key direction"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:175
-#, fuzzy, c-format
-msgid "Authenticate using username and password"
-msgstr "%s istifadəçi adı ilə giriş edilə bilmir (şifrəniz səhvdir?)"
-
-#: ../lib/network/vpn/openvpn.pm:181
-#, c-format
-msgid "Check server certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:187
-#, fuzzy, c-format
-msgid "Cipher algorithm"
-msgstr "Şifrələmə alqorifması"
-
-#: ../lib/network/vpn/openvpn.pm:191
-#, c-format
-msgid "Default"
-msgstr "Ön Qurğulu"
-
-#: ../lib/network/vpn/openvpn.pm:195
-#, c-format
-msgid "Size of cipher key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:206
-#, fuzzy, c-format
-msgid "Get from server"
-msgstr "Telnet vericisi"
-
-#: ../lib/network/vpn/openvpn.pm:216
-#, fuzzy, c-format
-msgid "Gateway port"
-msgstr "Şəbəkə Keçidi"
-
-#: ../lib/network/vpn/openvpn.pm:227 ../tools/drakgw:176
-#, fuzzy, c-format
-msgid "Local IP address"
-msgstr "IP ünvanı"
-
-#: ../lib/network/vpn/openvpn.pm:232
-#, fuzzy, c-format
-msgid "Remote IP address"
-msgstr "Şəbəkə keçişi IP ünvanı"
-
-#: ../lib/network/vpn/openvpn.pm:237
-#, fuzzy, c-format
-msgid "Use TCP protocol"
-msgstr "Protokol"
-
-#: ../lib/network/vpn/openvpn.pm:243
-#, c-format
-msgid "Virtual network device type"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:250
-#, c-format
-msgid "Virtual network device number (optional)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:365
-#, c-format
-msgid "Starting connection.."
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:380
-#, c-format
-msgid "Please insert your token"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:9
-#, c-format
-msgid "Cisco VPN Concentrator"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:43
-#, fuzzy, c-format
-msgid "Group name"
-msgstr "Qrup ID'si"
-
-#: ../lib/network/vpn/vpnc.pm:47
-#, c-format
-msgid "Group secret"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:52
-#, c-format
-msgid "Username"
-msgstr "İstifadəçi adı"
-
-#: ../lib/network/vpn/vpnc.pm:61
-#, c-format
-msgid "Use Cisco-UDP encapsulation"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:67
-#, c-format
-msgid "Use specific UDP port"
-msgstr ""
-
-#: ../tools/drakconnect:81
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Gateway:"
-msgstr "Şəbəkə Keçidi:"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Interface:"
-msgstr "Ara üz:"
-
-#: ../tools/drakconnect:97 ../tools/net_monitor:119
-#, c-format
-msgid "Wait please"
-msgstr "Xahiş edirik, gözləyin"
-
-#: ../tools/drakconnect:113 ../tools/drakinvictus:105
-#, c-format
-msgid "Interface"
-msgstr "Ara üz"
-
-#: ../tools/drakconnect:113
-#, c-format
-msgid "State"
-msgstr "Vəziyyət"
-
-#: ../tools/drakconnect:130
-#, c-format
-msgid "Hostname: "
-msgstr "Ev sahibi adı: "
-
-#: ../tools/drakconnect:132
-#, c-format
-msgid "Configure hostname..."
-msgstr "Qovşaq adını quraşdır..."
-
-#: ../tools/drakconnect:146 ../tools/drakconnect:850
-#, c-format
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə (lAN) quraşdırılması"
-
-#: ../tools/drakconnect:151
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: ../tools/drakconnect:157 ../tools/drakconnect:240 ../tools/draknfs:181
-#, c-format
-msgid "Help"
-msgstr "Yardım"
-
-#: ../tools/drakconnect:159 ../tools/drakconnect:241 ../tools/drakconnect:245
-#: ../tools/drakinvictus:140
-#, c-format
-msgid "Apply"
-msgstr "Tədbiq Et"
-
-#: ../tools/drakconnect:161 ../tools/drakconnect:942 ../tools/drakconnect:1033
-#: ../tools/draknetprofile:106 ../tools/net_monitor:341
-#, c-format
-msgid "Cancel"
-msgstr "Ləğv Et"
-
-#: ../tools/drakconnect:162 ../tools/drakconnect:857 ../tools/drakconnect:944
-#: ../tools/drakconnect:1034 ../tools/draknetprofile:108
-#: ../tools/net_monitor:342
-#, c-format
-msgid "Ok"
-msgstr "Oldu"
-
-#: ../tools/drakconnect:164 ../tools/drakconnect:636 ../tools/drakgw:359
-#: ../tools/drakroam:251 ../tools/drakroam:289 ../tools/draksambashare:208
-#, c-format
-msgid "Please wait"
-msgstr "Xahiş edirik, gözləyin"
+msgid "Metric"
+msgstr "məhdudlaşdır"
-#: ../tools/drakconnect:166 ../tools/drakconnect:638
+#: ../bin/drakconnect:482 ../lib/network/connection/cable.pm:48
+#: ../lib/network/netconnect.pm:587
#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Xahiş edirik, gözləyin... Qurğular tətbiq edilir"
+msgid "Authentication"
+msgstr "Tanıtma"
-#: ../tools/drakconnect:192
+#: ../bin/drakconnect:492 ../lib/network/connection/cable.pm:50
+#: ../lib/network/connection/ppp.pm:22 ../lib/network/netconnect.pm:326
+#: ../lib/network/vpn/openvpn.pm:393
#, c-format
-msgid "Manage connections"
-msgstr "Bağlantıları idarə et"
+msgid "Account Login (user name)"
+msgstr "Hesab Girişi (istifadəçi adı)"
-#: ../tools/drakconnect:219 ../tools/drakroam:302
+#: ../bin/drakconnect:493 ../lib/network/connection/cable.pm:52
+#: ../lib/network/connection/ppp.pm:23 ../lib/network/netconnect.pm:327
+#: ../lib/network/vpn/openvpn.pm:394
#, c-format
-msgid "Device: "
-msgstr "Avadanlıq: "
-
-#: ../tools/drakconnect:302
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "CUPS quraşdırılması"
+msgid "Account Password"
+msgstr "Hesap Şifrəsi"
-#: ../tools/drakconnect:337
+#: ../bin/drakconnect:494 ../lib/network/netconnect.pm:320
#, c-format
-msgid "DNS servers"
-msgstr "DNS vericiləri"
+msgid "Provider phone number"
+msgstr "İXM telefon nömrəsi"
-#: ../tools/drakconnect:343
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:10
+#: ../lib/network/netconnect.pm:75
#, c-format
-msgid "Search Domain"
-msgstr "Axtarış Sahəsi"
+msgid "PAP"
+msgstr "PAP"
-#: ../tools/drakconnect:351 ../tools/drakvpn-old:837
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:11
+#: ../lib/network/netconnect.pm:76
#, c-format
-msgid "none"
-msgstr "heç biri"
+msgid "Terminal-based"
+msgstr "Terminal-əsaslı"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:9
+#: ../lib/network/netconnect.pm:74
#, c-format
-msgid "static"
-msgstr "statik"
+msgid "Script-based"
+msgstr "Skript əsaslı"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:12
+#: ../lib/network/netconnect.pm:77
#, c-format
-msgid "DHCP"
-msgstr "DHCP"
+msgid "CHAP"
+msgstr "CHAP"
-#: ../tools/drakconnect:434
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:13
+#: ../lib/network/netconnect.pm:78
#, c-format
-msgid "Start at boot"
-msgstr "Açılışda başlat"
+msgid "PAP/CHAP"
+msgstr "PAP/CHAP"
-#: ../tools/drakconnect:516
+#: ../bin/drakconnect:516
#, c-format
msgid "Flow control"
msgstr "Flow idarəsi"
-#: ../tools/drakconnect:517
+#: ../bin/drakconnect:517
#, c-format
msgid "Line termination"
msgstr "Sətir sonlandırılması"
-#: ../tools/drakconnect:528
+#: ../bin/drakconnect:528
#, c-format
msgid "Modem timeout"
msgstr "Modem vaxt dolması"
-#: ../tools/drakconnect:532
+#: ../bin/drakconnect:532
#, c-format
msgid "Use lock file"
msgstr "Qıfıl faylını işlət"
-#: ../tools/drakconnect:534
+#: ../bin/drakconnect:534
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr "Zəng vurmadan əvvəl ton səsini gözləyin"
-#: ../tools/drakconnect:537
+#: ../bin/drakconnect:537
#, c-format
msgid "Busy wait"
msgstr "Məşğul gözləməsi"
-#: ../tools/drakconnect:542
+#: ../bin/drakconnect:542
#, c-format
msgid "Modem sound"
msgstr "Modem səsi"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "Fəallaşdır"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "Qeyri-fəallaşdır"
-#: ../tools/drakconnect:592
+#: ../bin/drakconnect:555 ../lib/network/netconnect.pm:328
+#, c-format
+msgid "Card IRQ"
+msgstr "Kart IRQ"
+
+#: ../bin/drakconnect:556 ../lib/network/netconnect.pm:329
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Kart mem (DMA)"
+
+#: ../bin/drakconnect:557 ../lib/network/netconnect.pm:330
+#, c-format
+msgid "Card IO"
+msgstr "Kart GÇ"
+
+#: ../bin/drakconnect:558 ../lib/network/netconnect.pm:331
+#, c-format
+msgid "Card IO_0"
+msgstr "Kart IO_0"
+
+#: ../bin/drakconnect:564 ../lib/network/netconnect.pm:67
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "Avropa protokolu (EDSS1)"
+
+#: ../bin/drakconnect:565 ../lib/network/netconnect.pm:68
+#, c-format
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"Dünyanın geri qalanı üçün protokol \n"
+" D-Channel yoxdur (kiralıq xətlər)"
+
+#: ../bin/drakconnect:592
#, c-format
msgid "Vendor"
msgstr "E'malatçı"
-#: ../tools/drakconnect:593
+#: ../bin/drakconnect:593
#, c-format
msgid "Description"
msgstr "İzahat"
-#: ../tools/drakconnect:594
+#: ../bin/drakconnect:594
#, c-format
msgid "Media class"
msgstr "Mediya sinifi"
-#: ../tools/drakconnect:595
+#: ../bin/drakconnect:595
#, c-format
msgid "Module name"
msgstr "Modul adı"
-#: ../tools/drakconnect:596
+#: ../bin/drakconnect:596
#, c-format
msgid "Mac Address"
msgstr "Mac Ünvanı"
-#: ../tools/drakconnect:597
+#: ../bin/drakconnect:597
#, c-format
msgid "Bus"
msgstr "Yol"
-#: ../tools/drakconnect:598
+#: ../bin/drakconnect:598
#, c-format
msgid "Location on the bus"
msgstr "Yol üstündə mövqe"
-#: ../tools/drakconnect:685 ../tools/drakconnect:766 ../tools/drakconnect:952
+#: ../bin/drakconnect:676 ../bin/drakconnect:680 ../bin/drakconnect:689
+#: ../bin/drakconnect:705 ../bin/drakgw:184 ../bin/drakhosts:100
+#: ../bin/drakhosts:245 ../bin/drakhosts:252 ../bin/drakhosts:259
+#: ../bin/drakinvictus:72 ../bin/draknetprofile:113 ../bin/draknfs:85
+#: ../bin/draknfs:106 ../bin/draknfs:276 ../bin/draknfs:409 ../bin/draknfs:411
+#: ../bin/draknfs:414 ../bin/draknfs:506 ../bin/draknfs:513 ../bin/draknfs:576
+#: ../bin/draknfs:583 ../bin/draknfs:590 ../bin/draksambashare:373
+#: ../bin/draksambashare:380 ../bin/draksambashare:383
+#: ../bin/draksambashare:429 ../bin/draksambashare:453
+#: ../bin/draksambashare:519 ../bin/draksambashare:534
+#: ../bin/draksambashare:612 ../bin/draksambashare:679
+#: ../bin/draksambashare:779 ../bin/draksambashare:786
+#: ../bin/draksambashare:917 ../bin/draksambashare:1110
+#: ../bin/draksambashare:1119 ../bin/draksambashare:1141
+#: ../bin/draksambashare:1150 ../bin/draksambashare:1169
+#: ../bin/draksambashare:1178 ../bin/draksambashare:1190
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakroam.pm:56 ../lib/network/drakroam.pm:69
+#: ../lib/network/drakvpn.pm:45 ../lib/network/drakvpn.pm:52
+#: ../lib/network/ndiswrapper.pm:27 ../lib/network/ndiswrapper.pm:42
+#: ../lib/network/ndiswrapper.pm:86 ../lib/network/ndiswrapper.pm:102
+#: ../lib/network/netconnect.pm:131 ../lib/network/netconnect.pm:179
+#: ../lib/network/netconnect.pm:268 ../lib/network/netconnect.pm:813
+#: ../lib/network/thirdparty.pm:115 ../lib/network/thirdparty.pm:132
+#: ../lib/network/thirdparty.pm:215 ../lib/network/thirdparty.pm:217
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Error"
+msgstr "Xəta"
+
+#: ../bin/drakconnect:676 ../lib/network/connection/ethernet.pm:160
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../bin/drakconnect:680 ../lib/network/connection/ethernet.pm:165
+#, fuzzy, c-format
+msgid "Netmask should be in format 255.255.224.0"
+msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../bin/drakconnect:685 ../bin/drakconnect:767 ../bin/drakconnect:953
#, c-format
msgid "No IP"
msgstr "IP yoxdur"
-#: ../tools/drakconnect:686 ../tools/drakconnect:767
+#: ../bin/drakconnect:686 ../bin/drakconnect:768
#, c-format
msgid "No Mask"
msgstr "Maskasız"
-#: ../tools/drakconnect:705 ../tools/drakgw:307
+#: ../bin/drakconnect:689 ../lib/network/netconnect.pm:798
+#, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../bin/drakconnect:705 ../bin/drakgw:307
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
@@ -2624,17 +542,23 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salın."
-#: ../tools/drakconnect:714
+#: ../bin/drakconnect:714
#, c-format
msgid "Remove a network interface"
msgstr "Şəbəkə ara üzünü sil"
-#: ../tools/drakconnect:718
+#: ../bin/drakconnect:718
#, c-format
msgid "Select the network interface to remove:"
msgstr "Silinəcək şəbəkə ara üzünü seç:"
-#: ../tools/drakconnect:750
+#: ../bin/drakconnect:719 ../bin/drakgw:123 ../lib/network/netconnect.pm:350
+#: ../lib/network/netconnect.pm:385
+#, c-format
+msgid "Net Device"
+msgstr "Şəbəkə Avadanlığı"
+
+#: ../bin/drakconnect:751
#, fuzzy, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
@@ -2645,53 +569,53 @@ msgstr ""
"\n"
"%s"
-#: ../tools/drakconnect:751
+#: ../bin/drakconnect:752
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr "Təbriklər, \"%s\" şəbəkə ara üzü müvəffəqiyyətlə silindi"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "up"
msgstr "yuxarı"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "down"
msgstr "aşağı"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Connected"
msgstr "Bağlandı"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Not connected"
msgstr "Bağlı deyil"
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Disconnect..."
msgstr "Bağlantını Kəs..."
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Connect..."
msgstr "Bağlan..."
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Deactivate now"
msgstr "İndi qeyri-fəallaşdır"
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Activate now"
msgstr "İndi fəallaşdır"
-#: ../tools/drakconnect:854
+#: ../bin/drakconnect:855
#, c-format
msgid ""
"You do not have any configured interface.\n"
@@ -2700,27 +624,27 @@ msgstr ""
"Qurulu ara üzünüz yoxdur.\n"
"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-#: ../tools/drakconnect:868
+#: ../bin/drakconnect:869
#, c-format
msgid "LAN Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../tools/drakconnect:880
+#: ../bin/drakconnect:881
#, c-format
msgid "Adapter %s: %s"
msgstr "%s Adapteri: %s"
-#: ../tools/drakconnect:889
+#: ../bin/drakconnect:890
#, c-format
msgid "Boot Protocol"
msgstr "Açılış Protokolu"
-#: ../tools/drakconnect:890
+#: ../bin/drakconnect:891
#, c-format
msgid "Started on boot"
msgstr "Açılışda başladılır"
-#: ../tools/drakconnect:926
+#: ../bin/drakconnect:927
#, fuzzy, c-format
msgid ""
"This interface has not been configured yet.\n"
@@ -2729,12 +653,20 @@ msgstr ""
"BU ara üz hələlik quraşdırılmayıb.\n"
"Ana pəncərədə quraşdırma sehirbazını işə salın"
-#: ../tools/drakconnect:974
+#: ../bin/drakconnect:975
#, c-format
msgid "Internet connection configuration"
msgstr "İnternet bağlantısının quraşdırılması"
-#: ../tools/drakconnect:980 ../tools/net_applet:68
+#: ../bin/drakconnect:979 ../bin/draknetprofile:129 ../bin/draknetprofile:131
+#: ../bin/drakproxy:36 ../lib/network/drakvpn.pm:70
+#: ../lib/network/drakvpn.pm:100 ../lib/network/ndiswrapper.pm:92
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid "Warning"
+msgstr "Xəbərdarlıq"
+
+#: ../bin/drakconnect:981 ../bin/net_applet:69
#, fuzzy, c-format
msgid ""
"You do not have any configured Internet connection.\n"
@@ -2744,52 +676,67 @@ msgstr ""
"Ana pəncərədə quraşdırma sehirbazını işə salın"
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: ../tools/drakconnect:981 ../tools/net_applet:69
+#: ../bin/drakconnect:982 ../bin/net_applet:70
#, fuzzy, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Şəbəkə ara üzünü sil"
-#: ../tools/drakconnect:995
+#: ../bin/drakconnect:996
#, c-format
msgid "Host name (optional)"
msgstr "Qovşaq adı (arzuya görə)"
-#: ../tools/drakconnect:998
+#: ../bin/drakconnect:997 ../lib/network/netconnect.pm:622
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "Birinci DNS Vericisi (arzuya görə)"
+
+#: ../bin/drakconnect:998 ../lib/network/netconnect.pm:623
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "İkinci DNS Vericisi (arzuya görə)"
+
+#: ../bin/drakconnect:999
#, fuzzy, c-format
msgid "Third DNS server (optional)"
msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../tools/drakconnect:1020
+#: ../bin/drakconnect:1021
#, c-format
msgid "Internet Connection Configuration"
msgstr "İnternet Bağlantısı Quraşdırılması"
-#: ../tools/drakconnect:1021
+#: ../bin/drakconnect:1022
#, c-format
msgid "Internet access"
msgstr "İnternet yetişməsi"
-#: ../tools/drakconnect:1023 ../tools/net_monitor:98
+#: ../bin/drakconnect:1024 ../bin/net_monitor:98
#, c-format
msgid "Connection type: "
msgstr "Bağlantı növü:"
-#: ../tools/drakconnect:1026
+#: ../bin/drakconnect:1027
#, c-format
msgid "Status:"
msgstr "Vəziyyət:"
-#: ../tools/drakconnect:1031
+#: ../bin/drakconnect:1028 ../lib/network/netconnect.pm:704
+#, c-format
+msgid "Testing your connection..."
+msgstr "Bağlantınız sınanır..."
+
+#: ../bin/drakconnect:1032
#, c-format
msgid "Parameters"
msgstr "Parametrlər"
-#: ../tools/drakgw:71
+#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../tools/drakgw:75
+#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -2811,7 +758,7 @@ msgstr ""
"\n"
"Qeyd: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə ehtiyacınız var."
-#: ../tools/drakgw:91
+#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
@@ -2824,7 +771,7 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../tools/drakgw:95
+#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -2837,17 +784,17 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../tools/drakgw:101
+#: ../bin/drakgw:101
#, c-format
msgid "Reconfigure"
msgstr "Yenidən Qur"
-#: ../tools/drakgw:122
+#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""
-#: ../tools/drakgw:141
+#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -2862,7 +809,7 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../tools/drakgw:152
+#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
@@ -2871,37 +818,42 @@ msgstr ""
"Xahiş edirik, Yerli Sahə Şəbəkənizə (LAN) bağlanacaq şəbəkə avadanlığını "
"seçin."
-#: ../tools/drakgw:173
+#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "Yerli Şəbəkə ünvanı"
-#: ../tools/drakgw:178
+#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
+#, fuzzy, c-format
+msgid "Local IP address"
+msgstr "IP ünvanı"
+
+#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr "Daxili domen adı"
-#: ../tools/drakgw:184
+#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Hazırkı %s quğusunda bir LAN ünvan toqquşması tapıldı!\n"
-#: ../tools/drakgw:200
+#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "Terminal Server Quraşdırılması"
-#: ../tools/drakgw:204
+#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""
-#: ../tools/drakgw:205
+#: ../bin/drakgw:205
#, c-format
msgid "The DNS Server IP"
msgstr "DNS Verici IP'si"
-#: ../tools/drakgw:232
+#: ../bin/drakgw:232
#, fuzzy, c-format
msgid ""
"DHCP Server Configuration.\n"
@@ -2915,77 +867,77 @@ msgstr ""
"Əgər bir seçimin mə'nasını bilmirsinizsə, onu olduğu kimi saxlayın.\n"
"\n"
-#: ../tools/drakgw:239
+#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "Avtomatik yenidən quraşdırma"
-#: ../tools/drakgw:240
+#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr "The DHCP başlama aralığı"
-#: ../tools/drakgw:241
+#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr "DHCP son silsiləsi"
-#: ../tools/drakgw:242
+#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr "Əsas icarə (saniyə olaraq)"
-#: ../tools/drakgw:243
+#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr "Maksimal icarə (saniyə olaraq)"
-#: ../tools/drakgw:266
+#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""
-#: ../tools/drakgw:270
+#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""
-#: ../tools/drakgw:271
+#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""
-#: ../tools/drakgw:272
+#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "Uzaq qovşaq adı"
-#: ../tools/drakgw:273
+#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "Xassə"
-#: ../tools/drakgw:274
+#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "Ön yaddaş böyüklüyü"
-#: ../tools/drakgw:296
+#: ../bin/drakgw:296
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "Sabit disk mə'lumatı"
-#: ../tools/drakgw:313
+#: ../bin/drakgw:313
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../tools/drakgw:319
+#: ../bin/drakgw:319
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../tools/drakgw:325
+#: ../bin/drakgw:325
#, fuzzy, c-format
msgid ""
"Everything has been configured.\n"
@@ -2998,17 +950,17 @@ msgstr ""
"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../tools/drakgw:359
+#: ../bin/drakgw:359
#, c-format
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../tools/drakgw:373
+#: ../bin/drakgw:373
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Atəş divarı quruluşu tapıldı!"
-#: ../tools/drakgw:374
+#: ../bin/drakgw:374
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
@@ -3017,329 +969,348 @@ msgstr ""
"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
"gəzdirə bilərsiniz."
-#: ../tools/drakgw:379
+#: ../bin/drakgw:379
#, c-format
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../tools/drakgw:380
+#: ../bin/drakgw:380
#, c-format
msgid "Configuring firewall..."
msgstr ""
-#: ../tools/drakhosts:100
+#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""
-#: ../tools/drakhosts:110
+#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "Ətraflı mə'lumatı"
-#: ../tools/drakhosts:111
+#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "Ətraflı mə'lumatı"
-#: ../tools/drakhosts:112
+#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "Ətraflı mə'lumatı"
-#: ../tools/drakhosts:116
+#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "IP Ünvanı:"
-#: ../tools/drakhosts:117
+#: ../bin/drakhosts:117
#, c-format
msgid "Host name:"
msgstr "Kompüter adı:"
-#: ../tools/drakhosts:118
+#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "Ev sahibi adı"
-#: ../tools/drakhosts:122 ../tools/drakhosts:128 ../tools/draksambashare:209
-#: ../tools/draksambashare:230 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:209
+#: ../bin/draksambashare:230 ../bin/draksambashare:377
+#: ../bin/draksambashare:608 ../bin/draksambashare:775
#, c-format
msgid "Error!"
msgstr "Xəta!"
-#: ../tools/drakhosts:122
+#: ../bin/drakhosts:122
#, fuzzy, c-format
msgid "Please enter a valid IP address."
msgstr "Şəbəkə keçişi IP ünvanı"
-#: ../tools/drakhosts:128
+#: ../bin/drakhosts:128
#, fuzzy, c-format
msgid "Same IP is already in %s file."
msgstr "%s onsuzda istifadədədir\n"
-#: ../tools/drakhosts:196
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:202
+#, c-format
+msgid "Host name"
+msgstr "Ev sahibi adı"
+
+#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "Ev sahibi adı"
-#: ../tools/drakhosts:206 ../tools/drakhosts:236
+#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, fuzzy, c-format
msgid "Manage hosts definitions"
msgstr "Bağlantıları idarə et"
-#: ../tools/drakhosts:222 ../tools/drakhosts:249
+#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""
-#: ../tools/drakhosts:241 ../tools/draknfs:563 ../tools/draksambashare:1102
-#: ../tools/draksambashare:1133 ../tools/draksambashare:1164
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakhosts:241 ../bin/draknfs:572 ../bin/draksambashare:1103
+#: ../bin/draksambashare:1134 ../bin/draksambashare:1165
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "Əlavə et"
-#: ../tools/drakhosts:242
+#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "Çapçı Əlavə Et"
-#: ../tools/drakhosts:245
+#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""
-#: ../tools/drakhosts:248 ../tools/draknfs:570 ../tools/draksambashare:1059
-#: ../tools/draksambashare:1104 ../tools/draksambashare:1135
-#: ../tools/draksambashare:1172
+#: ../bin/drakhosts:248 ../bin/draknfs:579 ../bin/draksambashare:1060
+#: ../bin/draksambashare:1105 ../bin/draksambashare:1136
+#: ../bin/draksambashare:1173
#, c-format
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../tools/drakhosts:252
+#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""
-#: ../tools/drakhosts:255 ../tools/drakids:87 ../tools/drakids:96
-#: ../tools/draknfs:577 ../tools/draksambashare:1060
-#: ../tools/draksambashare:1112 ../tools/draksambashare:1143
-#: ../tools/draksambashare:1180 ../tools/drakvpn-old:253
-#: ../tools/drakvpn-old:391
+#: ../bin/drakhosts:255 ../bin/drakids:87 ../bin/drakids:96 ../bin/draknfs:586
+#: ../bin/draksambashare:1061 ../bin/draksambashare:1113
+#: ../bin/draksambashare:1144 ../bin/draksambashare:1181
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "Sil"
-#: ../tools/drakhosts:259
+#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""
-#: ../tools/drakhosts:262 ../tools/drakinvictus:141
-#: ../tools/draknetprofile:147 ../tools/drakroam:309 ../tools/net_applet:138
+#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:147
+#: ../bin/net_applet:139 ../lib/network/drakroam.pm:353
#, c-format
msgid "Quit"
msgstr "Çıx"
-#: ../tools/drakids:28
+#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "Bütün istifadəçilərə icazə ver"
-#: ../tools/drakids:65 ../tools/drakids:181 ../tools/drakids:190
-#: ../tools/drakids:215 ../tools/drakids:224 ../tools/drakids:234
-#: ../tools/drakids:326 ../tools/net_applet:238 ../tools/net_applet:514
+#: ../bin/drakids:40 ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190
+#: ../bin/drakids:215 ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:78 ../bin/net_applet:239 ../bin/net_applet:519
+#: ../bin/net_applet:546 ../lib/network/drakfirewall.pm:255
+#: ../lib/network/drakfirewall.pm:258
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "Atəş Divarı"
+
+#: ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190 ../bin/drakids:215
+#: ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:239 ../bin/net_applet:519
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "%s əksi ilə rabitə qurula bilmir"
-#: ../tools/drakids:74 ../tools/drakids:102
+#: ../bin/drakids:74 ../bin/drakids:102
#, c-format
msgid "Log"
msgstr "Qeyd"
-#: ../tools/drakids:78 ../tools/drakids:97 ../tools/net_applet:659
+#: ../bin/drakids:78 ../bin/drakids:97 ../bin/net_applet:663
#, fuzzy, c-format
msgid "Allow"
msgstr "Hamısı"
-#: ../tools/drakids:79 ../tools/drakids:88 ../tools/net_applet:660
+#: ../bin/drakids:79 ../bin/drakids:88 ../bin/net_applet:664
#, c-format
msgid "Block"
msgstr ""
-#: ../tools/drakids:80 ../tools/drakids:89 ../tools/drakids:98
-#: ../tools/drakids:109 ../tools/drakids:122 ../tools/drakids:130
-#: ../tools/draknfs:186 ../tools/net_monitor:120
+#: ../bin/drakids:80 ../bin/drakids:89 ../bin/drakids:98 ../bin/drakids:109
+#: ../bin/drakids:122 ../bin/drakids:130 ../bin/draknfs:188
+#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "Bağla"
-#: ../tools/drakids:83
+#: ../bin/drakids:83
#, fuzzy, c-format
msgid "Allowed services"
msgstr "Bütün istifadəçilərə icazə ver"
-#: ../tools/drakids:92
+#: ../bin/drakids:92
#, fuzzy, c-format
msgid "Blocked services"
msgstr "İstifadəçi fayllarının ehtiyat nüsxəsini çıxart"
-#: ../tools/drakids:106
+#: ../bin/drakids:106
#, fuzzy, c-format
msgid "Clear logs"
msgstr "Hamısını təmizlə"
-#: ../tools/drakids:107 ../tools/drakids:112 ../tools/net_applet:602
+#: ../bin/drakids:107 ../bin/drakids:112 ../bin/net_applet:607
#, c-format
msgid "Blacklist"
msgstr ""
-#: ../tools/drakids:108 ../tools/drakids:125 ../tools/net_applet:607
+#: ../bin/drakids:108 ../bin/drakids:125 ../bin/net_applet:612
#, c-format
msgid "Whitelist"
msgstr ""
-#: ../tools/drakids:116
+#: ../bin/drakids:116
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "LVMdən ayır"
-#: ../tools/drakids:117
+#: ../bin/drakids:117
#, c-format
msgid "Move to whitelist"
msgstr ""
-#: ../tools/drakids:129
+#: ../bin/drakids:129
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "LVMdən ayır"
-#: ../tools/drakids:247
+#: ../bin/drakids:247
#, c-format
msgid "Date"
msgstr "Tarix"
-#: ../tools/drakids:248
+#: ../bin/drakids:248
#, fuzzy, c-format
msgid "Attacker"
msgstr "Təfsilatsız"
-#: ../tools/drakids:249
+#: ../bin/drakids:249
#, fuzzy, c-format
msgid "Attack type"
msgstr "Çatma şəkli: %s\n"
-#: ../tools/drakids:250 ../tools/drakids:283
+#: ../bin/drakids:250 ../bin/drakids:283
#, c-format
msgid "Service"
msgstr "Xidmət"
-#: ../tools/drakids:251
+#: ../bin/drakids:251
#, c-format
msgid "Network interface"
msgstr "Şəbəkə ara üzü"
-#: ../tools/drakids:282
+#: ../bin/drakids:282
#, c-format
msgid "Application"
msgstr "Proqram"
-#: ../tools/drakids:284
+#: ../bin/drakids:284
#, c-format
msgid "Status"
msgstr "Vəziyyət"
-#: ../tools/drakids:286
+#: ../bin/drakids:286
#, fuzzy, c-format
msgid "Allowed"
msgstr "Hamısı"
-#: ../tools/drakids:287
+#: ../bin/drakids:287
#, c-format
msgid "Blocked"
msgstr ""
-#: ../tools/drakinvictus:36
+#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr ""
-#: ../tools/drakinvictus:53
+#: ../bin/drakinvictus:53
#, fuzzy, c-format
msgid "Start as master"
msgstr "Açılışda başladılır"
-#: ../tools/drakinvictus:72
+#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "Şifrə lazımdır"
-#: ../tools/drakinvictus:100
+#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
-#: ../tools/drakinvictus:102
+#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "Mac Ünvanı"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual shared address"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""
-#: ../tools/drakinvictus:114
+#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:586
+#: ../lib/network/vpn/vpnc.pm:56
+#, c-format
+msgid "Password"
+msgstr "Şifrə"
+
+#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "Son həlledilirlik"
-#: ../tools/drakinvictus:116
+#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""
-#: ../tools/drakinvictus:123
+#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "Sinxronlaşdırma vasitəsi"
-#: ../tools/drakinvictus:132
+#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "Bağlantı"
-#: ../tools/draknetprofile:36
+#: ../bin/draknetprofile:36
#, fuzzy, c-format
msgid "Network profiles"
msgstr "Şəbəkə Seçimləri"
-#: ../tools/draknetprofile:67
+#: ../bin/draknetprofile:67
#, fuzzy, c-format
msgid "Profile"
msgstr "Profiller"
-#: ../tools/draknetprofile:99
+#: ../bin/draknetprofile:99
#, c-format
msgid "New profile..."
msgstr "Yeni profil..."
-#: ../tools/draknetprofile:102
+#: ../bin/draknetprofile:102
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
@@ -3348,131 +1319,131 @@ msgstr ""
"Yaradılacaq profilin adı (yeni profil hazırkının bir nüsxəsi olaraq "
"yaradılacaqdır):"
-#: ../tools/draknetprofile:113
+#: ../bin/draknetprofile:113
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr "\"%s\" profili onsuz da mövcuddur!"
-#: ../tools/draknetprofile:129
+#: ../bin/draknetprofile:129
#, c-format
msgid "You can not delete the default profile"
msgstr ""
-#: ../tools/draknetprofile:131
+#: ../bin/draknetprofile:131
#, c-format
msgid "You can not delete the current profile"
msgstr "Hazırkı profili silə bilməzsiniz"
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""
-#: ../tools/draknetprofile:144
+#: ../bin/draknetprofile:144
#, c-format
msgid "Activate"
msgstr "İşə Sal"
-#: ../tools/draknetprofile:145
+#: ../bin/draknetprofile:145
#, fuzzy, c-format
msgid "Clone"
msgstr "Bağlan"
-#: ../tools/draknetprofile:146
+#: ../bin/draknetprofile:146
#, c-format
msgid "Delete"
msgstr "Sil"
-#: ../tools/draknfs:41
+#: ../bin/draknfs:41
#, c-format
msgid "map root user as anonymous"
msgstr ""
-#: ../tools/draknfs:42
+#: ../bin/draknfs:42
#, c-format
msgid "map all users to anonymous user"
msgstr ""
-#: ../tools/draknfs:43
+#: ../bin/draknfs:43
#, c-format
msgid "No user UID mapping"
msgstr ""
-#: ../tools/draknfs:44
+#: ../bin/draknfs:44
#, c-format
msgid "allow real remote root access"
msgstr ""
-#: ../tools/draknfs:58 ../tools/draknfs:59 ../tools/draknfs:60
-#: ../tools/draksambashare:161 ../tools/draksambashare:162
-#: ../tools/draksambashare:163
+#: ../bin/draknfs:58 ../bin/draknfs:59 ../bin/draknfs:60
+#: ../bin/draksambashare:161 ../bin/draksambashare:162
+#: ../bin/draksambashare:163
#, c-format
msgid "/_File"
msgstr "/_Fayl"
-#: ../tools/draknfs:59 ../tools/draksambashare:162
+#: ../bin/draknfs:59 ../bin/draksambashare:162
#, c-format
msgid "/_Write conf"
msgstr ""
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "/_Quit"
msgstr "/Çı_x"
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
-#: ../tools/draknfs:63 ../tools/draknfs:64 ../tools/draknfs:65
+#: ../bin/draknfs:63 ../bin/draknfs:64 ../bin/draknfs:65
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "DNS vericiləri"
-#: ../tools/draknfs:64 ../tools/draksambashare:166
+#: ../bin/draknfs:64 ../bin/draksambashare:166
#, c-format
msgid "/_Restart"
msgstr ""
-#: ../tools/draknfs:65 ../tools/draksambashare:167
+#: ../bin/draknfs:65 ../bin/draksambashare:167
#, c-format
msgid "/R_eload"
msgstr ""
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "NFS server"
msgstr "NFS vericisi"
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""
-#: ../tools/draknfs:85
+#: ../bin/draknfs:85
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""
-#: ../tools/draknfs:101 ../tools/draksambashare:225
+#: ../bin/draknfs:101 ../bin/draksambashare:225
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "İstiqamət"
-#: ../tools/draknfs:106 ../tools/draksambashare:230
+#: ../bin/draknfs:106 ../bin/draksambashare:230
#, c-format
msgid "Should be a directory."
msgstr ""
-#: ../tools/draknfs:137
+#: ../bin/draknfs:137
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
@@ -3499,7 +1470,7 @@ msgid ""
"result.\n"
msgstr ""
-#: ../tools/draknfs:152
+#: ../bin/draknfs:152
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
@@ -3525,27 +1496,32 @@ msgid ""
"the uid and gid of the anonymous account.\n"
msgstr ""
-#: ../tools/draknfs:168
+#: ../bin/draknfs:168
#, c-format
msgid "Synchronous access:"
msgstr ""
-#: ../tools/draknfs:169
+#: ../bin/draknfs:169
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "İnternet bağlantısı"
-#: ../tools/draknfs:170
+#: ../bin/draknfs:170
#, c-format
msgid "Read-Only share:"
msgstr ""
-#: ../tools/draknfs:172
+#: ../bin/draknfs:171
+#, c-format
+msgid "Subtree checking:"
+msgstr ""
+
+#: ../bin/draknfs:173
#, c-format
msgid "Advanced Options"
msgstr ""
-#: ../tools/draknfs:173
+#: ../bin/draknfs:174
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
@@ -3553,7 +1529,7 @@ msgid ""
"is on by default."
msgstr ""
-#: ../tools/draknfs:174
+#: ../bin/draknfs:175
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
@@ -3562,7 +1538,7 @@ msgid ""
"using this option."
msgstr ""
-#: ../tools/draknfs:175
+#: ../bin/draknfs:176
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
@@ -3570,747 +1546,694 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: ../tools/draknfs:180 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draknfs:177
+#, c-format
+msgid ""
+"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "Mə'lumat"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "Qovluq"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "Qovluq:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "Ev sahibi adı"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr "İcazə:"
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr ""
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "Xahiş edirik, icmal mətnini daxil edin."
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr "Ümumi Qurğular"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: ../tools/drakroam:61
-#, c-format
-msgid "No device found"
-msgstr "Heç bir avadanlıq tapıla bilmədi"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "Ətraflı mə'lumatı"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "Enkripsiya"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, fuzzy, c-format
-msgid "Connecting..."
-msgstr "Bağlan..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Disconnect"
-msgstr "Bağlantını kəs"
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "Bağlan"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "Bağlantını Kəs..."
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "Qur"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "Yenilə"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "Belə cərgə yoxdur!"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, c-format
msgid "Comment"
msgstr "Şərh"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "Gəz"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr "İctimai"
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, fuzzy, c-format
msgid "Writable"
msgstr "Yaz"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "Yarat"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "Bütün ehtiyat nüsxələri geri yüklə"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "Oxu"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "Yaz"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "İstifadəçini əlavə et"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "İstifadəçini əlavə et"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "Səlahiyyətlər"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "Faylları gizlət"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, c-format
msgid "Hide files"
msgstr "Faylları gizlət"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "Qurğular"
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, fuzzy, c-format
msgid "Force create mode"
msgstr "Çapçınızın modeli"
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "PFS qrupu"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "Əsas istifadəçi"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "Çapçı adı"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "Cığır"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, c-format
msgid "Printable"
msgstr "Çap edilə bilən"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "Əmr"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "Əmr"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "Səlahiyyətlər"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "Çap"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "Kart modeli:"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"
msgstr "Telnet vericisi"
-#: ../tools/draksambashare:142
+#: ../bin/draksambashare:142
#, fuzzy, c-format
msgid "Read List"
msgstr "Siyahını Sil"
-#: ../tools/draksambashare:143
+#: ../bin/draksambashare:143
#, fuzzy, c-format
msgid "Write List"
msgstr "Yaz"
-#: ../tools/draksambashare:148
+#: ../bin/draksambashare:148
#, fuzzy, c-format
msgid "Force Group"
msgstr "Qrup"
-#: ../tools/draksambashare:149
+#: ../bin/draksambashare:149
#, c-format
msgid "Force create group"
msgstr ""
-#: ../tools/draksambashare:165 ../tools/draksambashare:166
-#: ../tools/draksambashare:167
+#: ../bin/draksambashare:165 ../bin/draksambashare:166
+#: ../bin/draksambashare:167
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "Veb Vericisi"
-#: ../tools/draksambashare:169 ../tools/draksambashare:170
+#: ../bin/draksambashare:169 ../bin/draksambashare:170
#, c-format
msgid "/_About"
msgstr "/_Haqqında"
-#: ../tools/draksambashare:169
+#: ../bin/draksambashare:169
#, c-format
msgid "/_Report Bug"
msgstr "/_Xəta Raportu Göndər"
-#: ../tools/draksambashare:170
+#: ../bin/draksambashare:170
#, c-format
msgid "/About..."
msgstr ""
-#: ../tools/draksambashare:173
+#: ../bin/draksambashare:173
#, fuzzy, c-format
msgid "Draksambashare"
msgstr "Samba vericisi"
-#: ../tools/draksambashare:175
+#: ../bin/draksambashare:175
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""
-#: ../tools/draksambashare:177
+#: ../bin/draksambashare:177
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""
-#: ../tools/draksambashare:179
+#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Onlayn"
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
-#: ../tools/draksambashare:184
+#: ../bin/draksambashare:184
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Mətin Əmirov <metin@karegen.com>\n"
-#: ../tools/draksambashare:208
+#: ../bin/draksambashare:208
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""
-#: ../tools/draksambashare:209
+#: ../bin/draksambashare:209
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""
-#: ../tools/draksambashare:349 ../tools/draksambashare:549
-#: ../tools/draksambashare:670
+#: ../bin/draksambashare:349 ../bin/draksambashare:550
+#: ../bin/draksambashare:671
#, c-format
msgid "Open"
msgstr "Aç"
-#: ../tools/draksambashare:352
+#: ../bin/draksambashare:352
#, fuzzy, c-format
msgid "DrakSamba add entry"
msgstr "Samba vericisi"
-#: ../tools/draksambashare:356
+#: ../bin/draksambashare:356
#, fuzzy, c-format
msgid "Add a share"
msgstr "Samba vericisi"
-#: ../tools/draksambashare:359
+#: ../bin/draksambashare:359
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "Çapçı adı"
-#: ../tools/draksambashare:360 ../tools/draksambashare:569
-#: ../tools/draksambashare:750
+#: ../bin/draksambashare:360 ../bin/draksambashare:570
+#: ../bin/draksambashare:751
#, c-format
msgid "Comment:"
msgstr "Şərh:"
-#: ../tools/draksambashare:372
+#: ../bin/draksambashare:373
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
-#: ../tools/draksambashare:379
+#: ../bin/draksambashare:380
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""
-#: ../tools/draksambashare:382 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draksambashare:383 ../bin/draksambashare:606
+#: ../bin/draksambashare:773
#, fuzzy, c-format
msgid "Please enter a Comment for this share."
msgstr "Xahiş edirik, icmal mətnini daxil edin."
-#: ../tools/draksambashare:413
+#: ../bin/draksambashare:414
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""
-#: ../tools/draksambashare:414
+#: ../bin/draksambashare:415
#, c-format
msgid "printers - all printers available"
msgstr ""
-#: ../tools/draksambashare:418
+#: ../bin/draksambashare:419
#, c-format
msgid "Add Special Printer share"
msgstr ""
-#: ../tools/draksambashare:421
+#: ../bin/draksambashare:422
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
-#: ../tools/draksambashare:428
+#: ../bin/draksambashare:429
#, fuzzy, c-format
msgid "A PDF generator already exists."
msgstr "\"%s\" profili onsuz da mövcuddur!"
-#: ../tools/draksambashare:452
+#: ../bin/draksambashare:453
#, fuzzy, c-format
msgid "Printers and print$ already exist."
msgstr "\"%s\" profili onsuz da mövcuddur!"
-#: ../tools/draksambashare:502
+#: ../bin/draksambashare:503
#, c-format
msgid "Congratulations"
msgstr "Təbriklər"
-#: ../tools/draksambashare:503
+#: ../bin/draksambashare:504
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""
-#: ../tools/draksambashare:518
+#: ../bin/draksambashare:519
#, c-format
msgid "Failed to add printers."
msgstr ""
-#: ../tools/draksambashare:533
+#: ../bin/draksambashare:534
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:552
+#: ../bin/draksambashare:553
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""
-#: ../tools/draksambashare:565
+#: ../bin/draksambashare:566
#, c-format
msgid "Printer share"
msgstr ""
-#: ../tools/draksambashare:568
+#: ../bin/draksambashare:569
#, c-format
msgid "Printer name:"
msgstr "Çap Edici Adı:"
-#: ../tools/draksambashare:574 ../tools/draksambashare:755
+#: ../bin/draksambashare:575 ../bin/draksambashare:756
#, fuzzy, c-format
msgid "Writable:"
msgstr "Yaz"
-#: ../tools/draksambashare:575 ../tools/draksambashare:756
+#: ../bin/draksambashare:576 ../bin/draksambashare:757
#, fuzzy, c-format
msgid "Browseable:"
msgstr "Gəz"
-#: ../tools/draksambashare:580
+#: ../bin/draksambashare:581
#, c-format
msgid "Advanced options"
msgstr "Ətraflı seçimlər"
-#: ../tools/draksambashare:582
+#: ../bin/draksambashare:583
#, fuzzy, c-format
msgid "Printer access"
msgstr "İnternet yetişməsi"
-#: ../tools/draksambashare:586
+#: ../bin/draksambashare:587
#, c-format
msgid "Guest ok:"
msgstr ""
-#: ../tools/draksambashare:587
+#: ../bin/draksambashare:588
#, fuzzy, c-format
msgid "Create mode:"
msgstr "Kart modeli:"
-#: ../tools/draksambashare:591
+#: ../bin/draksambashare:592
#, c-format
msgid "Printer command"
msgstr ""
-#: ../tools/draksambashare:593
+#: ../bin/draksambashare:594
#, c-format
msgid "Print command:"
msgstr ""
-#: ../tools/draksambashare:594
+#: ../bin/draksambashare:595
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "Əmr"
-#: ../tools/draksambashare:595
+#: ../bin/draksambashare:596
#, fuzzy, c-format
msgid "Printing:"
msgstr "Xəbərdarlıq"
-#: ../tools/draksambashare:611
+#: ../bin/draksambashare:612
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:673
+#: ../bin/draksambashare:674
#, c-format
msgid "DrakSamba entry"
msgstr ""
-#: ../tools/draksambashare:678
+#: ../bin/draksambashare:679
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:701
+#: ../bin/draksambashare:702
#, fuzzy, c-format
msgid "Samba user access"
msgstr "Samba vericisi"
-#: ../tools/draksambashare:709
+#: ../bin/draksambashare:710
#, fuzzy, c-format
msgid "Mask options"
msgstr "Bəsit seçimlər:"
-#: ../tools/draksambashare:723
+#: ../bin/draksambashare:724
#, fuzzy, c-format
msgid "Display options"
msgstr "Seçimləri müəyyən et"
-#: ../tools/draksambashare:745
+#: ../bin/draksambashare:746
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "Belə cərgə yoxdur!"
-#: ../tools/draksambashare:748
+#: ../bin/draksambashare:749
#, fuzzy, c-format
msgid "Share name:"
msgstr "Paylaşdırma adı"
-#: ../tools/draksambashare:754
+#: ../bin/draksambashare:755
#, c-format
msgid "Public:"
msgstr "Ümumi:"
-#: ../tools/draksambashare:778
+#: ../bin/draksambashare:779
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:785
+#: ../bin/draksambashare:786
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""
-#: ../tools/draksambashare:889
+#: ../bin/draksambashare:890
#, c-format
msgid "Add Samba user"
msgstr ""
-#: ../tools/draksambashare:904
+#: ../bin/draksambashare:905
#, c-format
msgid "User information"
msgstr "İstifadəçi mə'lumatı"
-#: ../tools/draksambashare:906
+#: ../bin/draksambashare:907
#, c-format
msgid "User name:"
msgstr "İstifadəçi adı:"
-#: ../tools/draksambashare:907
+#: ../bin/draksambashare:908
#, c-format
msgid "Password:"
msgstr "Şifrə:"
-#: ../tools/draksambashare:1021
+#: ../bin/draksambashare:1022
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "Poçtla xəbər vermə qurğuları"
-#: ../tools/draksambashare:1109
+#: ../bin/draksambashare:1110
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""
-#: ../tools/draksambashare:1118
+#: ../bin/draksambashare:1119
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""
-#: ../tools/draksambashare:1125
+#: ../bin/draksambashare:1126
#, c-format
msgid "File share"
msgstr ""
-#: ../tools/draksambashare:1140
+#: ../bin/draksambashare:1141
#, c-format
msgid "Failed to Modify."
msgstr ""
-#: ../tools/draksambashare:1149
+#: ../bin/draksambashare:1150
#, c-format
msgid "Failed to remove."
msgstr ""
-#: ../tools/draksambashare:1156
+#: ../bin/draksambashare:1157
#, c-format
msgid "Printers"
msgstr "Çapçılar"
-#: ../tools/draksambashare:1168
+#: ../bin/draksambashare:1169
#, c-format
msgid "Failed to add user."
msgstr ""
-#: ../tools/draksambashare:1177
+#: ../bin/draksambashare:1178
#, c-format
msgid "Failed to change user password."
msgstr ""
-#: ../tools/draksambashare:1189
+#: ../bin/draksambashare:1190
#, c-format
msgid "Failed to delete user."
msgstr ""
-#: ../tools/draksambashare:1194
+#: ../bin/draksambashare:1195
#, c-format
msgid "Userdrake"
msgstr "Userdrake"
-#: ../tools/draksambashare:1202
+#: ../bin/draksambashare:1203
#, c-format
msgid "Samba Users"
msgstr ""
-#: ../tools/draksambashare:1211
+#: ../bin/draksambashare:1212
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""
-#: ../tools/drakvpn-old:65
+#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr "DrakVPN"
-#: ../tools/drakvpn-old:87
+#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr "VPN bağlantısı fəaldır."
-#: ../tools/drakvpn-old:88
+#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4320,37 +2243,37 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:93
+#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr "passivləşdir"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119 ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr "keç"
-#: ../tools/drakvpn-old:97
+#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr "VPN bağlanır..."
-#: ../tools/drakvpn-old:106
+#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr "VPN bağlantısı indi qeyri-fəallaşdırıldı."
-#: ../tools/drakvpn-old:113
+#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr "VPN bağlantısı hazırda qeyri-fəaldır."
-#: ../tools/drakvpn-old:114
+#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4360,27 +2283,27 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr "fəallaşdır"
-#: ../tools/drakvpn-old:127
+#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr "VPN fəallaşdırılır..."
-#: ../tools/drakvpn-old:133
+#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr "VPN bağlantısı indi fəallaşdırıldı."
-#: ../tools/drakvpn-old:147 ../tools/drakvpn-old:164
+#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr "Sadə VPN qurğusu."
-#: ../tools/drakvpn-old:148
+#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
@@ -4396,7 +2319,7 @@ msgid ""
"drakconnect before going any further."
msgstr ""
-#: ../tools/drakvpn-old:165
+#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
@@ -4412,27 +2335,27 @@ msgid ""
"before going any further."
msgstr ""
-#: ../tools/drakvpn-old:208
+#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr "Təhlükəsizlik Siyasətləri"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr "IKE daemon racoon"
-#: ../tools/drakvpn-old:224
+#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr "Quraşdırma faylı"
-#: ../tools/drakvpn-old:225
+#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
@@ -4444,12 +2367,12 @@ msgid ""
"What would you like to configure?\n"
msgstr ""
-#: ../tools/drakvpn-old:245 ../tools/drakvpn-old:382
+#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr "%s giriş"
-#: ../tools/drakvpn-old:246
+#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
@@ -4463,32 +2386,32 @@ msgid ""
"What would you like to do?\n"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr "Göstər"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "Düzəlt"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr "Göndər"
-#: ../tools/drakvpn-old:267 ../tools/drakvpn-old:271 ../tools/drakvpn-old:406
-#: ../tools/drakvpn-old:410
+#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
+#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr "Quraşdırılması göstər"
-#: ../tools/drakvpn-old:272
+#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
@@ -4498,7 +2421,7 @@ msgid ""
"You'll have to go back and choose 'add'.\n"
msgstr ""
-#: ../tools/drakvpn-old:301
+#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
@@ -4508,12 +2431,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:333 ../tools/drakvpn-old:523
+#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr "Qismi dəyişdir"
-#: ../tools/drakvpn-old:334
+#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4522,13 +2445,13 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:337 ../tools/drakvpn-old:357 ../tools/drakvpn-old:528
-#: ../tools/drakvpn-old:574
+#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
+#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr "Qisim adları"
-#: ../tools/drakvpn-old:344
+#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
@@ -4538,12 +2461,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:353 ../tools/drakvpn-old:570
+#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr "Qismi sil"
-#: ../tools/drakvpn-old:354 ../tools/drakvpn-old:571
+#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4552,7 +2475,7 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:383
+#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
@@ -4566,7 +2489,7 @@ msgid ""
" - commit \t\t (writes the changes to the real file)"
msgstr ""
-#: ../tools/drakvpn-old:411
+#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
@@ -4576,12 +2499,12 @@ msgid ""
"You'll have to go back and choose configure.\n"
msgstr ""
-#: ../tools/drakvpn-old:425
+#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr "racoon.conf girişləri"
-#: ../tools/drakvpn-old:426
+#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
@@ -4594,22 +2517,22 @@ msgid ""
"Choose the section you would like to add.\n"
msgstr ""
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr "cığır"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr "uzaq"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr "sainfo"
-#: ../tools/drakvpn-old:440
+#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
@@ -4619,12 +2542,12 @@ msgid ""
"Put your mouse over the certificate entry to obtain online help."
msgstr ""
-#: ../tools/drakvpn-old:443
+#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr "cığır növü"
-#: ../tools/drakvpn-old:447
+#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
@@ -4648,12 +2571,12 @@ msgid ""
"Pre-shared key authentication method in phase 1."
msgstr ""
-#: ../tools/drakvpn-old:467 ../tools/drakvpn-old:560
+#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr "əsl fayl"
-#: ../tools/drakvpn-old:490
+#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4663,7 +2586,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:507
+#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4673,7 +2596,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:524
+#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4682,7 +2605,7 @@ msgid ""
"to edit and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:535
+#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4693,7 +2616,7 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:544
+#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4703,7 +2626,7 @@ msgid ""
"Choose continue when you are done to write the data."
msgstr ""
-#: ../tools/drakvpn-old:552
+#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
@@ -4717,17 +2640,17 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:559
+#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr ""
-#: ../tools/drakvpn-old:599
+#: ../bin/drakvpn-old:599
#, c-format
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: ../tools/drakvpn-old:600
+#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -4739,12 +2662,12 @@ msgid ""
"section is configured."
msgstr ""
-#: ../tools/drakvpn-old:620
+#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""
-#: ../tools/drakvpn-old:621
+#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4767,12 +2690,12 @@ msgid ""
"\t172.16.1.0/24 is the source address"
msgstr ""
-#: ../tools/drakvpn-old:638
+#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr ""
-#: ../tools/drakvpn-old:639
+#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4792,12 +2715,12 @@ msgid ""
"\tthe first 'any' allows any protocol for the source"
msgstr ""
-#: ../tools/drakvpn-old:653
+#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr ""
-#: ../tools/drakvpn-old:654
+#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4820,12 +2743,12 @@ msgid ""
"\t172.16.2.0/24 is the destination address"
msgstr ""
-#: ../tools/drakvpn-old:671
+#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr ""
-#: ../tools/drakvpn-old:672
+#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4845,12 +2768,12 @@ msgid ""
"\tthe last 'any' allows any protocol for the destination"
msgstr ""
-#: ../tools/drakvpn-old:686
+#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr "PFS qrupu"
-#: ../tools/drakvpn-old:688
+#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
@@ -4860,12 +2783,12 @@ msgid ""
"Or you can define 1, 2, or 5 as the DH group number."
msgstr ""
-#: ../tools/drakvpn-old:693
+#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr "Lifetime nömrəsi"
-#: ../tools/drakvpn-old:694
+#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4886,12 +2809,12 @@ msgid ""
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
msgstr ""
-#: ../tools/drakvpn-old:710
+#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr "Lifetime bölməsi"
-#: ../tools/drakvpn-old:712
+#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4913,32 +2836,32 @@ msgid ""
"'hour'.\n"
msgstr ""
-#: ../tools/drakvpn-old:728 ../tools/drakvpn-old:813
+#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, c-format
msgid "Encryption algorithm"
msgstr "Şifrələmə alqorifması"
-#: ../tools/drakvpn-old:730
+#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr "Tanıtma alqorifması"
-#: ../tools/drakvpn-old:732
+#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr "Sıxışdırma alqorifması"
-#: ../tools/drakvpn-old:733
+#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr ""
-#: ../tools/drakvpn-old:740
+#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr "Uzaq"
-#: ../tools/drakvpn-old:741
+#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
@@ -4953,12 +2876,12 @@ msgid ""
"remote ::1 [8000]"
msgstr ""
-#: ../tools/drakvpn-old:749
+#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr ""
-#: ../tools/drakvpn-old:751
+#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
@@ -4969,22 +2892,22 @@ msgid ""
"racoon uses when it is the initiator.\n"
msgstr ""
-#: ../tools/drakvpn-old:757
+#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr ""
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr "bağlı"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "açıq"
-#: ../tools/drakvpn-old:759
+#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder. Therefore you\n"
@@ -5003,12 +2926,12 @@ msgid ""
"the initiator case. The default value is off."
msgstr ""
-#: ../tools/drakvpn-old:773
+#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr ""
-#: ../tools/drakvpn-old:775
+#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
@@ -5016,59 +2939,59 @@ msgid ""
"server."
msgstr ""
-#: ../tools/drakvpn-old:778
+#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr ""
-#: ../tools/drakvpn-old:780
+#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr ""
-#: ../tools/drakvpn-old:781
+#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr ""
-#: ../tools/drakvpn-old:782
+#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr ""
-#: ../tools/drakvpn-old:783
+#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr ""
-#: ../tools/drakvpn-old:784
+#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr ""
-#: ../tools/drakvpn-old:785
+#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr ""
-#: ../tools/drakvpn-old:786
+#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr ""
-#: ../tools/drakvpn-old:788
+#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
"some reason, set this to off. The default is on."
msgstr ""
-#: ../tools/drakvpn-old:790
+#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr ""
-#: ../tools/drakvpn-old:791
+#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
@@ -5095,17 +3018,17 @@ msgid ""
"my_identifier user_fqdn \"myemail@mydomain.com\""
msgstr ""
-#: ../tools/drakvpn-old:811
+#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr ""
-#: ../tools/drakvpn-old:812
+#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr ""
-#: ../tools/drakvpn-old:814
+#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
@@ -5117,332 +3040,334 @@ msgid ""
"For other transforms, this statement should not be used."
msgstr ""
-#: ../tools/drakvpn-old:821
+#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr "Hash alqorifması"
-#: ../tools/drakvpn-old:822
+#: ../bin/drakvpn-old:822
#, c-format
msgid "Authentication method"
msgstr "Tanıtma yöntəmi"
-#: ../tools/drakvpn-old:823
+#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr "DH qrupu"
-#: ../tools/drakvpn-old:830
+#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "Əmr"
-#: ../tools/drakvpn-old:831
+#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr "Mənbə IP aralığı"
-#: ../tools/drakvpn-old:832
+#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr "Hədəf IP aralığı"
-#: ../tools/drakvpn-old:833
+#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr "Üst-lay protokolu"
-#: ../tools/drakvpn-old:833 ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr ""
-#: ../tools/drakvpn-old:835
+#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "Bayraq"
-#: ../tools/drakvpn-old:836
+#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "İstiqamət"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr "IPsec siyasəti"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "Mod"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr ""
-#: ../tools/drakvpn-old:842
+#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr "Mənbə/Hədəf"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "Səviyyə"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "əsas"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr ""
-#: ../tools/net_applet:61
+#: ../bin/net_applet:62
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "Şəbəkə ara üzü"
-#: ../tools/net_applet:62
+#: ../bin/net_applet:63
#, c-format
msgid "IP address: %s"
msgstr "IP ünvanı: %s"
-#: ../tools/net_applet:63
+#: ../bin/net_applet:64
#, c-format
msgid "Gateway: %s"
msgstr "Şəbəkə keçidi: %s"
-#: ../tools/net_applet:64
+#: ../bin/net_applet:65
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""
-#: ../tools/net_applet:66
+#: ../bin/net_applet:67
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "Şəbəkə ara üzü"
-#: ../tools/net_applet:74 ../tools/net_monitor:468
+#: ../bin/net_applet:75 ../bin/net_monitor:468
#, c-format
msgid "Connect %s"
msgstr "Bağlan %s"
-#: ../tools/net_applet:75 ../tools/net_monitor:468
+#: ../bin/net_applet:76 ../bin/net_monitor:468
#, c-format
msgid "Disconnect %s"
msgstr "%s bağlantısını kəs"
-#: ../tools/net_applet:76
+#: ../bin/net_applet:77
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "Şəbəkə Üstündən Geri Yüklə"
-#: ../tools/net_applet:78
+#: ../bin/net_applet:79
#, c-format
msgid "Manage wireless networks"
msgstr ""
-#: ../tools/net_applet:80
+#: ../bin/net_applet:81
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "Bağlantıları idarə et"
-#: ../tools/net_applet:84
+#: ../bin/net_applet:85
#, c-format
msgid "Configure Network"
msgstr "Şəbəkəni Quraşdır"
-#: ../tools/net_applet:86
+#: ../bin/net_applet:87
#, fuzzy, c-format
msgid "Watched interface"
msgstr "ara üzlər"
-#: ../tools/net_applet:87 ../tools/net_applet:88 ../tools/net_applet:90
+#: ../bin/net_applet:88 ../bin/net_applet:89 ../bin/net_applet:91
#, c-format
msgid "Auto-detect"
msgstr "Avtomatik təsbit et"
-#: ../tools/net_applet:95
+#: ../bin/net_applet:96
#, c-format
msgid "Active interfaces"
msgstr ""
-#: ../tools/net_applet:119
+#: ../bin/net_applet:120
#, c-format
msgid "Profiles"
msgstr "Profiller"
-#: ../tools/net_applet:137
-#, c-format
-msgid "Get Online Help"
-msgstr ""
+#: ../bin/net_applet:130 ../lib/network/connection.pm:149
+#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
+#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
+#, fuzzy, c-format
+msgid "VPN connection"
+msgstr "LAN bağlantısı"
-#: ../tools/net_applet:318
+#: ../bin/net_applet:319
#, fuzzy, c-format
msgid "Network connection"
msgstr "Şəbəkə Seçimləri"
-#: ../tools/net_applet:438
+#: ../bin/net_applet:443
#, c-format
msgid "More networks"
msgstr ""
-#: ../tools/net_applet:465
+#: ../bin/net_applet:470
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: ../tools/net_applet:470
+#: ../bin/net_applet:475
#, c-format
msgid "Always launch on startup"
msgstr "Həmişə başlanğıcda işə sal"
-#: ../tools/net_applet:475
+#: ../bin/net_applet:480
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "Kabelsiz bağlantı"
-#: ../tools/net_applet:482 ../tools/net_monitor:96
+#: ../bin/net_applet:487 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "Qurğular"
-#: ../tools/net_applet:557
+#: ../bin/net_applet:562
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "Atəş divarı quruluşu tapıldı!"
-#: ../tools/net_applet:574
+#: ../bin/net_applet:579
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "Həqiqətən də bu oyundan çıxmaq istəyirsiniz?"
-#: ../tools/net_applet:577
+#: ../bin/net_applet:582
#, fuzzy, c-format
msgid "Attack details"
msgstr "Təfsilatsız"
-#: ../tools/net_applet:581
+#: ../bin/net_applet:586
#, fuzzy, c-format
msgid "Attack time: %s"
msgstr "Gedişat: %s"
-#: ../tools/net_applet:582
+#: ../bin/net_applet:587
#, c-format
msgid "Network interface: %s"
msgstr "Şəbəkə ara üzü: %s"
-#: ../tools/net_applet:583
+#: ../bin/net_applet:588
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "Çatma şəkli: %s\n"
-#: ../tools/net_applet:584
+#: ../bin/net_applet:589
#, c-format
msgid "Protocol: %s"
msgstr "Protokol: %s"
-#: ../tools/net_applet:585
+#: ../bin/net_applet:590
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "Kompüterin IP ünvanı:"
-#: ../tools/net_applet:586
+#: ../bin/net_applet:591
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "%s qovşaq adı verilir: "
-#: ../tools/net_applet:589
+#: ../bin/net_applet:594
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "Xidmət _növü:"
-#: ../tools/net_applet:590
+#: ../bin/net_applet:595
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "Qapı: %s"
-#: ../tools/net_applet:592
+#: ../bin/net_applet:597
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""
-#: ../tools/net_applet:597
+#: ../bin/net_applet:602
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""
-#: ../tools/net_applet:612
+#: ../bin/net_applet:617
#, c-format
msgid "Ignore"
msgstr "Nəzərə alma"
-#: ../tools/net_applet:630 ../tools/net_applet:643
+#: ../bin/net_applet:635 ../bin/net_applet:648
#, fuzzy, c-format
msgid "Interactive Firewall: new service"
msgstr "Atəş divarı quruluşu tapıldı!"
-#: ../tools/net_applet:654
+#: ../bin/net_applet:658
#, fuzzy, c-format
msgid "Do you want to open this service?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../tools/net_applet:657
+#: ../bin/net_applet:661
#, fuzzy, c-format
msgid "Remember this answer"
msgstr "Bu şifrəni yadında saxla"
-#: ../tools/net_monitor:60 ../tools/net_monitor:65
+#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, c-format
msgid "Network Monitoring"
msgstr "Şəbəkə İzlənməsi"
-#: ../tools/net_monitor:101
+#: ../bin/net_monitor:101
#, c-format
msgid "Global statistics"
msgstr "Qlobal statistikalar"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr "Ani"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Average"
msgstr "Orta hesabla"
-#: ../tools/net_monitor:105
+#: ../bin/net_monitor:105
#, c-format
msgid ""
"Sending\n"
@@ -5451,12 +3376,12 @@ msgstr ""
"Göndərmə\n"
"sür'əti:"
-#: ../tools/net_monitor:105 ../tools/net_monitor:106 ../tools/net_monitor:111
+#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "na'məlum"
-#: ../tools/net_monitor:106
+#: ../bin/net_monitor:106
#, c-format
msgid ""
"Receiving\n"
@@ -5465,7 +3390,7 @@ msgstr ""
"Alış\n"
"sür'əti:"
-#: ../tools/net_monitor:110
+#: ../bin/net_monitor:110
#, c-format
msgid ""
"Connection\n"
@@ -5474,42 +3399,42 @@ msgstr ""
"Bağlantı\n"
"vaxtı:"
-#: ../tools/net_monitor:117
+#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""
-#: ../tools/net_monitor:136
+#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr "Xahiş edirik, gözləyin, bağlantınız sınanır..."
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Disconnecting from Internet "
msgstr "İnternet bağlantısı kəsilir"
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Connecting to Internet "
msgstr "İnternetə Bağlanır"
-#: ../tools/net_monitor:229
+#: ../bin/net_monitor:229
#, c-format
msgid "Disconnection from Internet failed."
msgstr "İnternet bağlantısının kəsilməsi bacarılmadı."
-#: ../tools/net_monitor:230
+#: ../bin/net_monitor:230
#, c-format
msgid "Disconnection from Internet complete."
msgstr "İnternet bağlantısını tamamilə kəs."
-#: ../tools/net_monitor:232
+#: ../bin/net_monitor:232
#, c-format
msgid "Connection complete."
msgstr "Bağlantı tamamlandı."
-#: ../tools/net_monitor:233
+#: ../bin/net_monitor:233
#, c-format
msgid ""
"Connection failed.\n"
@@ -5518,32 +3443,32 @@ msgstr ""
"Bağlantı iflas etdi.\n"
"Mandriva Linux İdarə Mərkəzindən qurğularınızı yoxlayın."
-#: ../tools/net_monitor:338
+#: ../bin/net_monitor:338
#, c-format
msgid "Color configuration"
msgstr "Rəng quraşdırması"
-#: ../tools/net_monitor:395 ../tools/net_monitor:407
+#: ../bin/net_monitor:395 ../bin/net_monitor:407
#, c-format
msgid "sent: "
msgstr "göndərilən:"
-#: ../tools/net_monitor:398 ../tools/net_monitor:411
+#: ../bin/net_monitor:398 ../bin/net_monitor:411
#, c-format
msgid "received: "
msgstr "alındı: "
-#: ../tools/net_monitor:401
+#: ../bin/net_monitor:401
#, c-format
msgid "average"
msgstr "orta hesabla"
-#: ../tools/net_monitor:404
+#: ../bin/net_monitor:404
#, c-format
msgid "Local measure"
msgstr "Yerli ölçü vahidi"
-#: ../tools/net_monitor:461
+#: ../bin/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
@@ -5552,7 +3477,2094 @@ msgstr ""
"Diqqət, başqa internet bağlantısı aşkar edildi, güman ki şəbəkənizi istifadə "
"edir"
-#: ../tools/net_monitor:472
+#: ../bin/net_monitor:472
#, c-format
msgid "No internet connection configured"
msgstr "İnternet bağlantısı quraşdırılmayıb"
+
+#: ../lib/network/connection.pm:16
+#, c-format
+msgid "Unknown connection type"
+msgstr "Namə'lum bağlantı növü"
+
+#: ../lib/network/connection.pm:115
+#, c-format
+msgid "Network access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:116
+#, c-format
+msgid "Access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:117
+#, c-format
+msgid "Address settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
+#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
+#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
+#, c-format
+msgid "None"
+msgstr "Heç biri"
+
+#: ../lib/network/connection.pm:163
+#, c-format
+msgid "Allow users to manage the connection"
+msgstr ""
+
+#: ../lib/network/connection.pm:164
+#, c-format
+msgid "Start the connection at boot"
+msgstr ""
+
+#: ../lib/network/connection.pm:230
+#, fuzzy, c-format
+msgid "Link detected on interface %s"
+msgstr "(%s qapısında tapıldı)"
+
+#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:273
+#, c-format
+msgid "Link beat lost on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:13
+#, c-format
+msgid "Cable"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:14
+#, fuzzy, c-format
+msgid "Cable modem"
+msgstr "Kart modeli:"
+
+#: ../lib/network/connection/cable.pm:45
+#, c-format
+msgid "Use BPALogin (needed for Telstra)"
+msgstr ""
+
+#: ../lib/network/connection/cellular.pm:47
+#, c-format
+msgid "Access Point Name"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:10
+#, c-format
+msgid "Bluetooth"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:11
+#, c-format
+msgid "Bluetooth Dial Up Networking"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:8
+#, c-format
+msgid "GPRS/Edge/3G"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:67
+#: ../lib/network/vpn/openvpn.pm:391
+#, c-format
+msgid "PIN number"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:130
+#, fuzzy, c-format
+msgid "Unable to open device %s"
+msgstr "Fork edilə bilmir: %s"
+
+#: ../lib/network/connection/cellular_card.pm:155
+#, fuzzy, c-format
+msgid "Please check that your SIM card is inserted."
+msgstr ""
+"\n"
+"Xahiş edirik, istədiyiniz bütün seçimləri seçin.\n"
+
+#: ../lib/network/connection/cellular_card.pm:161
+#, c-format
+msgid ""
+"You entered a wrong PIN code.\n"
+"Entering the wrong PIN code multiple times may lock your SIM card!"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:12
+#, c-format
+msgid "DVB"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:13
+#, c-format
+msgid "Satellite (DVB)"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:56
+#, c-format
+msgid "Adapter card"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:57
+#, c-format
+msgid "Net demux"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:58
+#, c-format
+msgid "PID"
+msgstr "PID"
+
+#: ../lib/network/connection/ethernet.pm:10
+#, c-format
+msgid "Ethernet"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:53
+#, c-format
+msgid "Unable to find network interface for selected device (using %s driver)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#, c-format
+msgid "Manual configuration"
+msgstr "Əllə quraşdırma"
+
+#: ../lib/network/connection/ethernet.pm:62
+#, c-format
+msgid "Automatic IP (BOOTP/DHCP)"
+msgstr "Avtomatik IP (BOOTP/DHCP)"
+
+#: ../lib/network/connection/ethernet.pm:116
+#, fuzzy, c-format
+msgid "IP settings"
+msgstr "PLL qurğusu:"
+
+#: ../lib/network/connection/ethernet.pm:129
+#, 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)."
+msgstr ""
+"Xahiş edirik, bu kompüter üçün IP qurğularını girin.\n"
+"Hər üzv nöqtəli onluq IP şəklində girilməlidir,\n"
+"(misal üçün 1.2.3.4)."
+
+#: ../lib/network/connection/ethernet.pm:138
+#, c-format
+msgid "DNS server 1"
+msgstr "DNS vericisi 1"
+
+#: ../lib/network/connection/ethernet.pm:139
+#, c-format
+msgid "DNS server 2"
+msgstr "DNS vericisi 2"
+
+#: ../lib/network/connection/ethernet.pm:140
+#, c-format
+msgid "Search domain"
+msgstr "Axtarış domeni"
+
+#: ../lib/network/connection/ethernet.pm:141
+#, c-format
+msgid "By default search domain will be set from the fully-qualified host name"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:149
+#, c-format
+msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:170
+#, c-format
+msgid "Warning: IP address %s is usually reserved!"
+msgstr "Xəbərdarlıq : %s IP ünvanı çox vaxt tutulmuş olur !"
+
+#: ../lib/network/connection/ethernet.pm:176
+#, c-format
+msgid "%s already in use\n"
+msgstr "%s onsuzda istifadədədir\n"
+
+#: ../lib/network/connection/ethernet.pm:224
+#, c-format
+msgid "Enable IPv6 to IPv4 tunnel"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:272
+#, c-format
+msgid "Link beat detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:275
+#, c-format
+msgid "Requesting a network address on interface %s (%s protocol)..."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:276
+#, c-format
+msgid "Got a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:277
+#, c-format
+msgid "Failed to get a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:8
+#, c-format
+msgid "ISDN"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
+#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
+#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
+#: ../lib/network/netconnect.pm:562
+#, c-format
+msgid "Unlisted - edit manually"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "İSA / PCMCİA"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "I do not know"
+msgstr "Bilmirəm"
+
+#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "PCI"
+msgstr "PCİ"
+
+#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "USB"
+msgstr "USB"
+
+#. -PO: POTS means "Plain old telephone service"
+#: ../lib/network/connection/pots.pm:10
+#, c-format
+msgid "POTS"
+msgstr ""
+
+#. -PO: POTS means "Plain old telephone service"
+#. -PO: remove it if it doesn't have an equivalent in your language
+#. -PO: for example, in French, it can be translated as "RTC"
+#: ../lib/network/connection/pots.pm:16
+#, c-format
+msgid "Analog telephone modem (POTS)"
+msgstr ""
+
+#: ../lib/network/connection/providers/cellular.pm:13
+#: ../lib/network/connection/providers/cellular.pm:18
+#: ../lib/network/connection/providers/cellular.pm:23
+#: ../lib/network/connection/providers/xdsl.pm:492
+#: ../lib/network/connection/providers/xdsl.pm:504
+#: ../lib/network/connection/providers/xdsl.pm:516
+#: ../lib/network/connection/providers/xdsl.pm:528
+#: ../lib/network/connection/providers/xdsl.pm:539
+#: ../lib/network/connection/providers/xdsl.pm:551
+#: ../lib/network/connection/providers/xdsl.pm:563
+#: ../lib/network/connection/providers/xdsl.pm:575
+#: ../lib/network/connection/providers/xdsl.pm:588
+#: ../lib/network/connection/providers/xdsl.pm:599
+#: ../lib/network/connection/providers/xdsl.pm:610
+#: ../lib/network/netconnect.pm:33
+#, c-format
+msgid "France"
+msgstr "Fransa"
+
+#: ../lib/network/connection/providers/xdsl.pm:47
+#: ../lib/network/connection/providers/xdsl.pm:57
+#, c-format
+msgid "Algeria"
+msgstr "Əlcəzair"
+
+#: ../lib/network/connection/providers/xdsl.pm:67
+#: ../lib/network/connection/providers/xdsl.pm:77
+#, c-format
+msgid "Argentina"
+msgstr "Argentina"
+
+#: ../lib/network/connection/providers/xdsl.pm:87
+#: ../lib/network/connection/providers/xdsl.pm:96
+#: ../lib/network/connection/providers/xdsl.pm:105
+#, c-format
+msgid "Austria"
+msgstr "Avstriya"
+
+#: ../lib/network/connection/providers/xdsl.pm:114
+#: ../lib/network/connection/providers/xdsl.pm:124
+#: ../lib/network/connection/providers/xdsl.pm:134
+#, c-format
+msgid "Australia"
+msgstr "Avstraliya"
+
+#: ../lib/network/connection/providers/xdsl.pm:144
+#: ../lib/network/connection/providers/xdsl.pm:153
+#: ../lib/network/connection/providers/xdsl.pm:164
+#: ../lib/network/connection/providers/xdsl.pm:173
+#: ../lib/network/connection/providers/xdsl.pm:182
+#: ../lib/network/netconnect.pm:36
+#, c-format
+msgid "Belgium"
+msgstr "Belçika"
+
+#: ../lib/network/connection/providers/xdsl.pm:191
+#: ../lib/network/connection/providers/xdsl.pm:201
+#: ../lib/network/connection/providers/xdsl.pm:210
+#: ../lib/network/connection/providers/xdsl.pm:219
+#, c-format
+msgid "Brazil"
+msgstr "Braziliya"
+
+#: ../lib/network/connection/providers/xdsl.pm:228
+#: ../lib/network/connection/providers/xdsl.pm:237
+#, c-format
+msgid "Bulgaria"
+msgstr "Bolqarıstan"
+
+#: ../lib/network/connection/providers/xdsl.pm:246
+#: ../lib/network/connection/providers/xdsl.pm:255
+#: ../lib/network/connection/providers/xdsl.pm:264
+#: ../lib/network/connection/providers/xdsl.pm:273
+#: ../lib/network/connection/providers/xdsl.pm:282
+#: ../lib/network/connection/providers/xdsl.pm:291
+#: ../lib/network/connection/providers/xdsl.pm:300
+#: ../lib/network/connection/providers/xdsl.pm:309
+#: ../lib/network/connection/providers/xdsl.pm:318
+#: ../lib/network/connection/providers/xdsl.pm:327
+#: ../lib/network/connection/providers/xdsl.pm:336
+#: ../lib/network/connection/providers/xdsl.pm:345
+#: ../lib/network/connection/providers/xdsl.pm:354
+#: ../lib/network/connection/providers/xdsl.pm:363
+#: ../lib/network/connection/providers/xdsl.pm:372
+#: ../lib/network/connection/providers/xdsl.pm:381
+#: ../lib/network/connection/providers/xdsl.pm:390
+#: ../lib/network/connection/providers/xdsl.pm:399
+#: ../lib/network/connection/providers/xdsl.pm:408
+#: ../lib/network/connection/providers/xdsl.pm:417
+#, c-format
+msgid "China"
+msgstr "Çin"
+
+#: ../lib/network/connection/providers/xdsl.pm:426
+#: ../lib/network/connection/providers/xdsl.pm:436
+#, c-format
+msgid "Czech Republic"
+msgstr "Çex Respublikası"
+
+#: ../lib/network/connection/providers/xdsl.pm:446
+#: ../lib/network/connection/providers/xdsl.pm:455
+#: ../lib/network/connection/providers/xdsl.pm:464
+#, c-format
+msgid "Denmark"
+msgstr "Danimarka"
+
+#: ../lib/network/connection/providers/xdsl.pm:473
+#, c-format
+msgid "Egypt"
+msgstr "Misir"
+
+#: ../lib/network/connection/providers/xdsl.pm:483
+#, c-format
+msgid "Finland"
+msgstr "Finlandiya"
+
+#: ../lib/network/connection/providers/xdsl.pm:621
+#: ../lib/network/connection/providers/xdsl.pm:630
+#: ../lib/network/connection/providers/xdsl.pm:640
+#, c-format
+msgid "Germany"
+msgstr "Almanya"
+
+#: ../lib/network/connection/providers/xdsl.pm:650
+#, c-format
+msgid "Greece"
+msgstr "Yunanıstan"
+
+#: ../lib/network/connection/providers/xdsl.pm:659
+#, c-format
+msgid "Hungary"
+msgstr "Macarıstan"
+
+#: ../lib/network/connection/providers/xdsl.pm:668
+#, c-format
+msgid "Ireland"
+msgstr "İrlandiya"
+
+#: ../lib/network/connection/providers/xdsl.pm:677
+#, c-format
+msgid "Israel"
+msgstr "İsrail"
+
+#: ../lib/network/connection/providers/xdsl.pm:687
+#, c-format
+msgid "India"
+msgstr "Hindistan"
+
+#: ../lib/network/connection/providers/xdsl.pm:696
+#: ../lib/network/connection/providers/xdsl.pm:705
+#, c-format
+msgid "Iceland"
+msgstr "İslandiya"
+
+#: ../lib/network/connection/providers/xdsl.pm:714
+#: ../lib/network/connection/providers/xdsl.pm:725
+#: ../lib/network/connection/providers/xdsl.pm:735
+#: ../lib/network/connection/providers/xdsl.pm:746
+#: ../lib/network/netconnect.pm:35
+#, c-format
+msgid "Italy"
+msgstr "İtaliya"
+
+#: ../lib/network/connection/providers/xdsl.pm:758
+#, c-format
+msgid "Sri Lanka"
+msgstr "Şri Lanka"
+
+#: ../lib/network/connection/providers/xdsl.pm:770
+#, c-format
+msgid "Lithuania"
+msgstr "Litva"
+
+#: ../lib/network/connection/providers/xdsl.pm:779
+#: ../lib/network/connection/providers/xdsl.pm:789
+#, c-format
+msgid "Mauritius"
+msgstr "Maurit"
+
+#: ../lib/network/connection/providers/xdsl.pm:800
+#, c-format
+msgid "Morocco"
+msgstr "Mərakeş"
+
+#: ../lib/network/connection/providers/xdsl.pm:810
+#: ../lib/network/connection/providers/xdsl.pm:819
+#: ../lib/network/connection/providers/xdsl.pm:828
+#: ../lib/network/connection/providers/xdsl.pm:837
+#: ../lib/network/netconnect.pm:34
+#, c-format
+msgid "Netherlands"
+msgstr "Hollandiya"
+
+#: ../lib/network/connection/providers/xdsl.pm:846
+#: ../lib/network/connection/providers/xdsl.pm:852
+#: ../lib/network/connection/providers/xdsl.pm:858
+#: ../lib/network/connection/providers/xdsl.pm:864
+#: ../lib/network/connection/providers/xdsl.pm:870
+#: ../lib/network/connection/providers/xdsl.pm:876
+#: ../lib/network/connection/providers/xdsl.pm:882
+#, c-format
+msgid "Norway"
+msgstr "Norvegiya"
+
+#: ../lib/network/connection/providers/xdsl.pm:890
+#, c-format
+msgid "Pakistan"
+msgstr "Pakistan"
+
+#: ../lib/network/connection/providers/xdsl.pm:901
+#: ../lib/network/connection/providers/xdsl.pm:911
+#, c-format
+msgid "Poland"
+msgstr "Polşa"
+
+#: ../lib/network/connection/providers/xdsl.pm:922
+#, c-format
+msgid "Portugal"
+msgstr "Portuqaliya"
+
+#: ../lib/network/connection/providers/xdsl.pm:931
+#, c-format
+msgid "Russia"
+msgstr "Rusiya"
+
+#: ../lib/network/connection/providers/xdsl.pm:942
+#, c-format
+msgid "Singapore"
+msgstr "Sinqapur"
+
+#: ../lib/network/connection/providers/xdsl.pm:951
+#, c-format
+msgid "Senegal"
+msgstr "Seneqal"
+
+#: ../lib/network/connection/providers/xdsl.pm:961
+#, c-format
+msgid "Slovenia"
+msgstr "Sloveniya"
+
+#: ../lib/network/connection/providers/xdsl.pm:972
+#: ../lib/network/connection/providers/xdsl.pm:984
+#: ../lib/network/connection/providers/xdsl.pm:996
+#: ../lib/network/connection/providers/xdsl.pm:1009
+#: ../lib/network/connection/providers/xdsl.pm:1019
+#: ../lib/network/connection/providers/xdsl.pm:1029
+#: ../lib/network/connection/providers/xdsl.pm:1040
+#: ../lib/network/connection/providers/xdsl.pm:1050
+#: ../lib/network/connection/providers/xdsl.pm:1060
+#: ../lib/network/connection/providers/xdsl.pm:1070
+#: ../lib/network/connection/providers/xdsl.pm:1080
+#: ../lib/network/connection/providers/xdsl.pm:1090
+#: ../lib/network/connection/providers/xdsl.pm:1101
+#: ../lib/network/connection/providers/xdsl.pm:1112
+#: ../lib/network/connection/providers/xdsl.pm:1124
+#: ../lib/network/connection/providers/xdsl.pm:1136
+#, c-format
+msgid "Spain"
+msgstr "İspaniya"
+
+#: ../lib/network/connection/providers/xdsl.pm:1149
+#, c-format
+msgid "Sweden"
+msgstr "İsveç"
+
+#: ../lib/network/connection/providers/xdsl.pm:1158
+#: ../lib/network/connection/providers/xdsl.pm:1167
+#: ../lib/network/connection/providers/xdsl.pm:1177
+#, c-format
+msgid "Switzerland"
+msgstr "İsveçrə"
+
+#: ../lib/network/connection/providers/xdsl.pm:1186
+#, c-format
+msgid "Thailand"
+msgstr "Tayland"
+
+#: ../lib/network/connection/providers/xdsl.pm:1196
+#, c-format
+msgid "Tunisia"
+msgstr "Tunis"
+
+#: ../lib/network/connection/providers/xdsl.pm:1207
+#, c-format
+msgid "Turkey"
+msgstr "Türkiyə"
+
+#: ../lib/network/connection/providers/xdsl.pm:1220
+#, c-format
+msgid "United Arab Emirates"
+msgstr "Birləşmiş Ərəb Əmirlikləri"
+
+#: ../lib/network/connection/providers/xdsl.pm:1230
+#: ../lib/network/connection/providers/xdsl.pm:1240
+#: ../lib/network/netconnect.pm:38
+#, c-format
+msgid "United Kingdom"
+msgstr "Birləşmiş Krallıq"
+
+#: ../lib/network/connection/wireless.pm:11
+#, c-format
+msgid "Wireless"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:27
+#, c-format
+msgid "Use a Windows driver (with ndiswrapper)"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:44
+#, c-format
+msgid "Open WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:45
+#, c-format
+msgid "Restricted WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:46
+#, c-format
+msgid "WPA Pre-Shared Key"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:182 ../lib/network/thirdparty.pm:175
+#, c-format
+msgid "Firmware files are required for this device."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:248
+#, c-format
+msgid ""
+"Your wireless card is disabled, please enable the wireless switch (RF kill "
+"switch) first."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:307
+#, fuzzy, c-format
+msgid "Wireless settings"
+msgstr "Kabelsiz bağlantı"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Ad-hoc"
+msgstr "Ad-hoc"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Managed"
+msgstr "İdarə edilən"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Master"
+msgstr "Əsas"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Repeater"
+msgstr "Təkrarlayıcı"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Secondary"
+msgstr "İkinci"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Auto"
+msgstr "Avtomatik"
+
+#: ../lib/network/connection/wireless.pm:318
+#, c-format
+msgid "Encryption mode"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:327
+#, c-format
+msgid ""
+"RTS/CTS adds a handshake before each packet transmission to make sure that "
+"the\n"
+"channel is clear. This adds overhead, but increase performance in case of "
+"hidden\n"
+"nodes or large number of active nodes. This parameter sets the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, "
+"fixed\n"
+"or off."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:336
+#, c-format
+msgid ""
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
+"as the hostname).\n"
+"\n"
+"See iwconfig(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:344
+#, c-format
+msgid ""
+"iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
+"\n"
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:354
+#, c-format
+msgid ""
+"iwpriv enable to set up optionals (private) parameters of a wireless "
+"network\n"
+"interface.\n"
+"\n"
+"iwpriv deals with parameters and setting specific to each driver (as opposed "
+"to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to "
+"use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:372
+#, c-format
+msgid "An encryption key is required."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:378
+#, 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 ""
+"Tezliyin yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 2.46 GHz "
+"tezlik üçün \"2.46G\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
+
+#: ../lib/network/connection/wireless.pm:384
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
+"Sıxlığın yanına k, M ya da G şəkilçisi qoyulmalıdır (misal üçün, 11M üçün "
+"\"11M\" ), ya da lazım olan qədər '0' (sıfır) əlavə edin."
+
+#: ../lib/network/connection/wireless.pm:396
+#, c-format
+msgid "Allow access point roaming"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:499
+#, c-format
+msgid "Associated to wireless network \"%s\" on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:500
+#, c-format
+msgid "Lost association to wireless network on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:8
+#, fuzzy, c-format
+msgid "DSL"
+msgstr "SSL"
+
+#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
+#, c-format
+msgid "Alcatel speedtouch USB modem"
+msgstr "Alcatel speedtouch USB modem"
+
+#: ../lib/network/connection/xdsl.pm:104
+#, c-format
+msgid ""
+"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
+"problem.\n"
+"\n"
+"You can find a driver on http://eciadsl.flashtux.org/"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:176
+#, c-format
+msgid "DSL over CAPI"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:179
+#, c-format
+msgid "Dynamic Host Configuration Protocol (DHCP)"
+msgstr "Dinamik Qovşaq Quraşdırma Protokolu (DHCP)"
+
+#: ../lib/network/connection/xdsl.pm:180
+#, c-format
+msgid "Manual TCP/IP configuration"
+msgstr "Əllə TCP/IP quraşdırması"
+
+#: ../lib/network/connection/xdsl.pm:181
+#, c-format
+msgid "Point to Point Tunneling Protocol (PPTP)"
+msgstr "Nöqtədən Nöqtəyə Tunelləmə Protokolu (PPTP)"
+
+#: ../lib/network/connection/xdsl.pm:182
+#, c-format
+msgid "PPP over Ethernet (PPPoE)"
+msgstr "Eternet üstündən PPP (PPPoE)"
+
+#: ../lib/network/connection/xdsl.pm:183
+#, c-format
+msgid "PPP over ATM (PPPoA)"
+msgstr "ATM üstündən PPP (PPPoA)"
+
+#: ../lib/network/connection/xdsl.pm:223
+#, c-format
+msgid "Virtual Path ID (VPI):"
+msgstr "Virtual Path ID (VPI):"
+
+#: ../lib/network/connection/xdsl.pm:224
+#, c-format
+msgid "Virtual Circuit ID (VCI):"
+msgstr "Virtual Circuit ID (VCI):"
+
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakvpn.pm:45 ../lib/network/netconnect.pm:131
+#: ../lib/network/thirdparty.pm:115
+#, fuzzy, c-format
+msgid "Could not install the packages (%s)!"
+msgstr "Xorg paketi qurula bilmir: %s"
+
+#: ../lib/network/drakfirewall.pm:12
+#, c-format
+msgid "Web Server"
+msgstr "Veb Vericisi"
+
+#: ../lib/network/drakfirewall.pm:17
+#, c-format
+msgid "Domain Name Server"
+msgstr "Domen Adı Vericisi"
+
+#: ../lib/network/drakfirewall.pm:22
+#, c-format
+msgid "SSH server"
+msgstr "SSH vericisisi"
+
+#: ../lib/network/drakfirewall.pm:27
+#, c-format
+msgid "FTP server"
+msgstr "FTP vericisi"
+
+#: ../lib/network/drakfirewall.pm:32
+#, c-format
+msgid "Mail Server"
+msgstr "Poçt Vericisi"
+
+#: ../lib/network/drakfirewall.pm:37
+#, c-format
+msgid "POP and IMAP Server"
+msgstr "POP və IMAP Vericisi"
+
+#: ../lib/network/drakfirewall.pm:42
+#, c-format
+msgid "Telnet server"
+msgstr "Telnet vericisi"
+
+#: ../lib/network/drakfirewall.pm:48
+#, c-format
+msgid "Windows Files Sharing (SMB)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:54
+#, c-format
+msgid "CUPS server"
+msgstr "CUPS vericisi"
+
+#: ../lib/network/drakfirewall.pm:60
+#, c-format
+msgid "Echo request (ping)"
+msgstr "Echo istəyi (ping)"
+
+#: ../lib/network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
+#, fuzzy, c-format
+msgid "Firewall configuration"
+msgstr "Əllə quraşdırma"
+
+#: ../lib/network/drakfirewall.pm:166
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandriva Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized Mandriva Security Firewall distribution."
+msgstr ""
+"drakfirewall quraşdırıcısı\n"
+"\n"
+"Bu, Mandriva Linux sisteminiz üçün şəxsi bir atəş divarını quraşdıracaq.\n"
+"Daha güclü və e'tibarlı sistem üçün xahiş edirik, xüsusi Mandriva Security\n"
+"Firewall buraxılışı ilə maraqlanın."
+
+#: ../lib/network/drakfirewall.pm:172
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+"drakfirewall quraşdırıcısı\n"
+"\n"
+"Daha irəli getmədən Şəbəkə/İnternet bağlantınızı drakconnect\n"
+"vasitəsi ilə quraşdırdığınızdan əmin olun."
+
+#: ../lib/network/drakfirewall.pm:189
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "İnternetin hansı xidmətlərə bağlana bilməsini istəyirsiniz?"
+
+#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
+#, c-format
+msgid "Firewall"
+msgstr "Atəş Divarı"
+
+#: ../lib/network/drakfirewall.pm:192
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"Müxtəlif qapılar daxil edə bilərsiniz. \n"
+"Hökmlü nümunələr: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Mə'lumat üçün /etc/services'a baxın."
+
+#: ../lib/network/drakfirewall.pm:198
+#, fuzzy, 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.\n"
+"\n"
+"You can also give a range of ports (eg: 24300:24350/udp)"
+msgstr ""
+"Hökmsüz qapı daxil edildi: %s.\n"
+"Düzgün şəkil \"port/tcp\" ya da \"port/udp\"dır, \n"
+"burada qapı 1 və 65535 arası ədəddir."
+
+#: ../lib/network/drakfirewall.pm:208
+#, c-format
+msgid "Everything (no firewall)"
+msgstr "Hamısına (atəş divarı olmasın)"
+
+#: ../lib/network/drakfirewall.pm:210
+#, c-format
+msgid "Other ports"
+msgstr "Diqər qapılar"
+
+#: ../lib/network/drakfirewall.pm:211
+#, c-format
+msgid "Log firewall messages in system logs"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:256
+#, c-format
+msgid ""
+"You can be warned when someone accesses to a service or tries to intrude "
+"into your computer.\n"
+"Please select which network activities should be watched."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:261
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:29
+#, c-format
+msgid "No device found"
+msgstr "Heç bir avadanlıq tapıla bilmədi"
+
+#: ../lib/network/drakroam.pm:63 ../lib/network/drakroam.pm:161
+#, fuzzy, c-format
+msgid "Please enter settings for network"
+msgstr "Ətraflı mə'lumatı"
+
+#: ../lib/network/drakroam.pm:67 ../lib/network/netconnect.pm:177
+#, fuzzy, c-format
+msgid "Configuring device..."
+msgstr "Quraşdırılır..."
+
+#: ../lib/network/drakroam.pm:95
+#, c-format
+msgid "Hostname changed to \"%s\""
+msgstr ""
+
+#: ../lib/network/drakroam.pm:108 ../lib/network/netconnect.pm:209
+#, fuzzy, c-format
+msgid "Scanning for networks..."
+msgstr "Şəbəkə yoxlanır..."
+
+#: ../lib/network/drakroam.pm:200
+#, fuzzy, c-format
+msgid "Connecting..."
+msgstr "Bağlan..."
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Disconnect"
+msgstr "Bağlantını kəs"
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Connect"
+msgstr "Bağlan"
+
+#: ../lib/network/drakroam.pm:250
+#, fuzzy, c-format
+msgid "Disconnecting..."
+msgstr "Bağlantını Kəs..."
+
+#: ../lib/network/drakroam.pm:279
+#, c-format
+msgid "SSID"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:280
+#, c-format
+msgid "Signal strength"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:281
+#, c-format
+msgid "Encryption"
+msgstr "Enkripsiya"
+
+#: ../lib/network/drakroam.pm:335 ../lib/network/netconnect.pm:761
+#, c-format
+msgid "Wireless connection"
+msgstr "Kabelsiz bağlantı"
+
+#: ../lib/network/drakroam.pm:350
+#, c-format
+msgid "Configure"
+msgstr "Qur"
+
+#: ../lib/network/drakroam.pm:352
+#, c-format
+msgid "Refresh"
+msgstr "Yenilə"
+
+#: ../lib/network/drakvpn.pm:30
+#, fuzzy, c-format
+msgid "VPN configuration"
+msgstr "CUPS quraşdırılması"
+
+#: ../lib/network/drakvpn.pm:34
+#, fuzzy, c-format
+msgid "Choose the VPN type"
+msgstr "Yeni böyüklüyü seçin"
+
+#: ../lib/network/drakvpn.pm:49
+#, c-format
+msgid "Initializing tools and detecting devices for %s..."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:52
+#, fuzzy, c-format
+msgid "Unable to initialize %s connection type!"
+msgstr "Namə'lum bağlantı növü"
+
+#: ../lib/network/drakvpn.pm:60
+#, c-format
+msgid "Please select an existing VPN connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:64
+#, fuzzy, c-format
+msgid "Configure a new connection..."
+msgstr "Bağlantınız sınanır..."
+
+#: ../lib/network/drakvpn.pm:66
+#, fuzzy, c-format
+msgid "New name"
+msgstr "Həqiqi ad"
+
+#: ../lib/network/drakvpn.pm:70
+#, c-format
+msgid "You must select an existing connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:81
+#, fuzzy, c-format
+msgid "Please enter the required key(s)"
+msgstr "Xahiş edirik, WebDAV vericisi URL-ni daxil edin"
+
+#: ../lib/network/drakvpn.pm:86
+#, fuzzy, c-format
+msgid "Please enter the settings of your VPN connection"
+msgstr "%s əksi ilə rabitə qurula bilmir"
+
+#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#, c-format
+msgid "Do you want to start the connection now?"
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:100
+#, fuzzy, c-format
+msgid "Connection failed."
+msgstr "Bağlantı adı"
+
+#: ../lib/network/drakvpn.pm:108
+#, c-format
+msgid ""
+"The VPN connection is now configured.\n"
+"\n"
+"This VPN connection can be automatically started together with a network "
+"connection.\n"
+"It can be done by reconfiguring the network connection and selecting this "
+"VPN connection.\n"
+msgstr ""
+
+#: ../lib/network/ifw.pm:129
+#, fuzzy, c-format
+msgid "Port scanning"
+msgstr "Bölüşmə yoxdur"
+
+#: ../lib/network/ifw.pm:130
+#, fuzzy, c-format
+msgid "Service attack"
+msgstr "Xidmət _növü:"
+
+#: ../lib/network/ifw.pm:131
+#, fuzzy, c-format
+msgid "Password cracking"
+msgstr "Şifrə (təkrar)"
+
+#: ../lib/network/ifw.pm:132
+#, c-format
+msgid "\"%s\" attack"
+msgstr ""
+
+#: ../lib/network/ifw.pm:134
+#, c-format
+msgid "A port scanning attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:135
+#, fuzzy, c-format
+msgid "The %s service has been attacked by %s."
+msgstr "Bu hadisə dəyişdirilib."
+
+#: ../lib/network/ifw.pm:136
+#, c-format
+msgid "A password cracking attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:137
+#, fuzzy, c-format
+msgid "A \"%s\" attack has been attempted by %s"
+msgstr "Bu hadisə dəyişdirilib."
+
+#: ../lib/network/ifw.pm:146
+#, c-format
+msgid ""
+"The \"%s\" application is trying to make a service (%s) available to the "
+"network."
+msgstr ""
+
+#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
+#: ../lib/network/ifw.pm:150
+#, fuzzy, c-format
+msgid "port %d"
+msgstr "Raport Göndər"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#, c-format
+msgid "Manual"
+msgstr "Bələdçi"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
+#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
+#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
+#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#: ../lib/network/netconnect.pm:638
+#, c-format
+msgid "Automatic"
+msgstr "Avtomatik"
+
+#: ../lib/network/ndiswrapper.pm:27
+#, c-format
+msgid "No device supporting the %s ndiswrapper driver is present!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:33
+#, c-format
+msgid "Please select the Windows driver (.inf file)"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:42
+#, c-format
+msgid "Unable to install the %s ndiswrapper driver!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:86
+#, c-format
+msgid "Unable to load the ndiswrapper module!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:92
+#, c-format
+msgid ""
+"The selected device has already been configured with the %s driver.\n"
+"Do you really want to use a ndiswrapper driver?"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:102
+#, c-format
+msgid "Unable to find the ndiswrapper interface!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:115
+#, fuzzy, c-format
+msgid "Choose an ndiswrapper driver"
+msgstr "Səbəbsiz bir sürücü seçilir"
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Use the ndiswrapper driver %s"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:118
+#, fuzzy, c-format
+msgid "Install a new driver"
+msgstr "Sistemin qurulumu"
+
+#: ../lib/network/ndiswrapper.pm:129
+#, c-format
+msgid "Select a device:"
+msgstr ""
+
+#: ../lib/network/netcenter.pm:55
+#, fuzzy, c-format
+msgid "Network Center"
+msgstr "Şəbəkə ara üzü"
+
+#: ../lib/network/netconnect.pm:37
+#, c-format
+msgid "United States"
+msgstr "Birləşmiş Ştatlar"
+
+#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
+#: ../lib/network/netconnect.pm:507
+#, fuzzy, c-format
+msgid "Manual choice"
+msgstr "əllə"
+
+#: ../lib/network/netconnect.pm:60
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Daxili ISDN kart"
+
+#: ../lib/network/netconnect.pm:65
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr "Dünyanın geri qalanı üçün protokol"
+
+#: ../lib/network/netconnect.pm:123
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Qurğulamaq istədiyiniz bağlantını seçin"
+
+#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
+#: ../lib/network/netconnect.pm:788
+#, c-format
+msgid "Select the network interface to configure:"
+msgstr "Quraşdırılacaq şəbəkə ara üzünü seç:"
+
+#: ../lib/network/netconnect.pm:164
+#, c-format
+msgid "No device can be found for this connection type."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:173
+#, fuzzy, c-format
+msgid "Hardware Configuration"
+msgstr "Şəbəkə Quraşdırılması"
+
+#: ../lib/network/netconnect.pm:194
+#, c-format
+msgid "Please select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:212
+#, c-format
+msgid "Please select your network:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:241
+#, c-format
+msgid ""
+"Please select your connection protocol.\n"
+"If you do not know it, keep the preselected protocol."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#, c-format
+msgid "Connection control"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Connection Configuration"
+msgstr "Bağlantı quraşdırılması"
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Xahiş edirik, aşağıdakıları doldurun ya da seçin"
+
+#: ../lib/network/netconnect.pm:318
+#, c-format
+msgid "Your personal phone number"
+msgstr "Şəxsi telefon nömrəniz"
+
+#: ../lib/network/netconnect.pm:319
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
+
+#: ../lib/network/netconnect.pm:321
+#, c-format
+msgid "Provider DNS 1 (optional)"
+msgstr "Provayder DNS-i 1 (arzuya görə)"
+
+#: ../lib/network/netconnect.pm:322
+#, c-format
+msgid "Provider DNS 2 (optional)"
+msgstr "Provayder DNS-i 2 (arzuya görə)"
+
+#: ../lib/network/netconnect.pm:332
+#, c-format
+msgid "Card IO_1"
+msgstr "Kart IO_1"
+
+#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#, c-format
+msgid "External ISDN modem"
+msgstr "Xarici ISDN modem"
+
+#: ../lib/network/netconnect.pm:384
+#, c-format
+msgid "Select a device!"
+msgstr "Avadanlıq seçin !"
+
+#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
+#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid "ISDN Configuration"
+msgstr "ISDN quraşdırılması"
+
+#: ../lib/network/netconnect.pm:394
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Hansı növ kartınız var?"
+
+#: ../lib/network/netconnect.pm:404
+#, 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"
+"İSA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
+"\n"
+"PCMCİA kartınız var isə kartınızın \"irq\" və ya \"io\"sunu bilməlisiniz.\n"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Continue"
+msgstr "Davam et"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Abort"
+msgstr "Dayandır"
+
+#: ../lib/network/netconnect.pm:414
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "Hansı sizin ISDN kartınızdır?"
+
+#: ../lib/network/netconnect.pm:432
+#, c-format
+msgid ""
+"A CAPI driver is available for this modem. This CAPI driver can offer more "
+"capabilities than the free driver (like sending faxes). Which driver do you "
+"want to use?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:446
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
+
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it is not listed, choose Unlisted."
+msgstr ""
+"İnternet xidmət vericinizi seçin.\n"
+"Siyahıda deyilsə Siyahıda deyil'-i seçin."
+
+#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
+#, c-format
+msgid "Provider:"
+msgstr "Provayder: "
+
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid ""
+"Your modem is not supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+"Modeminiz sistem tərəfindən dəstəklənmir.\n"
+"http://www.linmodems.org ünvanına baxın"
+
+#: ../lib/network/netconnect.pm:490
+#, c-format
+msgid "Select the modem to configure:"
+msgstr "Quraşdırılacaq modemi seçin:"
+
+#: ../lib/network/netconnect.pm:492
+#, c-format
+msgid "Modem"
+msgstr "Modem"
+
+#: ../lib/network/netconnect.pm:527
+#, 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"
+
+#: ../lib/network/netconnect.pm:556
+#, c-format
+msgid "Select your provider:"
+msgstr "Provayderinizi seçin:"
+
+#: ../lib/network/netconnect.pm:580
+#, c-format
+msgid "Dialup: account options"
+msgstr "Dialup: hesab seçimləri"
+
+#: ../lib/network/netconnect.pm:583
+#, c-format
+msgid "Connection name"
+msgstr "Bağlantı adı"
+
+#: ../lib/network/netconnect.pm:584
+#, c-format
+msgid "Phone number"
+msgstr "Telefon nömrəsi"
+
+#: ../lib/network/netconnect.pm:585
+#, c-format
+msgid "Login ID"
+msgstr "Giriş adı"
+
+#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
+#, c-format
+msgid "Dialup: IP parameters"
+msgstr "Dialup: IP parametrləri"
+
+#: ../lib/network/netconnect.pm:603
+#, c-format
+msgid "IP parameters"
+msgstr "IP parametrləri"
+
+#: ../lib/network/netconnect.pm:605
+#, c-format
+msgid "Subnet mask"
+msgstr "Subnet maskası"
+
+#: ../lib/network/netconnect.pm:617
+#, c-format
+msgid "Dialup: DNS parameters"
+msgstr "Dialup: DNS parametrləri"
+
+#: ../lib/network/netconnect.pm:620
+#, c-format
+msgid "DNS"
+msgstr "DNS"
+
+#: ../lib/network/netconnect.pm:621
+#, c-format
+msgid "Domain name"
+msgstr "Domen adı"
+
+#: ../lib/network/netconnect.pm:624
+#, c-format
+msgid "Set hostname from IP"
+msgstr "IP-dən qovşaq adını seç"
+
+#: ../lib/network/netconnect.pm:637
+#, c-format
+msgid "Gateway IP address"
+msgstr "Şəbəkə keçişi IP ünvanı"
+
+#: ../lib/network/netconnect.pm:670
+#, fuzzy, c-format
+msgid "Automatically at boot"
+msgstr "Açılışda başlat"
+
+#: ../lib/network/netconnect.pm:672
+#, c-format
+msgid "By using Net Applet in the system tray"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:674
+#, c-format
+msgid "Manually (the interface would still be activated at boot)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:683
+#, fuzzy, c-format
+msgid "How do you want to dial this connection?"
+msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
+
+#: ../lib/network/netconnect.pm:696
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "İndi internetə bağlanmağı sınamaq istəyirsiniz?"
+
+#: ../lib/network/netconnect.pm:723
+#, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Sistem indi İnternetə bağlıdır."
+
+#: ../lib/network/netconnect.pm:724
+#, 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."
+
+#: ../lib/network/netconnect.pm:725
+#, c-format
+msgid ""
+"The system does not seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"Sisteminiz İnternetə bağlı görünmür.\n"
+"Bağlantınızı yenidən quraşdırın."
+
+#: ../lib/network/netconnect.pm:740
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr ""
+"Təbrik edirik, internet və şəbəkə quraşdırılması bitdi.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:743
+#, 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."
+
+#: ../lib/network/netconnect.pm:744
+#, c-format
+msgid ""
+"Problems occurred during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection does not "
+"work, you might want to relaunch the configuration."
+msgstr ""
+"Quraşdırma sırasında xətalar yarandı.\n"
+"net_monitor ya da mcc vasitəsiylə bağlantınızı sınayın. Əgər "
+"bağlantınızyoxdursa, quraşdırmanı yenidən başladın."
+
+#: ../lib/network/netconnect.pm:756
+#, c-format
+msgid "Sagem USB modem"
+msgstr "Sagem USB modem"
+
+#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
+#, c-format
+msgid "Bewan modem"
+msgstr "Bewan modem"
+
+#: ../lib/network/netconnect.pm:759
+#, c-format
+msgid "ECI Hi-Focus modem"
+msgstr "ECI Hi-Focus modem"
+
+#: ../lib/network/netconnect.pm:760
+#, c-format
+msgid "LAN connection"
+msgstr "LAN bağlantısı"
+
+#: ../lib/network/netconnect.pm:762
+#, c-format
+msgid "ADSL connection"
+msgstr "ADSL bağlantısı"
+
+#: ../lib/network/netconnect.pm:763
+#, c-format
+msgid "Cable connection"
+msgstr "Kabel bağlantısı"
+
+#: ../lib/network/netconnect.pm:764
+#, c-format
+msgid "ISDN connection"
+msgstr "ISDN Bağlantısı"
+
+#: ../lib/network/netconnect.pm:765
+#, c-format
+msgid "Modem connection"
+msgstr "Modem bağlantısı"
+
+#: ../lib/network/netconnect.pm:766
+#, c-format
+msgid "DVB connection"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:768
+#, c-format
+msgid "(detected on port %s)"
+msgstr "(%s qapısında tapıldı)"
+
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected %s)"
+msgstr "(%s tapıldı)"
+
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected)"
+msgstr "(tapıldı)"
+
+#: ../lib/network/netconnect.pm:771
+#, c-format
+msgid "Network Configuration"
+msgstr "Şəbəkə Quraşdırılması"
+
+#: ../lib/network/netconnect.pm:772
+#, c-format
+msgid "Zeroconf hostname resolution"
+msgstr "Zeroconf qovşaq adı həlli"
+
+#: ../lib/network/netconnect.pm:773
+#, c-format
+msgid ""
+"If desired, enter a Zeroconf hostname.\n"
+"This is the name your machine will use to advertise any of\n"
+"its shared resources that are not managed by the network.\n"
+"It is not necessary on most networks."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:777
+#, c-format
+msgid "Zeroconf Host name"
+msgstr "Zeroconf Qovşaq adı"
+
+#: ../lib/network/netconnect.pm:778
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr "Zeroconf qovşaq adı . (nöqtə) daxil edə bilməz"
+
+#: ../lib/network/netconnect.pm:779
+#, 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 onsuzda quruludur.\n"
+"Qurğuları saxlamaq üçün Oldu'ya, İnternet və Şəbəkə qurğularınızı yenidən "
+"quraşdırmaq üçün isə Ləğv et'ə basın.\n"
+
+#: ../lib/network/netconnect.pm:782
+#, c-format
+msgid "The network needs to be restarted. Do you want to restart it?"
+msgstr "Şəbəkə yenidən başladılmalıdır. Yenidən başlatmaq istəyirsiniz?"
+
+#: ../lib/network/netconnect.pm:783
+#, c-format
+msgid ""
+"A problem occurred while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"Şəbəkənin yenidən başladılması sırasında xəta oldu: \n"
+"\n"
+"%s"
+
+#: ../lib/network/netconnect.pm:784
+#, c-format
+msgid ""
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press \"%s\" to continue."
+msgstr ""
+"İndi %s bağlantısı qurğulanacaq.\n"
+"\n"
+"\n"
+"Davam etmək üçün \"%s\" düyməsinə basın."
+
+#: ../lib/network/netconnect.pm:785
+#, c-format
+msgid "Configuration is complete, do you want to apply settings?"
+msgstr "Quraşdırma qurtardı, dəyişiklikləri tətbiq etmək istəyirsiniz ?"
+
+#: ../lib/network/netconnect.pm:786
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+"Siz İnternetə bağlanmanın bir neçə yöntəmini quraşdırmışsınız.\n"
+"İstifadə etmək istədiyinizi seçin.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:787
+#, c-format
+msgid "Internet connection"
+msgstr "İnternet bağlantısı"
+
+#: ../lib/network/netconnect.pm:789
+#, c-format
+msgid "Configuring network device %s (driver %s)"
+msgstr "%s şəbəkə avadanlığı qurulur (sürücü %s) "
+
+#: ../lib/network/netconnect.pm:790
+#, c-format
+msgid ""
+"The following protocols can be used to configure a LAN connection. Please "
+"choose the one you want to use."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:791
+#, 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 ""
+"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."
+
+#: ../lib/network/netconnect.pm:796
+#, c-format
+msgid "Last but not least you can also type in your DNS server IP addresses."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:797
+#, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "DNS vericisi ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../lib/network/netconnect.pm:799
+#, c-format
+msgid "Gateway device"
+msgstr "Şəbəkə keçidi avadanlığı"
+
+#: ../lib/network/netconnect.pm:813
+#, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr ""
+"Gözlənilməyən xəta baş verdi:\n"
+"%s"
+
+#: ../lib/network/network.pm:429
+#, c-format
+msgid "Proxies configuration"
+msgstr "Vəkil vericilər quraşdırılması"
+
+#: ../lib/network/network.pm:430
+#, c-format
+msgid ""
+"Here you can set up your proxies configuration (eg: http://"
+"my_caching_server:8080)"
+msgstr ""
+
+#: ../lib/network/network.pm:431
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP vəkil verici"
+
+#: ../lib/network/network.pm:432
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: ../lib/network/network.pm:433
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: ../lib/network/network.pm:434
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP vəkili"
+
+#: ../lib/network/network.pm:435
+#, fuzzy, c-format
+msgid "No proxy for (comma separated list):"
+msgstr "%d vergüllə ayrılmış qatar"
+
+#: ../lib/network/network.pm:440
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "Vəkil http://... şəklində olmalıdır."
+
+#: ../lib/network/network.pm:441
+#, fuzzy, c-format
+msgid "Proxy should be http://... or https://..."
+msgstr "Vəkil http://... şəklində olmalıdır."
+
+#: ../lib/network/network.pm:442
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "URL 'ftp:' ya da 'http:' ilə başlamalıdır"
+
+#: ../lib/network/shorewall.pm:61
+#, c-format
+msgid ""
+"Please select the interfaces that will be protected by the firewall.\n"
+"\n"
+"All interfaces directly connected to Internet should be selected,\n"
+"while interfaces connected to a local network may be unselected.\n"
+"\n"
+"Which interfaces should be protected?\n"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:136
+#, c-format
+msgid "Keep custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:137
+#, c-format
+msgid "Drop custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:142
+#, c-format
+msgid ""
+"Your firewall configuration has been manually edited and contains\n"
+"rules that may conflict with the configuration that has just been set up.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:135
+#, c-format
+msgid "Some components (%s) are required but aren't available for %s hardware."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:136
+#, c-format
+msgid "Some packages (%s) are required but aren't available."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:138
+#, c-format
+msgid ""
+"These packages can be found in Mandriva Club or in Mandriva commercial "
+"releases."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:139
+#, c-format
+msgid "The following component is missing: %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:141
+#, c-format
+msgid ""
+"The required files can also be installed from this URL:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:183
+#, c-format
+msgid "Use a floppy"
+msgstr "Disket işlət"
+
+#: ../lib/network/thirdparty.pm:179 ../lib/network/thirdparty.pm:186
+#, c-format
+msgid "Use my Windows partition"
+msgstr "Windows bölməmi işlət"
+
+#: ../lib/network/thirdparty.pm:180
+#, c-format
+msgid "Select file"
+msgstr "Fayl seç"
+
+#: ../lib/network/thirdparty.pm:191
+#, c-format
+msgid "Please select the firmware file (for example: %s)"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:215
+#, fuzzy, c-format
+msgid "Unable to find \"%s\" on your Windows system!"
+msgstr "Siseminizdəki yazı növlərini silin"
+
+#: ../lib/network/thirdparty.pm:217
+#, c-format
+msgid "No Windows system has been detected!"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:227
+#, c-format
+msgid "Insert floppy"
+msgstr "Disket daxil edin"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+"Kök cərgəsində %2$s olan FAT ilə şəkilləndirilmiş %1$s disketini taxın və %3"
+"$s düyməsinə basın"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid "Next"
+msgstr "Sonrakı"
+
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "Disketə icazə xətası, %s avadanlığı bağlana bilmədi"
+
+#: ../lib/network/thirdparty.pm:327
+#, c-format
+msgid "Looking for required software and drivers..."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:338
+#, fuzzy, c-format
+msgid "Please wait, running device configuration commands..."
+msgstr "Xahiş edirik gözləyin, avadanlıqlar tapılır və quraşdırılır..."
+
+#: ../lib/network/vpn/openvpn.pm:107
+#, c-format
+msgid "X509 Public Key Infrastructure"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:108
+#, c-format
+msgid "Static Key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:115
+#, c-format
+msgid "Type"
+msgstr "Növ"
+
+#. -PO: please don't translate the CA acronym
+#: ../lib/network/vpn/openvpn.pm:142
+#, c-format
+msgid "Certificate Authority (CA)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:148
+#, c-format
+msgid "Certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:154
+#, c-format
+msgid "Key"
+msgstr "Açarla"
+
+#: ../lib/network/vpn/openvpn.pm:160
+#, fuzzy, c-format
+msgid "TLS control channel key"
+msgstr "Sol Control düyməsi"
+
+#: ../lib/network/vpn/openvpn.pm:167
+#, c-format
+msgid "Key direction"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:175
+#, fuzzy, c-format
+msgid "Authenticate using username and password"
+msgstr "%s istifadəçi adı ilə giriş edilə bilmir (şifrəniz səhvdir?)"
+
+#: ../lib/network/vpn/openvpn.pm:181
+#, c-format
+msgid "Check server certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:187
+#, fuzzy, c-format
+msgid "Cipher algorithm"
+msgstr "Şifrələmə alqorifması"
+
+#: ../lib/network/vpn/openvpn.pm:191
+#, c-format
+msgid "Default"
+msgstr "Ön Qurğulu"
+
+#: ../lib/network/vpn/openvpn.pm:195
+#, c-format
+msgid "Size of cipher key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:206
+#, fuzzy, c-format
+msgid "Get from server"
+msgstr "Telnet vericisi"
+
+#: ../lib/network/vpn/openvpn.pm:216
+#, fuzzy, c-format
+msgid "Gateway port"
+msgstr "Şəbəkə Keçidi"
+
+#: ../lib/network/vpn/openvpn.pm:232
+#, fuzzy, c-format
+msgid "Remote IP address"
+msgstr "Şəbəkə keçişi IP ünvanı"
+
+#: ../lib/network/vpn/openvpn.pm:237
+#, fuzzy, c-format
+msgid "Use TCP protocol"
+msgstr "Protokol"
+
+#: ../lib/network/vpn/openvpn.pm:243
+#, c-format
+msgid "Virtual network device type"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:250
+#, c-format
+msgid "Virtual network device number (optional)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:365
+#, c-format
+msgid "Starting connection.."
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:380
+#, c-format
+msgid "Please insert your token"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:9
+#, c-format
+msgid "Cisco VPN Concentrator"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:43
+#, fuzzy, c-format
+msgid "Group name"
+msgstr "Qrup ID'si"
+
+#: ../lib/network/vpn/vpnc.pm:47
+#, c-format
+msgid "Group secret"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:52
+#, c-format
+msgid "Username"
+msgstr "İstifadəçi adı"
+
+#: ../lib/network/vpn/vpnc.pm:61
+#, c-format
+msgid "Use Cisco-UDP encapsulation"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:67
+#, c-format
+msgid "Use specific UDP port"
+msgstr ""
diff --git a/po/be.po b/po/be.po
index 0eb96b4..6720b95 100644
--- a/po/be.po
+++ b/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net VERSION\n"
-"POT-Creation-Date: 2007-01-10 15:18+0100\n"
+"POT-Creation-Date: 2007-08-09 11:47+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,2555 +13,520 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../lib/network/connection.pm:16
-#, c-format
-msgid "Unknown connection type"
-msgstr ""
-
-#: ../lib/network/connection.pm:115
-#, c-format
-msgid "Network access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:116
-#, c-format
-msgid "Access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:117
-#, c-format
-msgid "Address settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:149 ../lib/network/drakvpn.pm:62
-#: ../lib/network/vpn/openvpn.pm:365 ../lib/network/vpn/openvpn.pm:379
-#: ../lib/network/vpn/openvpn.pm:390 ../tools/net_applet:129
+#: ../bin/drakconnect:61 ../lib/network/netconnect.pm:118
#, fuzzy, c-format
-msgid "VPN connection"
-msgstr "Дзеяньні"
-
-#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
-#: ../lib/network/connection/wireless.pm:37 ../lib/network/vpn/openvpn.pm:127
-#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
-#, c-format
-msgid "None"
-msgstr "Нічога"
-
-#: ../lib/network/connection.pm:163
-#, c-format
-msgid "Allow users to manage the connection"
-msgstr ""
-
-#: ../lib/network/connection.pm:164
-#, c-format
-msgid "Start the connection at boot"
-msgstr ""
+msgid "Network & Internet Configuration"
+msgstr "Канфігурацыя сеткі"
-#: ../lib/network/connection.pm:165 ../tools/drakconnect:462
+#: ../bin/drakconnect:81
#, fuzzy, c-format
-msgid "Metric"
-msgstr "абмежаванне"
-
-#: ../lib/network/connection.pm:230
-#, c-format
-msgid "Link detected on interface %s"
-msgstr ""
+msgid "Network configuration (%d adapters)"
+msgstr "Канфігурацыя сеткі"
-#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:278
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Link beat lost on interface %s"
-msgstr ""
+msgid "Gateway:"
+msgstr "Шлюз:"
-#: ../lib/network/connection/cable.pm:13
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Cable"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:14
-#, fuzzy, c-format
-msgid "Cable modem"
-msgstr "Рэжым прайгравання"
+msgid "Interface:"
+msgstr "Інтэрфэйс:"
-#: ../lib/network/connection/cable.pm:45
+#: ../bin/drakconnect:97 ../bin/net_monitor:119
#, c-format
-msgid "Use BPALogin (needed for Telstra)"
+msgid "Wait please"
msgstr ""
-#: ../lib/network/connection/cable.pm:48 ../lib/network/netconnect.pm:587
-#: ../tools/drakconnect:482
+#: ../bin/drakconnect:113 ../bin/drakinvictus:105
#, c-format
-msgid "Authentication"
-msgstr "Аўтэнтыфікацыя"
-
-#: ../lib/network/connection/cable.pm:50 ../lib/network/connection/ppp.pm:22
-#: ../lib/network/netconnect.pm:326 ../lib/network/vpn/openvpn.pm:393
-#: ../tools/drakconnect:492
-#, c-format
-msgid "Account Login (user name)"
-msgstr "Імя для ўваходу (імя карыстальніку)"
-
-#: ../lib/network/connection/cable.pm:52 ../lib/network/connection/ppp.pm:23
-#: ../lib/network/netconnect.pm:327 ../lib/network/vpn/openvpn.pm:394
-#: ../tools/drakconnect:493
-#, c-format
-msgid "Account Password"
-msgstr "Пароль для ўваходу"
+msgid "Interface"
+msgstr "Інтэрфэйс"
-#: ../lib/network/connection/cellular.pm:47
+#: ../bin/drakconnect:113 ../bin/drakconnect:321 ../bin/drakconnect:888
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:125
+#: ../lib/network/netconnect.pm:604 ../lib/network/vpn/openvpn.pm:221
#, c-format
-msgid "Access Point Name"
-msgstr ""
+msgid "IP address"
+msgstr "IP адрас"
-#: ../lib/network/connection/cellular_bluetooth.pm:10
+#: ../bin/drakconnect:113 ../bin/drakconnect:305 ../bin/drakconnect:563
+#: ../bin/drakids:252 ../bin/drakvpn-old:839 ../lib/network/netconnect.pm:448
#, c-format
-msgid "Bluetooth"
-msgstr ""
+msgid "Protocol"
+msgstr "Пратакол"
-#: ../lib/network/connection/cellular_bluetooth.pm:11
+#: ../bin/drakconnect:113 ../lib/network/netconnect.pm:434
#, c-format
-msgid "Bluetooth Dial Up Networking"
-msgstr ""
+msgid "Driver"
+msgstr "Драйвэр"
-#: ../lib/network/connection/cellular_card.pm:8
+#: ../bin/drakconnect:113
#, c-format
-msgid "GPRS/Edge/3G"
-msgstr ""
+msgid "State"
+msgstr "Стан"
-#: ../lib/network/connection/cellular_card.pm:67
-#: ../lib/network/vpn/openvpn.pm:391
+#: ../bin/drakconnect:130
#, c-format
-msgid "PIN number"
-msgstr ""
+msgid "Hostname: "
+msgstr "Імя машыны: "
-#: ../lib/network/connection/cellular_card.pm:130
+#: ../bin/drakconnect:132
#, fuzzy, c-format
-msgid "Unable to open device %s"
-msgstr "Немагчыма адчыніць файл %s\n"
+msgid "Configure hostname..."
+msgstr "Настройка IDE"
-#: ../lib/network/connection/cellular_card.pm:155
+#: ../bin/drakconnect:146 ../bin/drakconnect:851
#, fuzzy, c-format
-msgid "Please check that your SIM card is inserted."
-msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
-
-#: ../lib/network/connection/cellular_card.pm:161
-#, c-format
-msgid ""
-"You entered a wrong PIN code.\n"
-"Entering the wrong PIN code multiple times may lock your SIM card!"
-msgstr ""
-
-#: ../lib/network/connection/dvb.pm:12
-#, c-format
-msgid "DVB"
-msgstr ""
+msgid "LAN configuration"
+msgstr "Настройка ISDN"
-#: ../lib/network/connection/dvb.pm:13
-#, c-format
-msgid "Satellite (DVB)"
-msgstr ""
+#: ../bin/drakconnect:151
+#, fuzzy, c-format
+msgid "Configure Local Area Network..."
+msgstr "Настройка сеткі"
-#: ../lib/network/connection/dvb.pm:56
+#: ../bin/drakconnect:157 ../bin/drakconnect:240 ../bin/draknfs:183
+#: ../bin/net_applet:138
#, c-format
-msgid "Adapter card"
-msgstr ""
+msgid "Help"
+msgstr "Дапамога"
-#: ../lib/network/connection/dvb.pm:57
+#: ../bin/drakconnect:159 ../bin/drakconnect:241 ../bin/drakconnect:245
+#: ../bin/drakinvictus:140
#, c-format
-msgid "Net demux"
-msgstr ""
+msgid "Apply"
+msgstr "Применить"
-#: ../lib/network/connection/dvb.pm:58
+#: ../bin/drakconnect:161 ../bin/drakconnect:943 ../bin/drakconnect:1034
+#: ../bin/draknetprofile:106 ../bin/net_monitor:341
#, c-format
-msgid "PID"
-msgstr "PID"
+msgid "Cancel"
+msgstr "Адмена"
-#: ../lib/network/connection/ethernet.pm:10
+#: ../bin/drakconnect:162 ../bin/drakconnect:858 ../bin/drakconnect:945
+#: ../bin/drakconnect:1035 ../bin/draknetprofile:108 ../bin/net_monitor:342
#, c-format
-msgid "Ethernet"
-msgstr ""
+msgid "Ok"
+msgstr "Ок"
-#: ../lib/network/connection/ethernet.pm:53
+#: ../bin/drakconnect:164 ../bin/drakconnect:636 ../bin/drakgw:359
+#: ../bin/draksambashare:208 ../lib/network/drakroam.pm:200
+#: ../lib/network/drakroam.pm:250
#, c-format
-msgid "Unable to find network interface for selected device (using %s driver)."
-msgstr ""
+msgid "Please wait"
+msgstr "Калі ласка, пачакайце"
-#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#: ../bin/drakconnect:166 ../bin/drakconnect:638
#, fuzzy, c-format
-msgid "Manual configuration"
-msgstr "Захаваць канфігурацыю меню"
+msgid "Please Wait... Applying the configuration"
+msgstr "Праверка параметраў настройкі"
-#: ../lib/network/connection/ethernet.pm:62
+#: ../bin/drakconnect:192
#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
+msgid "Manage connections"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:116
-#, fuzzy, c-format
-msgid "IP settings"
-msgstr "Настройкі шрыфтоў"
-
-#: ../lib/network/connection/ethernet.pm:125 ../lib/network/netconnect.pm:604
-#: ../lib/network/vpn/openvpn.pm:221 ../tools/drakconnect:113
-#: ../tools/drakconnect:321 ../tools/drakconnect:887 ../tools/drakhosts:196
+#: ../bin/drakconnect:219 ../lib/network/drakroam.pm:346
#, c-format
-msgid "IP address"
-msgstr "IP адрас"
+msgid "Device: "
+msgstr "Прылада:"
-#: ../lib/network/connection/ethernet.pm:129
-#, 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)."
-msgstr ""
-"Калі ласка, увядзіце IP канфігурацыю для вашай машыны.\n"
-"Кожны пункт павінен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
-"натацыі (напрыклад, 1.2.3.4)."
+#: ../bin/drakconnect:302
+#, fuzzy, c-format
+msgid "IP configuration"
+msgstr "Канфігурацыя"
-#: ../lib/network/connection/ethernet.pm:132 ../tools/drakconnect:326
-#: ../tools/drakconnect:888 ../tools/drakgw:177
+#: ../bin/drakconnect:326 ../bin/drakconnect:889 ../bin/drakgw:177
+#: ../lib/network/connection/ethernet.pm:132
#, c-format
msgid "Netmask"
msgstr "Маска сеткі"
-#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:636
-#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
-#: ../tools/drakconnect:332
+#: ../bin/drakconnect:332 ../lib/network/connection/ethernet.pm:133
+#: ../lib/network/netconnect.pm:636 ../lib/network/vpn/openvpn.pm:212
+#: ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "Шлюз"
-#: ../lib/network/connection/ethernet.pm:136 ../tools/drakconnect:382
+#: ../bin/drakconnect:337
#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "IP сэервера SMB"
+msgid "DNS servers"
+msgstr "CDDB сервакі"
-#: ../lib/network/connection/ethernet.pm:138
+#: ../bin/drakconnect:343
#, fuzzy, c-format
-msgid "DNS server 1"
-msgstr "NIS сэервер:"
+msgid "Search Domain"
+msgstr "NIS Domain"
-#: ../lib/network/connection/ethernet.pm:139
-#, fuzzy, c-format
-msgid "DNS server 2"
-msgstr "NIS сэервер:"
+#: ../bin/drakconnect:351 ../bin/drakvpn-old:837
+#, c-format
+msgid "none"
+msgstr "няма"
-#: ../lib/network/connection/ethernet.pm:140
+#: ../bin/drakconnect:351
#, fuzzy, c-format
-msgid "Search domain"
-msgstr "Шукаць: "
+msgid "static"
+msgstr "Антарктыка"
-#: ../lib/network/connection/ethernet.pm:141
+#: ../bin/drakconnect:351
#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
+msgid "DHCP"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:143 ../tools/drakconnect:369
-#: ../tools/drakconnect:891
+#: ../bin/drakconnect:369 ../bin/drakconnect:892
+#: ../lib/network/connection/ethernet.pm:143
#, c-format
msgid "DHCP client"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:144 ../tools/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: ../lib/network/connection/ethernet.pm:145 ../tools/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:146 ../tools/drakconnect:384
+#: ../bin/drakconnect:373 ../lib/network/connection/ethernet.pm:200
#, c-format
-msgid "Get NTPD servers from DHCP"
+msgid "Assign host name from DHCP address"
msgstr ""
-#: ../lib/network/connection/ethernet.pm:147 ../tools/drakconnect:375
+#: ../bin/drakconnect:375 ../lib/network/connection/ethernet.pm:147
#, fuzzy, c-format
msgid "DHCP host name"
msgstr "Імя машыны"
-#: ../lib/network/connection/ethernet.pm:149
-#, c-format
-msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:160 ../tools/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: ../lib/network/connection/ethernet.pm:165 ../tools/drakconnect:680
+#: ../bin/drakconnect:379 ../lib/network/connection/ethernet.pm:144
#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: ../lib/network/connection/ethernet.pm:170
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:176
-#, fuzzy, c-format
-msgid "%s already in use\n"
-msgstr "%s ужо знойдзены "
-
-#: ../lib/network/connection/ethernet.pm:200 ../tools/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:202 ../tools/drakhosts:196
-#, c-format
-msgid "Host name"
-msgstr "Імя машыны"
-
-#: ../lib/network/connection/ethernet.pm:220 ../tools/drakconnect:440
-#, fuzzy, c-format
-msgid "Network Hotplugging"
-msgstr "Сетка"
-
-#: ../lib/network/connection/ethernet.pm:224
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:277
-#, c-format
-msgid "Link beat detected on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:280
-#, c-format
-msgid "Requesting a network address on interface %s (%s protocol)..."
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:281
-#, c-format
-msgid "Got a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:282
-#, c-format
-msgid "Failed to get a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:8
-#, c-format
-msgid "ISDN"
-msgstr "ISDN"
-
-#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
-#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
-#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
-#: ../lib/network/netconnect.pm:562
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Не вядома"
-
-#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#. -PO: POTS means "Plain old telephone service"
-#: ../lib/network/connection/pots.pm:10
-#, c-format
-msgid "POTS"
-msgstr ""
-
-#. -PO: POTS means "Plain old telephone service"
-#. -PO: remove it if it doesn't have an equivalent in your language
-#. -PO: for example, in French, it can be translated as "RTC"
-#: ../lib/network/connection/pots.pm:16
-#, c-format
-msgid "Analog telephone modem (POTS)"
-msgstr ""
-
-#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:74
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Script-based"
-msgstr "на аснове скрыпту"
-
-#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:75
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:76
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Terminal-based"
-msgstr "на аснове тэрміналу"
-
-#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:77
-#: ../tools/drakconnect:499
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
+msgid "DHCP timeout (in seconds)"
+msgstr "Настройка далучэння да Інтэрнэту"
-#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:78
-#: ../tools/drakconnect:499
+#: ../bin/drakconnect:382 ../lib/network/connection/ethernet.pm:136
#, fuzzy, c-format
-msgid "PAP/CHAP"
-msgstr "CHAP"
-
-#: ../lib/network/connection/providers/cellular.pm:13
-#: ../lib/network/connection/providers/cellular.pm:18
-#: ../lib/network/connection/providers/cellular.pm:23
-#: ../lib/network/connection/providers/xdsl.pm:492
-#: ../lib/network/connection/providers/xdsl.pm:504
-#: ../lib/network/connection/providers/xdsl.pm:516
-#: ../lib/network/connection/providers/xdsl.pm:528
-#: ../lib/network/connection/providers/xdsl.pm:539
-#: ../lib/network/connection/providers/xdsl.pm:551
-#: ../lib/network/connection/providers/xdsl.pm:563
-#: ../lib/network/connection/providers/xdsl.pm:575
-#: ../lib/network/connection/providers/xdsl.pm:588
-#: ../lib/network/connection/providers/xdsl.pm:599
-#: ../lib/network/connection/providers/xdsl.pm:610
-#: ../lib/network/netconnect.pm:33
-#, c-format
-msgid "France"
-msgstr "Францыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:47
-#: ../lib/network/connection/providers/xdsl.pm:57
-#, c-format
-msgid "Algeria"
-msgstr "Альджыр"
-
-#: ../lib/network/connection/providers/xdsl.pm:67
-#: ../lib/network/connection/providers/xdsl.pm:77
-#, c-format
-msgid "Argentina"
-msgstr "Аргенціна"
-
-#: ../lib/network/connection/providers/xdsl.pm:87
-#: ../lib/network/connection/providers/xdsl.pm:96
-#: ../lib/network/connection/providers/xdsl.pm:105
-#, c-format
-msgid "Austria"
-msgstr "Аўстрыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:114
-#: ../lib/network/connection/providers/xdsl.pm:124
-#: ../lib/network/connection/providers/xdsl.pm:134
-#, c-format
-msgid "Australia"
-msgstr "Аўстралія"
-
-#: ../lib/network/connection/providers/xdsl.pm:144
-#: ../lib/network/connection/providers/xdsl.pm:153
-#: ../lib/network/connection/providers/xdsl.pm:164
-#: ../lib/network/connection/providers/xdsl.pm:173
-#: ../lib/network/connection/providers/xdsl.pm:182
-#: ../lib/network/netconnect.pm:36
-#, c-format
-msgid "Belgium"
-msgstr "Бельгія"
-
-#: ../lib/network/connection/providers/xdsl.pm:191
-#: ../lib/network/connection/providers/xdsl.pm:201
-#: ../lib/network/connection/providers/xdsl.pm:210
-#: ../lib/network/connection/providers/xdsl.pm:219
-#, c-format
-msgid "Brazil"
-msgstr "Бразылія"
-
-#: ../lib/network/connection/providers/xdsl.pm:228
-#: ../lib/network/connection/providers/xdsl.pm:237
-#, c-format
-msgid "Bulgaria"
-msgstr "Баўгарыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:246
-#: ../lib/network/connection/providers/xdsl.pm:255
-#: ../lib/network/connection/providers/xdsl.pm:264
-#: ../lib/network/connection/providers/xdsl.pm:273
-#: ../lib/network/connection/providers/xdsl.pm:282
-#: ../lib/network/connection/providers/xdsl.pm:291
-#: ../lib/network/connection/providers/xdsl.pm:300
-#: ../lib/network/connection/providers/xdsl.pm:309
-#: ../lib/network/connection/providers/xdsl.pm:318
-#: ../lib/network/connection/providers/xdsl.pm:327
-#: ../lib/network/connection/providers/xdsl.pm:336
-#: ../lib/network/connection/providers/xdsl.pm:345
-#: ../lib/network/connection/providers/xdsl.pm:354
-#: ../lib/network/connection/providers/xdsl.pm:363
-#: ../lib/network/connection/providers/xdsl.pm:372
-#: ../lib/network/connection/providers/xdsl.pm:381
-#: ../lib/network/connection/providers/xdsl.pm:390
-#: ../lib/network/connection/providers/xdsl.pm:399
-#: ../lib/network/connection/providers/xdsl.pm:408
-#: ../lib/network/connection/providers/xdsl.pm:417
-#, c-format
-msgid "China"
-msgstr "Кітай"
-
-#: ../lib/network/connection/providers/xdsl.pm:426
-#: ../lib/network/connection/providers/xdsl.pm:436
-#, c-format
-msgid "Czech Republic"
-msgstr "Чэская Рэспубліка"
-
-#: ../lib/network/connection/providers/xdsl.pm:446
-#: ../lib/network/connection/providers/xdsl.pm:455
-#: ../lib/network/connection/providers/xdsl.pm:464
-#, c-format
-msgid "Denmark"
-msgstr "Данія"
-
-#: ../lib/network/connection/providers/xdsl.pm:473
-#, c-format
-msgid "Egypt"
-msgstr "Эгіпэт"
-
-#: ../lib/network/connection/providers/xdsl.pm:483
-#, c-format
-msgid "Finland"
-msgstr "Фінляндыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:621
-#: ../lib/network/connection/providers/xdsl.pm:630
-#: ../lib/network/connection/providers/xdsl.pm:640
-#, c-format
-msgid "Germany"
-msgstr "Нямецкі"
-
-#: ../lib/network/connection/providers/xdsl.pm:650
-#, c-format
-msgid "Greece"
-msgstr "Грэцыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:659
-#, c-format
-msgid "Hungary"
-msgstr "Вугоршчына"
-
-#: ../lib/network/connection/providers/xdsl.pm:668
-#, c-format
-msgid "Ireland"
-msgstr "Ірляндыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:677
-#, c-format
-msgid "Israel"
-msgstr "Габрэйшчына"
-
-#: ../lib/network/connection/providers/xdsl.pm:687
-#, c-format
-msgid "India"
-msgstr "Індыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:696
-#: ../lib/network/connection/providers/xdsl.pm:705
-#, c-format
-msgid "Iceland"
-msgstr "Ісьляндыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:714
-#: ../lib/network/connection/providers/xdsl.pm:725
-#: ../lib/network/connection/providers/xdsl.pm:735
-#: ../lib/network/connection/providers/xdsl.pm:746
-#: ../lib/network/netconnect.pm:35
-#, c-format
-msgid "Italy"
-msgstr "Італія"
-
-#: ../lib/network/connection/providers/xdsl.pm:758
-#, c-format
-msgid "Sri Lanka"
-msgstr "Шры Ланка"
-
-#: ../lib/network/connection/providers/xdsl.pm:770
-#, c-format
-msgid "Lithuania"
-msgstr "Жамойція"
-
-#: ../lib/network/connection/providers/xdsl.pm:779
-#: ../lib/network/connection/providers/xdsl.pm:789
-#, c-format
-msgid "Mauritius"
-msgstr "Марыціўс"
-
-#: ../lib/network/connection/providers/xdsl.pm:800
-#, c-format
-msgid "Morocco"
-msgstr "Марока"
-
-#: ../lib/network/connection/providers/xdsl.pm:810
-#: ../lib/network/connection/providers/xdsl.pm:819
-#: ../lib/network/connection/providers/xdsl.pm:828
-#: ../lib/network/connection/providers/xdsl.pm:837
-#: ../lib/network/netconnect.pm:34
-#, c-format
-msgid "Netherlands"
-msgstr "Нідэрлянды"
-
-#: ../lib/network/connection/providers/xdsl.pm:846
-#: ../lib/network/connection/providers/xdsl.pm:852
-#: ../lib/network/connection/providers/xdsl.pm:858
-#: ../lib/network/connection/providers/xdsl.pm:864
-#: ../lib/network/connection/providers/xdsl.pm:870
-#: ../lib/network/connection/providers/xdsl.pm:876
-#: ../lib/network/connection/providers/xdsl.pm:882
-#, c-format
-msgid "Norway"
-msgstr "Нарвэгія"
-
-#: ../lib/network/connection/providers/xdsl.pm:890
-#, c-format
-msgid "Pakistan"
-msgstr "Пакістан"
-
-#: ../lib/network/connection/providers/xdsl.pm:901
-#: ../lib/network/connection/providers/xdsl.pm:911
-#, c-format
-msgid "Poland"
-msgstr "Польшча"
-
-#: ../lib/network/connection/providers/xdsl.pm:922
-#, c-format
-msgid "Portugal"
-msgstr "Партугалія"
-
-#: ../lib/network/connection/providers/xdsl.pm:931
-#, c-format
-msgid "Russia"
-msgstr "Расея"
-
-#: ../lib/network/connection/providers/xdsl.pm:942
-#, c-format
-msgid "Singapore"
-msgstr "Сынгапур"
-
-#: ../lib/network/connection/providers/xdsl.pm:951
-#, c-format
-msgid "Senegal"
-msgstr "Сенегал"
-
-#: ../lib/network/connection/providers/xdsl.pm:961
-#, c-format
-msgid "Slovenia"
-msgstr "Славенія"
-
-#: ../lib/network/connection/providers/xdsl.pm:972
-#: ../lib/network/connection/providers/xdsl.pm:984
-#: ../lib/network/connection/providers/xdsl.pm:996
-#: ../lib/network/connection/providers/xdsl.pm:1009
-#: ../lib/network/connection/providers/xdsl.pm:1019
-#: ../lib/network/connection/providers/xdsl.pm:1029
-#: ../lib/network/connection/providers/xdsl.pm:1040
-#: ../lib/network/connection/providers/xdsl.pm:1050
-#: ../lib/network/connection/providers/xdsl.pm:1060
-#: ../lib/network/connection/providers/xdsl.pm:1070
-#: ../lib/network/connection/providers/xdsl.pm:1080
-#: ../lib/network/connection/providers/xdsl.pm:1090
-#: ../lib/network/connection/providers/xdsl.pm:1101
-#: ../lib/network/connection/providers/xdsl.pm:1112
-#: ../lib/network/connection/providers/xdsl.pm:1124
-#: ../lib/network/connection/providers/xdsl.pm:1136
-#, c-format
-msgid "Spain"
-msgstr "Гішпанія"
-
-#: ../lib/network/connection/providers/xdsl.pm:1149
-#, c-format
-msgid "Sweden"
-msgstr "Швэцыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:1158
-#: ../lib/network/connection/providers/xdsl.pm:1167
-#: ../lib/network/connection/providers/xdsl.pm:1177
-#, c-format
-msgid "Switzerland"
-msgstr "Щвэйцарыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:1186
-#, c-format
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: ../lib/network/connection/providers/xdsl.pm:1196
-#, c-format
-msgid "Tunisia"
-msgstr "Тунісія"
-
-#: ../lib/network/connection/providers/xdsl.pm:1207
-#, c-format
-msgid "Turkey"
-msgstr "Турцыя"
-
-#: ../lib/network/connection/providers/xdsl.pm:1220
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Злучаныя Арабскія Эміраты"
-
-#: ../lib/network/connection/providers/xdsl.pm:1230
-#: ../lib/network/connection/providers/xdsl.pm:1240
-#: ../lib/network/netconnect.pm:38
-#, c-format
-msgid "United Kingdom"
-msgstr "Злучанае Каралеўства"
-
-#: ../lib/network/connection/wireless.pm:11
-#, c-format
-msgid "Wireless"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:21
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:38
-#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:39
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:40
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
+msgid "Get DNS servers from DHCP"
+msgstr "IP сэервера SMB"
-#: ../lib/network/connection/wireless.pm:181 ../lib/network/thirdparty.pm:174
+#: ../bin/drakconnect:383 ../lib/network/connection/ethernet.pm:145
#, c-format
-msgid "Firmware files are required for this device."
+msgid "Get YP servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:209
+#: ../bin/drakconnect:384 ../lib/network/connection/ethernet.pm:146
#, c-format
-msgid ""
-"Your wireless card is disabled, please enable the wireless switch (RF kill "
-"switch) first."
+msgid "Get NTPD servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:270
-#, fuzzy, c-format
-msgid "Wireless settings"
-msgstr "Канфігурацыя"
-
-#: ../lib/network/connection/wireless.pm:275 ../tools/drakconnect:406
-#: ../tools/drakroam:119
+#: ../bin/drakconnect:406 ../lib/network/connection/wireless.pm:312
+#: ../lib/network/drakroam.pm:282
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "Рэжым злучэння"
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:276
-#, fuzzy, c-format
-msgid "Managed"
-msgstr "Мэнэджэр файлаў"
-
-#: ../lib/network/connection/wireless.pm:276
-#, fuzzy, c-format
-msgid "Master"
-msgstr "Прайгравальнік дыскаў"
-
-#: ../lib/network/connection/wireless.pm:276
-#, fuzzy, c-format
-msgid "Repeater"
-msgstr "Цыклічна"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Secondary"
-msgstr "Падпарадкаваны"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Auto"
-msgstr "Аўтаматычна"
-
-#: ../lib/network/connection/wireless.pm:279 ../tools/drakconnect:407
+#: ../bin/drakconnect:407 ../lib/network/connection/wireless.pm:316
#, c-format
msgid "Network name (ESSID)"
msgstr ""
-#: ../lib/network/connection/wireless.pm:281
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:283 ../tools/drakconnect:421
-#, c-format
-msgid "Encryption key"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:285 ../tools/drakconnect:408
+#: ../bin/drakconnect:408 ../lib/network/connection/wireless.pm:322
#, fuzzy, c-format
msgid "Network ID"
msgstr "Сетка"
-#: ../lib/network/connection/wireless.pm:286 ../tools/drakconnect:409
+#: ../bin/drakconnect:409 ../lib/network/connection/wireless.pm:323
#, c-format
msgid "Operating frequency"
msgstr ""
-#: ../lib/network/connection/wireless.pm:287 ../tools/drakconnect:410
+#: ../bin/drakconnect:410 ../lib/network/connection/wireless.pm:324
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: ../lib/network/connection/wireless.pm:288 ../tools/drakconnect:411
+#: ../bin/drakconnect:411 ../lib/network/connection/wireless.pm:325
#, fuzzy, c-format
msgid "Bitrate (in b/s)"
msgstr "Бітрэйт: %d kb/s"
-#: ../lib/network/connection/wireless.pm:289 ../tools/drakconnect:422
+#: ../bin/drakconnect:421 ../lib/network/connection/wireless.pm:320
#, c-format
-msgid "RTS/CTS"
+msgid "Encryption key"
msgstr ""
-#: ../lib/network/connection/wireless.pm:290
+#: ../bin/drakconnect:422 ../lib/network/connection/wireless.pm:326
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
+msgid "RTS/CTS"
msgstr ""
-#: ../lib/network/connection/wireless.pm:297 ../tools/drakconnect:423
+#: ../bin/drakconnect:423 ../lib/network/connection/wireless.pm:334
#, fuzzy, c-format
msgid "Fragmentation"
msgstr "Аўтэнтыфікацыя"
-#: ../lib/network/connection/wireless.pm:298 ../tools/drakconnect:424
+#: ../bin/drakconnect:424 ../lib/network/connection/wireless.pm:335
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:299
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: ../lib/network/connection/wireless.pm:306 ../tools/drakconnect:425
+#: ../bin/drakconnect:425 ../lib/network/connection/wireless.pm:343
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:307
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:315 ../tools/drakconnect:426
+#: ../bin/drakconnect:426 ../lib/network/connection/wireless.pm:352
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:317
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:335
-#, c-format
-msgid "An encryption key is required."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:341
-#, 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 ""
-
-#: ../lib/network/connection/wireless.pm:347
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:359
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:460
-#, c-format
-msgid "Associated to wireless network \"%s\" on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:461
-#, c-format
-msgid "Lost association to wireless network on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:8
-#, fuzzy, c-format
-msgid "DSL"
-msgstr "SSL"
-
-#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:104
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:176
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:179
-#, fuzzy, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: ../lib/network/connection/xdsl.pm:180
-#, fuzzy, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Канфігурацыя"
-
-#: ../lib/network/connection/xdsl.pm:181
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:182
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:183
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:223
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:224
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:27
-#: ../lib/network/ndiswrapper.pm:42 ../lib/network/ndiswrapper.pm:86
-#: ../lib/network/ndiswrapper.pm:102 ../lib/network/netconnect.pm:131
-#: ../lib/network/netconnect.pm:179 ../lib/network/netconnect.pm:268
-#: ../lib/network/netconnect.pm:813 ../lib/network/thirdparty.pm:114
-#: ../lib/network/thirdparty.pm:131 ../lib/network/thirdparty.pm:214
-#: ../lib/network/thirdparty.pm:216 ../lib/network/thirdparty.pm:237
-#: ../tools/drakconnect:676 ../tools/drakconnect:680 ../tools/drakconnect:689
-#: ../tools/drakconnect:705 ../tools/drakgw:184 ../tools/drakhosts:100
-#: ../tools/drakhosts:245 ../tools/drakhosts:252 ../tools/drakhosts:259
-#: ../tools/drakinvictus:72 ../tools/draknetprofile:113 ../tools/draknfs:85
-#: ../tools/draknfs:106 ../tools/draknfs:273 ../tools/draknfs:400
-#: ../tools/draknfs:402 ../tools/draknfs:405 ../tools/draknfs:497
-#: ../tools/draknfs:504 ../tools/draknfs:567 ../tools/draknfs:574
-#: ../tools/draknfs:581 ../tools/drakroam:79 ../tools/drakroam:92
-#: ../tools/draksambashare:372 ../tools/draksambashare:379
-#: ../tools/draksambashare:382 ../tools/draksambashare:428
-#: ../tools/draksambashare:452 ../tools/draksambashare:518
-#: ../tools/draksambashare:533 ../tools/draksambashare:611
-#: ../tools/draksambashare:678 ../tools/draksambashare:778
-#: ../tools/draksambashare:785 ../tools/draksambashare:916
-#: ../tools/draksambashare:1109 ../tools/draksambashare:1118
-#: ../tools/draksambashare:1140 ../tools/draksambashare:1149
-#: ../tools/draksambashare:1168 ../tools/draksambashare:1177
-#: ../tools/draksambashare:1189
+#: ../bin/drakconnect:434
#, c-format
-msgid "Error"
-msgstr "Памылка"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/netconnect.pm:131 ../lib/network/thirdparty.pm:114
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Усталяванне пакету %s"
-
-#: ../lib/network/drakfirewall.pm:12
-#, fuzzy, c-format
-msgid "Web Server"
-msgstr "Сервак"
-
-#: ../lib/network/drakfirewall.pm:17
-#, fuzzy, c-format
-msgid "Domain Name Server"
-msgstr "Імя дамену"
-
-#: ../lib/network/drakfirewall.pm:22
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "X сэервер"
-
-#: ../lib/network/drakfirewall.pm:27
-#, fuzzy, c-format
-msgid "FTP server"
-msgstr "X сэервер"
-
-#: ../lib/network/drakfirewall.pm:32
-#, fuzzy, c-format
-msgid "Mail Server"
-msgstr "Сервак"
-
-#: ../lib/network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:42
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X сэервер"
-
-#: ../lib/network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:54
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "Аддалены сэервер CUPS"
-
-#: ../lib/network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
-#, fuzzy, c-format
-msgid "Firewall configuration"
-msgstr "Захаваць канфігурацыю меню"
-
-#: ../lib/network/drakfirewall.pm:166
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:172
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:189
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
-#, c-format
-msgid "Firewall"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:192
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:198
-#, 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.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:208
-#, c-format
-msgid "Everything (no firewall)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:210
-#, fuzzy, c-format
-msgid "Other ports"
-msgstr "Парты вываду:"
-
-#: ../lib/network/drakfirewall.pm:211
-#, c-format
-msgid "Log firewall messages in system logs"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:255 ../lib/network/drakfirewall.pm:258
-#: ../tools/drakids:40 ../tools/drakids:65 ../tools/drakids:181
-#: ../tools/drakids:190 ../tools/drakids:215 ../tools/drakids:224
-#: ../tools/drakids:234 ../tools/drakids:326 ../tools/net_applet:77
-#: ../tools/net_applet:238 ../tools/net_applet:514 ../tools/net_applet:541
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-
-#: ../lib/network/drakfirewall.pm:256
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activities should be watched."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:261
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:30
-#, fuzzy, c-format
-msgid "VPN configuration"
-msgstr "Канфігурацыя"
-
-#: ../lib/network/drakvpn.pm:34
-#, fuzzy, c-format
-msgid "Choose the VPN type"
-msgstr "Выбар новых памераў"
-
-#: ../lib/network/drakvpn.pm:49
-#, c-format
-msgid "Initializing tools and detecting devices for %s..."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:52
-#, fuzzy, c-format
-msgid "Unable to initialize %s connection type!"
-msgstr "Выбар тыпу злучэння прынтэру"
-
-#: ../lib/network/drakvpn.pm:60
-#, c-format
-msgid "Please select an existing VPN connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:64
-#, fuzzy, c-format
-msgid "Configure a new connection..."
-msgstr "Настройка сеткі"
-
-#: ../lib/network/drakvpn.pm:66
-#, fuzzy, c-format
-msgid "New name"
-msgstr "Уласнае імя"
-
-#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
-#: ../lib/network/ndiswrapper.pm:92 ../lib/network/netconnect.pm:471
-#: ../tools/drakconnect:978 ../tools/draknetprofile:129
-#: ../tools/draknetprofile:131 ../tools/drakproxy:36
-#, c-format
-msgid "Warning"
-msgstr "Увага!"
-
-#: ../lib/network/drakvpn.pm:70
-#, c-format
-msgid "You must select an existing connection or enter a new name."
+msgid "Start at boot"
msgstr ""
-#: ../lib/network/drakvpn.pm:81
+#: ../bin/drakconnect:440 ../lib/network/connection/ethernet.pm:220
#, fuzzy, c-format
-msgid "Please enter the required key(s)"
-msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
-
-#: ../lib/network/drakvpn.pm:86
-#, fuzzy, c-format
-msgid "Please enter the settings of your VPN connection"
-msgstr "Немагчыма адчыніць файл %s\n"
+msgid "Network Hotplugging"
+msgstr "Сетка"
-#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#: ../bin/drakconnect:446 ../lib/network/netconnect.pm:323
#, c-format
-msgid "Do you want to start the connection now?"
-msgstr ""
+msgid "Dialing mode"
+msgstr "Рэжым злучэння"
-#: ../lib/network/drakvpn.pm:100
+#: ../bin/drakconnect:451 ../bin/drakconnect:518
+#: ../lib/network/netconnect.pm:324
#, fuzzy, c-format
-msgid "Connection failed."
+msgid "Connection speed"
msgstr "Імя злучэння"
-#: ../lib/network/drakvpn.pm:108
-#, c-format
-msgid ""
-"The VPN connection is now configured.\n"
-"\n"
-"This VPN connection can be automatically started together with a network "
-"connection.\n"
-"It can be done by reconfiguring the network connection and selecting this "
-"VPN connection.\n"
-msgstr ""
-
-#: ../lib/network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Нічога"
-
-#: ../lib/network/ifw.pm:130
+#: ../bin/drakconnect:456 ../lib/network/netconnect.pm:325
#, fuzzy, c-format
-msgid "Service attack"
-msgstr "Кіраваньне сэрвісамі"
-
-#: ../lib/network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Паўтарыце пароль"
-
-#: ../lib/network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: ../lib/network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Гэтая падзея была зьменена."
-
-#: ../lib/network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Гэтая падзея была зьменена."
-
-#: ../lib/network/ifw.pm:146
-#, c-format
-msgid ""
-"The \"%s\" application is trying to make a service (%s) available to the "
-"network."
-msgstr ""
-
-#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
-#: ../lib/network/ifw.pm:150
-#, fuzzy, c-format
-msgid "port %d"
-msgstr "Цыклічна"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#, fuzzy, c-format
-msgid "Manual"
-msgstr "Студзень"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
-#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
-#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
-#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#: ../lib/network/netconnect.pm:638
-#, c-format
-msgid "Automatic"
-msgstr "Аўтаматычна"
-
-#: ../lib/network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:86
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:92
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:102
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
+msgid "Connection timeout (in sec)"
+msgstr "Настройка далучэння да Інтэрнэту"
-#: ../lib/network/ndiswrapper.pm:115
+#: ../bin/drakconnect:462 ../lib/network/connection.pm:165
#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "X сэервер"
+msgid "Metric"
+msgstr "абмежаванне"
-#: ../lib/network/ndiswrapper.pm:118
+#: ../bin/drakconnect:482 ../lib/network/connection/cable.pm:48
+#: ../lib/network/netconnect.pm:587
#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:118
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Усталяванне сістэмы"
+msgid "Authentication"
+msgstr "Аўтэнтыфікацыя"
-#: ../lib/network/ndiswrapper.pm:129
+#: ../bin/drakconnect:492 ../lib/network/connection/cable.pm:50
+#: ../lib/network/connection/ppp.pm:22 ../lib/network/netconnect.pm:326
+#: ../lib/network/vpn/openvpn.pm:393
#, c-format
-msgid "Select a device:"
-msgstr ""
+msgid "Account Login (user name)"
+msgstr "Імя для ўваходу (імя карыстальніку)"
-#: ../lib/network/netconnect.pm:37
+#: ../bin/drakconnect:493 ../lib/network/connection/cable.pm:52
+#: ../lib/network/connection/ppp.pm:23 ../lib/network/netconnect.pm:327
+#: ../lib/network/vpn/openvpn.pm:394
#, c-format
-msgid "United States"
-msgstr "Злучаныя Штаты"
+msgid "Account Password"
+msgstr "Пароль для ўваходу"
-#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
-#: ../lib/network/netconnect.pm:507
+#: ../bin/drakconnect:494 ../lib/network/netconnect.pm:320
#, c-format
-msgid "Manual choice"
-msgstr ""
+msgid "Provider phone number"
+msgstr "Нумар тэлефону правайдара"
-#: ../lib/network/netconnect.pm:60
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:10
+#: ../lib/network/netconnect.pm:75
#, c-format
-msgid "Internal ISDN card"
-msgstr "Унутраная ISDN карта"
+msgid "PAP"
+msgstr "PAP"
-#: ../lib/network/netconnect.pm:65
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:11
+#: ../lib/network/netconnect.pm:76
#, c-format
-msgid "Protocol for the rest of the world"
-msgstr ""
+msgid "Terminal-based"
+msgstr "на аснове тэрміналу"
-#: ../lib/network/netconnect.pm:67 ../tools/drakconnect:564
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:9
+#: ../lib/network/netconnect.pm:74
#, c-format
-msgid "European protocol (EDSS1)"
-msgstr ""
+msgid "Script-based"
+msgstr "на аснове скрыпту"
-#: ../lib/network/netconnect.pm:68 ../tools/drakconnect:565
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:12
+#: ../lib/network/netconnect.pm:77
#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:118 ../tools/drakconnect:61
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Канфігурацыя сеткі"
-
-#: ../lib/network/netconnect.pm:123
-#, fuzzy, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Выбар раздзелаў для фарматавання"
+msgid "CHAP"
+msgstr "CHAP"
-#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
-#: ../lib/network/netconnect.pm:788
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:13
+#: ../lib/network/netconnect.pm:78
#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Пазначце сеткавы інтэрфейс"
-
-#: ../lib/network/netconnect.pm:164
-#, c-format
-msgid "No device can be found for this connection type."
-msgstr ""
+msgid "PAP/CHAP"
+msgstr "CHAP"
-#: ../lib/network/netconnect.pm:173
+#: ../bin/drakconnect:516
#, fuzzy, c-format
-msgid "Hardware Configuration"
-msgstr "Канфігурацыя сеткі"
+msgid "Flow control"
+msgstr "Кантроль гуку"
-#: ../lib/network/netconnect.pm:177 ../tools/drakroam:90
+#: ../bin/drakconnect:517
#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Настройка IDE"
+msgid "Line termination"
+msgstr "Памеры і арыентацыя"
-#: ../lib/network/netconnect.pm:194
+#: ../bin/drakconnect:528
#, c-format
-msgid "Please select your provider:"
+msgid "Modem timeout"
msgstr ""
-#: ../lib/network/netconnect.pm:209 ../tools/drakroam:170
+#: ../bin/drakconnect:532
#, fuzzy, c-format
-msgid "Scanning for networks..."
-msgstr "Пачатковы сектар:"
-
-#: ../lib/network/netconnect.pm:212
-#, c-format
-msgid "Please select your network:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:241
-#, c-format
-msgid ""
-"Please select your connection protocol.\n"
-"If you do not know it, keep the preselected protocol."
-msgstr ""
+msgid "Use lock file"
+msgstr "Абярыце файл"
-#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#: ../bin/drakconnect:534
#, c-format
-msgid "Connection control"
+msgid "Wait for dialup tone before dialing"
msgstr ""
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Connection Configuration"
-msgstr "Настройка далучэння да Інтэрнэту"
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Калі ласка, запоўніце ці пазначце поле ніжэй"
-
-#: ../lib/network/netconnect.pm:318
-#, c-format
-msgid "Your personal phone number"
-msgstr "Ваш асабісты тэлефонны нумар"
-
-#: ../lib/network/netconnect.pm:319
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Імя правайдару, напрыклад правайдар.net"
-
-#: ../lib/network/netconnect.pm:320 ../tools/drakconnect:494
-#, c-format
-msgid "Provider phone number"
-msgstr "Нумар тэлефону правайдара"
-
-#: ../lib/network/netconnect.pm:321
+#: ../bin/drakconnect:537
#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "Опцыі прынтэру"
+msgid "Busy wait"
+msgstr "Калі ласка, пачакайце"
-#: ../lib/network/netconnect.pm:322
+#: ../bin/drakconnect:542
#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "Опцыі прынтэру"
+msgid "Modem sound"
+msgstr "Запісаць гукавы кліп"
-#: ../lib/network/netconnect.pm:323 ../tools/drakconnect:446
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
-msgid "Dialing mode"
-msgstr "Рэжым злучэння"
-
-#: ../lib/network/netconnect.pm:324 ../tools/drakconnect:451
-#: ../tools/drakconnect:518
-#, fuzzy, c-format
-msgid "Connection speed"
-msgstr "Імя злучэння"
+msgid "Enable"
+msgstr "Уключыць"
-#: ../lib/network/netconnect.pm:325 ../tools/drakconnect:456
-#, fuzzy, c-format
-msgid "Connection timeout (in sec)"
-msgstr "Настройка далучэння да Інтэрнэту"
+#: ../bin/drakconnect:543 ../bin/drakgw:101
+#, c-format
+msgid "Disable"
+msgstr "Выключыць"
-#: ../lib/network/netconnect.pm:328 ../tools/drakconnect:555
+#: ../bin/drakconnect:555 ../lib/network/netconnect.pm:328
#, c-format
msgid "Card IRQ"
msgstr "IRQ карты"
-#: ../lib/network/netconnect.pm:329 ../tools/drakconnect:556
+#: ../bin/drakconnect:556 ../lib/network/netconnect.pm:329
#, c-format
msgid "Card mem (DMA)"
msgstr "Адрасы памяці карты (DMA)"
-#: ../lib/network/netconnect.pm:330 ../tools/drakconnect:557
+#: ../bin/drakconnect:557 ../lib/network/netconnect.pm:330
#, c-format
msgid "Card IO"
msgstr "IO карты"
-#: ../lib/network/netconnect.pm:331 ../tools/drakconnect:558
+#: ../bin/drakconnect:558 ../lib/network/netconnect.pm:331
#, c-format
msgid "Card IO_0"
msgstr "IO_0 карты"
-#: ../lib/network/netconnect.pm:332
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 карты"
-
-#: ../lib/network/netconnect.pm:350 ../lib/network/netconnect.pm:385
-#: ../tools/drakconnect:719 ../tools/drakgw:123
-#, fuzzy, c-format
-msgid "Net Device"
-msgstr "Прылада"
-
-#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
-#, fuzzy, c-format
-msgid "External ISDN modem"
-msgstr "Унутраная ISDN карта"
-
-#: ../lib/network/netconnect.pm:384
-#, fuzzy, c-format
-msgid "Select a device!"
-msgstr "Абярыце файл"
-
-#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
-#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Настройка ISDN"
-
-#: ../lib/network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Які тып карты вы маеце?"
-
-#: ../lib/network/netconnect.pm:404
-#, 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 карту, велічыні на наступным экране павінны быць "
-"сапраўднымі.\n"
-"\n"
-"Калі вы маеце PCMCIA карту, вы павінны ведаць irq і io вашай карты.\n"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Працягнуць"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Адмяніць"
-
-#: ../lib/network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:434 ../tools/drakconnect:113
-#, c-format
-msgid "Driver"
-msgstr "Драйвэр"
-
-#: ../lib/network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Які пратакол вы жадаеце выкарыстоўваць?"
-
-#: ../lib/network/netconnect.pm:448 ../tools/drakconnect:113
-#: ../tools/drakconnect:305 ../tools/drakconnect:563 ../tools/drakids:252
-#: ../tools/drakvpn-old:839
-#, c-format
-msgid "Protocol"
-msgstr "Пратакол"
-
-#: ../lib/network/netconnect.pm:460
+#: ../bin/drakconnect:564 ../lib/network/netconnect.pm:67
#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Абярыце вашага правайдара.\n"
-"калі яго няма ў гэтым спісе, абярыце тып ‟Іншы”"
-
-#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
-#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Прынтэр"
-
-#: ../lib/network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "Пазначце карыстальнікаў каб аб'яднаць у гэтыю групу"
-
-#: ../lib/network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr "Мадэм"
-
-#: ../lib/network/netconnect.pm:527
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Да якога паслядоўнага порту далучаны мадэм?"
-
-#: ../lib/network/netconnect.pm:556
-#, c-format
-msgid "Select your provider:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:580
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "Дазволіць тэрмін дзеяньня запісу"
-
-#: ../lib/network/netconnect.pm:583
-#, c-format
-msgid "Connection name"
-msgstr "Імя злучэння"
-
-#: ../lib/network/netconnect.pm:584
-#, c-format
-msgid "Phone number"
-msgstr "Нумар тэлефону"
-
-#: ../lib/network/netconnect.pm:585
-#, c-format
-msgid "Login ID"
-msgstr "Імя (login ID)"
-
-#: ../lib/network/netconnect.pm:586 ../lib/network/vpn/vpnc.pm:56
-#: ../tools/drakinvictus:110
-#, c-format
-msgid "Password"
-msgstr "Пароль"
-
-#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
-#, fuzzy, c-format
-msgid "Dialup: IP parameters"
-msgstr "Настроіць проксі сэрвэры"
-
-#: ../lib/network/netconnect.pm:603
-#, fuzzy, c-format
-msgid "IP parameters"
-msgstr "Інтэрнэт"
-
-#: ../lib/network/netconnect.pm:605
-#, fuzzy, c-format
-msgid "Subnet mask"
-msgstr "Маска сеткі"
-
-#: ../lib/network/netconnect.pm:617
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:620
-#, c-format
-msgid "DNS"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:621
-#, c-format
-msgid "Domain name"
-msgstr "Імя дамену"
-
-#: ../lib/network/netconnect.pm:622 ../tools/drakconnect:996
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:623 ../tools/drakconnect:997
-#, fuzzy, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Канфігурацыя сістэмных сэрвісаў"
-
-#: ../lib/network/netconnect.pm:624
-#, c-format
-msgid "Set hostname from IP"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:637
-#, fuzzy, c-format
-msgid "Gateway IP address"
-msgstr "IP адрас"
-
-#: ../lib/network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Аўтаматычны"
-
-#: ../lib/network/netconnect.pm:672
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:674
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:683
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-
-#: ../lib/network/netconnect.pm:696
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ці жадаеце зараз паспрабаваць далучыцца да Інтэрнэту?"
-
-#: ../lib/network/netconnect.pm:704 ../tools/drakconnect:1027
-#, c-format
-msgid "Testing your connection..."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:723
-#, fuzzy, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Далучэнне да Інтэрнэту"
-
-#: ../lib/network/netconnect.pm:724
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:725
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:740
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:743
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:744
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:756
-#, c-format
-msgid "Sagem USB modem"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
-#, fuzzy, c-format
-msgid "Bewan modem"
-msgstr "Рэжым злучэння"
-
-#: ../lib/network/netconnect.pm:759
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:760
-#, fuzzy, c-format
-msgid "LAN connection"
-msgstr "Дзеяньні"
-
-#: ../lib/network/netconnect.pm:761 ../tools/drakroam:29
-#, fuzzy, c-format
-msgid "Wireless connection"
-msgstr "Канфігурацыя"
-
-#: ../lib/network/netconnect.pm:762
-#, fuzzy, c-format
-msgid "ADSL connection"
-msgstr "Дзеяньні"
-
-#: ../lib/network/netconnect.pm:763
-#, fuzzy, c-format
-msgid "Cable connection"
-msgstr "Размеркаванне"
-
-#: ../lib/network/netconnect.pm:764
-#, fuzzy, c-format
-msgid "ISDN connection"
-msgstr "Дзеяньні"
-
-#: ../lib/network/netconnect.pm:765
-#, fuzzy, c-format
-msgid "Modem connection"
-msgstr "Размеркаванне"
-
-#: ../lib/network/netconnect.pm:766
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:768
-#, c-format
-msgid "(detected on port %s)"
-msgstr ""
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected %s)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:771
-#, c-format
-msgid "Network Configuration"
-msgstr "Канфігурацыя сеткі"
-
-#: ../lib/network/netconnect.pm:772
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:773
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:777
-#, fuzzy, c-format
-msgid "Zeroconf Host name"
-msgstr "Імя машыны"
-
-#: ../lib/network/netconnect.pm:778
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:779
-#, 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 ""
-
-#: ../lib/network/netconnect.pm:782
-#, fuzzy, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?"
-
-#: ../lib/network/netconnect.pm:783
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:784
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:785
-#, fuzzy, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Якую канфігурацыю Xorg вы жадаеце атрымаць?"
-
-#: ../lib/network/netconnect.pm:786
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:787
-#, fuzzy, c-format
-msgid "Internet connection"
-msgstr "Сумеснае Інтэрнэт-злучэнне"
-
-#: ../lib/network/netconnect.pm:789
-#, fuzzy, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Настрйка драйверу Solaris"
-
-#: ../lib/network/netconnect.pm:790
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:791
-#, 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 ""
-"Увядзіце імя сваёй машыны (host).\n"
-"Імя вашай машыны павінна быць зададзена поўнасцю,\n"
-"напрыклад ‟mybox.mylab.myco.com”.\n"
-"Вы можаце таксама ўвесці IP адрас шлюзу, калі ён у вас ёсць."
-
-#: ../lib/network/netconnect.pm:796
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:797
-#, fuzzy, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: ../lib/network/netconnect.pm:798 ../tools/drakconnect:689
-#, fuzzy, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-
-#: ../lib/network/netconnect.pm:799
-#, c-format
-msgid "Gateway device"
-msgstr "Прылада-шлюз"
-
-#: ../lib/network/netconnect.pm:813
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/network.pm:429
-#, c-format
-msgid "Proxies configuration"
-msgstr "Настройка proxy кэшуючых сэервераў"
-
-#: ../lib/network/network.pm:430
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: ../lib/network/network.pm:431
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../lib/network/network.pm:432
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: ../lib/network/network.pm:433
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: ../lib/network/network.pm:434
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../lib/network/network.pm:435
-#, fuzzy, c-format
-msgid "No proxy for (comma separated list):"
-msgstr "Фарматаванне раздзелаў"
-
-#: ../lib/network/network.pm:440
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy павінен быць http://..."
-
-#: ../lib/network/network.pm:441
-#, fuzzy, c-format
-msgid "Proxy should be http://... or https://..."
-msgstr "Proxy павінен быць http://..."
-
-#: ../lib/network/network.pm:442
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:61
-#, c-format
-msgid ""
-"Please select the interfaces that will be protected by the firewall.\n"
-"\n"
-"All interfaces directly connected to Internet should be selected,\n"
-"while interfaces connected to a local network may be unselected.\n"
-"\n"
-"Which interfaces should be protected?\n"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:136
-#, c-format
-msgid "Keep custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:137
-#, c-format
-msgid "Drop custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:142
-#, c-format
-msgid ""
-"Your firewall configuration has been manually edited and contains\n"
-"rules that may conflict with the configuration that has just been set up.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:134
-#, c-format
-msgid "Some components (%s) are required but aren't available for %s hardware."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:135
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:137
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:138
-#, c-format
-msgid "The following component is missing: %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:140
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:177 ../lib/network/thirdparty.pm:182
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Захаванне на дыскету"
-
-#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:185
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Вылічэнне межаў файлавай сістэмы Windows"
-
-#: ../lib/network/thirdparty.pm:179
-#, c-format
-msgid "Select file"
-msgstr "Абярыце файл"
-
-#: ../lib/network/thirdparty.pm:190
-#, c-format
-msgid "Please select the firmware file (for example: %s)"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:214
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
-
-#: ../lib/network/thirdparty.pm:216
-#, c-format
-msgid "No Windows system has been detected!"
+msgid "European protocol (EDSS1)"
msgstr ""
-#: ../lib/network/thirdparty.pm:226
-#, fuzzy, c-format
-msgid "Insert floppy"
-msgstr "Усталёўка"
-
-#: ../lib/network/thirdparty.pm:227
+#: ../bin/drakconnect:565 ../lib/network/netconnect.pm:68
#, c-format
msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid "Next"
-msgstr "Далей"
-
-#: ../lib/network/thirdparty.pm:237
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-
-#: ../lib/network/thirdparty.pm:319
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:330
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Канфігурацыя сыстэмы друку (прынтэры, заданьні, клясы, ...)"
-
-#: ../lib/network/vpn/openvpn.pm:107
-#, c-format
-msgid "X509 Public Key Infrastructure"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:108
-#, c-format
-msgid "Static Key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:115
-#, c-format
-msgid "Type"
-msgstr "Тып"
-
-#. -PO: please don't translate the CA acronym
-#: ../lib/network/vpn/openvpn.pm:142
-#, c-format
-msgid "Certificate Authority (CA)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:148
-#, c-format
-msgid "Certificate"
-msgstr "Сэртыфікат"
-
-#: ../lib/network/vpn/openvpn.pm:154
-#, c-format
-msgid "Key"
-msgstr "Клявіша"
-
-#: ../lib/network/vpn/openvpn.pm:160
-#, fuzzy, c-format
-msgid "TLS control channel key"
-msgstr "Кантролер гучнасьці"
-
-#: ../lib/network/vpn/openvpn.pm:167
-#, c-format
-msgid "Key direction"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:175
-#, c-format
-msgid "Authenticate using username and password"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:181
-#, c-format
-msgid "Check server certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:187
-#, c-format
-msgid "Cipher algorithm"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:191
-#, c-format
-msgid "Default"
-msgstr "Па дамаўленню"
-
-#: ../lib/network/vpn/openvpn.pm:195
-#, c-format
-msgid "Size of cipher key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:206
-#, fuzzy, c-format
-msgid "Get from server"
-msgstr "X сэервер"
-
-#: ../lib/network/vpn/openvpn.pm:216
-#, fuzzy, c-format
-msgid "Gateway port"
-msgstr "Шлюз"
-
-#: ../lib/network/vpn/openvpn.pm:227 ../tools/drakgw:176
-#, fuzzy, c-format
-msgid "Local IP address"
-msgstr "IP адрас"
-
-#: ../lib/network/vpn/openvpn.pm:232
-#, fuzzy, c-format
-msgid "Remote IP address"
-msgstr "IP адрас"
-
-#: ../lib/network/vpn/openvpn.pm:237
-#, fuzzy, c-format
-msgid "Use TCP protocol"
-msgstr "Пратакол"
-
-#: ../lib/network/vpn/openvpn.pm:243
-#, c-format
-msgid "Virtual network device type"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:250
-#, c-format
-msgid "Virtual network device number (optional)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:365
-#, c-format
-msgid "Starting connection.."
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:380
-#, c-format
-msgid "Please insert your token"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:9
-#, c-format
-msgid "Cisco VPN Concentrator"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:43
-#, fuzzy, c-format
-msgid "Group name"
-msgstr "ID групы"
-
-#: ../lib/network/vpn/vpnc.pm:47
-#, c-format
-msgid "Group secret"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:52
-#, c-format
-msgid "Username"
-msgstr "Карыстальнік"
-
-#: ../lib/network/vpn/vpnc.pm:61
-#, c-format
-msgid "Use Cisco-UDP encapsulation"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:67
-#, c-format
-msgid "Use specific UDP port"
-msgstr ""
-
-#: ../tools/drakconnect:81
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Канфігурацыя сеткі"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Gateway:"
-msgstr "Шлюз:"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Interface:"
-msgstr "Інтэрфэйс:"
-
-#: ../tools/drakconnect:97 ../tools/net_monitor:119
-#, c-format
-msgid "Wait please"
-msgstr ""
-
-#: ../tools/drakconnect:113 ../tools/drakinvictus:105
-#, c-format
-msgid "Interface"
-msgstr "Інтэрфэйс"
-
-#: ../tools/drakconnect:113
-#, c-format
-msgid "State"
-msgstr "Стан"
-
-#: ../tools/drakconnect:130
-#, c-format
-msgid "Hostname: "
-msgstr "Імя машыны: "
-
-#: ../tools/drakconnect:132
-#, fuzzy, c-format
-msgid "Configure hostname..."
-msgstr "Настройка IDE"
-
-#: ../tools/drakconnect:146 ../tools/drakconnect:850
-#, fuzzy, c-format
-msgid "LAN configuration"
-msgstr "Настройка ISDN"
-
-#: ../tools/drakconnect:151
-#, fuzzy, c-format
-msgid "Configure Local Area Network..."
-msgstr "Настройка сеткі"
-
-#: ../tools/drakconnect:157 ../tools/drakconnect:240 ../tools/draknfs:181
-#, c-format
-msgid "Help"
-msgstr "Дапамога"
-
-#: ../tools/drakconnect:159 ../tools/drakconnect:241 ../tools/drakconnect:245
-#: ../tools/drakinvictus:140
-#, c-format
-msgid "Apply"
-msgstr "Применить"
-
-#: ../tools/drakconnect:161 ../tools/drakconnect:942 ../tools/drakconnect:1033
-#: ../tools/draknetprofile:106 ../tools/net_monitor:341
-#, c-format
-msgid "Cancel"
-msgstr "Адмена"
-
-#: ../tools/drakconnect:162 ../tools/drakconnect:857 ../tools/drakconnect:944
-#: ../tools/drakconnect:1034 ../tools/draknetprofile:108
-#: ../tools/net_monitor:342
-#, c-format
-msgid "Ok"
-msgstr "Ок"
-
-#: ../tools/drakconnect:164 ../tools/drakconnect:636 ../tools/drakgw:359
-#: ../tools/drakroam:251 ../tools/drakroam:289 ../tools/draksambashare:208
-#, c-format
-msgid "Please wait"
-msgstr "Калі ласка, пачакайце"
-
-#: ../tools/drakconnect:166 ../tools/drakconnect:638
-#, fuzzy, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Праверка параметраў настройкі"
-
-#: ../tools/drakconnect:192
-#, c-format
-msgid "Manage connections"
-msgstr ""
-
-#: ../tools/drakconnect:219 ../tools/drakroam:302
-#, c-format
-msgid "Device: "
-msgstr "Прылада:"
-
-#: ../tools/drakconnect:302
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "Канфігурацыя"
-
-#: ../tools/drakconnect:337
-#, fuzzy, c-format
-msgid "DNS servers"
-msgstr "CDDB сервакі"
-
-#: ../tools/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "NIS Domain"
-
-#: ../tools/drakconnect:351 ../tools/drakvpn-old:837
-#, c-format
-msgid "none"
-msgstr "няма"
-
-#: ../tools/drakconnect:351
-#, fuzzy, c-format
-msgid "static"
-msgstr "Антарктыка"
-
-#: ../tools/drakconnect:351
-#, c-format
-msgid "DHCP"
-msgstr ""
-
-#: ../tools/drakconnect:434
-#, c-format
-msgid "Start at boot"
-msgstr ""
-
-#: ../tools/drakconnect:516
-#, fuzzy, c-format
-msgid "Flow control"
-msgstr "Кантроль гуку"
-
-#: ../tools/drakconnect:517
-#, fuzzy, c-format
-msgid "Line termination"
-msgstr "Памеры і арыентацыя"
-
-#: ../tools/drakconnect:528
-#, c-format
-msgid "Modem timeout"
-msgstr ""
-
-#: ../tools/drakconnect:532
-#, fuzzy, c-format
-msgid "Use lock file"
-msgstr "Абярыце файл"
-
-#: ../tools/drakconnect:534
-#, c-format
-msgid "Wait for dialup tone before dialing"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-#: ../tools/drakconnect:537
-#, fuzzy, c-format
-msgid "Busy wait"
-msgstr "Калі ласка, пачакайце"
-
-#: ../tools/drakconnect:542
-#, fuzzy, c-format
-msgid "Modem sound"
-msgstr "Запісаць гукавы кліп"
-
-#: ../tools/drakconnect:543 ../tools/drakgw:101
-#, c-format
-msgid "Enable"
-msgstr "Уключыць"
-
-#: ../tools/drakconnect:543 ../tools/drakgw:101
-#, c-format
-msgid "Disable"
-msgstr "Выключыць"
-
-#: ../tools/drakconnect:592
+#: ../bin/drakconnect:592
#, fuzzy, c-format
msgid "Vendor"
msgstr "Рэдактары"
-#: ../tools/drakconnect:593
+#: ../bin/drakconnect:593
#, c-format
msgid "Description"
msgstr "Апісанне"
-#: ../tools/drakconnect:594
+#: ../bin/drakconnect:594
#, c-format
msgid "Media class"
msgstr ""
-#: ../tools/drakconnect:595
+#: ../bin/drakconnect:595
#, fuzzy, c-format
msgid "Module name"
msgstr "Назва файла"
-#: ../tools/drakconnect:596
+#: ../bin/drakconnect:596
#, fuzzy, c-format
msgid "Mac Address"
msgstr "Адрасная кніга"
-#: ../tools/drakconnect:597
+#: ../bin/drakconnect:597
#, c-format
msgid "Bus"
msgstr "Прац."
-#: ../tools/drakconnect:598
+#: ../bin/drakconnect:598
#, c-format
msgid "Location on the bus"
msgstr ""
-#: ../tools/drakconnect:685 ../tools/drakconnect:766 ../tools/drakconnect:952
+#: ../bin/drakconnect:676 ../bin/drakconnect:680 ../bin/drakconnect:689
+#: ../bin/drakconnect:705 ../bin/drakgw:184 ../bin/drakhosts:100
+#: ../bin/drakhosts:245 ../bin/drakhosts:252 ../bin/drakhosts:259
+#: ../bin/drakinvictus:72 ../bin/draknetprofile:113 ../bin/draknfs:85
+#: ../bin/draknfs:106 ../bin/draknfs:276 ../bin/draknfs:409 ../bin/draknfs:411
+#: ../bin/draknfs:414 ../bin/draknfs:506 ../bin/draknfs:513 ../bin/draknfs:576
+#: ../bin/draknfs:583 ../bin/draknfs:590 ../bin/draksambashare:373
+#: ../bin/draksambashare:380 ../bin/draksambashare:383
+#: ../bin/draksambashare:429 ../bin/draksambashare:453
+#: ../bin/draksambashare:519 ../bin/draksambashare:534
+#: ../bin/draksambashare:612 ../bin/draksambashare:679
+#: ../bin/draksambashare:779 ../bin/draksambashare:786
+#: ../bin/draksambashare:917 ../bin/draksambashare:1110
+#: ../bin/draksambashare:1119 ../bin/draksambashare:1141
+#: ../bin/draksambashare:1150 ../bin/draksambashare:1169
+#: ../bin/draksambashare:1178 ../bin/draksambashare:1190
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakroam.pm:56 ../lib/network/drakroam.pm:69
+#: ../lib/network/drakvpn.pm:45 ../lib/network/drakvpn.pm:52
+#: ../lib/network/ndiswrapper.pm:27 ../lib/network/ndiswrapper.pm:42
+#: ../lib/network/ndiswrapper.pm:86 ../lib/network/ndiswrapper.pm:102
+#: ../lib/network/netconnect.pm:131 ../lib/network/netconnect.pm:179
+#: ../lib/network/netconnect.pm:268 ../lib/network/netconnect.pm:813
+#: ../lib/network/thirdparty.pm:115 ../lib/network/thirdparty.pm:132
+#: ../lib/network/thirdparty.pm:215 ../lib/network/thirdparty.pm:217
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Error"
+msgstr "Памылка"
+
+#: ../bin/drakconnect:676 ../lib/network/connection/ethernet.pm:160
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
+
+#: ../bin/drakconnect:680 ../lib/network/connection/ethernet.pm:165
+#, fuzzy, c-format
+msgid "Netmask should be in format 255.255.224.0"
+msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
+
+#: ../bin/drakconnect:685 ../bin/drakconnect:767 ../bin/drakconnect:953
#, c-format
msgid "No IP"
msgstr ""
-#: ../tools/drakconnect:686 ../tools/drakconnect:767
+#: ../bin/drakconnect:686 ../bin/drakconnect:768
#, c-format
msgid "No Mask"
msgstr ""
-#: ../tools/drakconnect:705 ../tools/drakgw:307
+#: ../bin/drakconnect:689 ../lib/network/netconnect.pm:798
+#, fuzzy, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
+
+#: ../bin/drakconnect:705 ../bin/drakgw:307
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
@@ -2570,17 +535,23 @@ msgstr ""
"Ні водны ethernet сеткавы адаптар у вашай сістэме не вызначаны. Калі ласка, "
"скарыстайце канфігурацыйны інструмэнт."
-#: ../tools/drakconnect:714
+#: ../bin/drakconnect:714
#, fuzzy, c-format
msgid "Remove a network interface"
msgstr "Пазначце сеткавы інтэрфейс"
-#: ../tools/drakconnect:718
+#: ../bin/drakconnect:718
#, fuzzy, c-format
msgid "Select the network interface to remove:"
msgstr "Пазначце сеткавы інтэрфейс"
-#: ../tools/drakconnect:750
+#: ../bin/drakconnect:719 ../bin/drakgw:123 ../lib/network/netconnect.pm:350
+#: ../lib/network/netconnect.pm:385
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Прылада"
+
+#: ../bin/drakconnect:751
#, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
@@ -2588,92 +559,100 @@ msgid ""
"%s"
msgstr ""
-#: ../tools/drakconnect:751
+#: ../bin/drakconnect:752
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr ""
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, fuzzy, c-format
msgid "up"
msgstr "Скокнуць"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "down"
msgstr ""
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Connected"
msgstr "Далучаны"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Not connected"
msgstr "Адлучаны"
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Disconnect..."
msgstr ""
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, fuzzy, c-format
msgid "Connect..."
msgstr "Настройка IDE"
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Deactivate now"
msgstr ""
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Activate now"
msgstr ""
-#: ../tools/drakconnect:854
+#: ../bin/drakconnect:855
#, c-format
msgid ""
"You do not have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../tools/drakconnect:868
+#: ../bin/drakconnect:869
#, fuzzy, c-format
msgid "LAN Configuration"
msgstr "Канфігурацыя"
-#: ../tools/drakconnect:880
+#: ../bin/drakconnect:881
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../tools/drakconnect:889
+#: ../bin/drakconnect:890
#, fuzzy, c-format
msgid "Boot Protocol"
msgstr "Пратакол"
-#: ../tools/drakconnect:890
+#: ../bin/drakconnect:891
#, c-format
msgid "Started on boot"
msgstr ""
-#: ../tools/drakconnect:926
+#: ../bin/drakconnect:927
#, c-format
msgid ""
"This interface has not been configured yet.\n"
"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
msgstr ""
-#: ../tools/drakconnect:974
+#: ../bin/drakconnect:975
#, fuzzy, c-format
msgid "Internet connection configuration"
msgstr "Настройка далучэння да Інтэрнэту"
-#: ../tools/drakconnect:980 ../tools/net_applet:68
+#: ../bin/drakconnect:979 ../bin/draknetprofile:129 ../bin/draknetprofile:131
+#: ../bin/drakproxy:36 ../lib/network/drakvpn.pm:70
+#: ../lib/network/drakvpn.pm:100 ../lib/network/ndiswrapper.pm:92
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid "Warning"
+msgstr "Увага!"
+
+#: ../bin/drakconnect:981 ../bin/net_applet:69
#, c-format
msgid ""
"You do not have any configured Internet connection.\n"
@@ -2681,52 +660,67 @@ msgid ""
msgstr ""
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: ../tools/drakconnect:981 ../tools/net_applet:69
+#: ../bin/drakconnect:982 ../bin/net_applet:70
#, fuzzy, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Пазначце сеткавы інтэрфейс"
-#: ../tools/drakconnect:995
+#: ../bin/drakconnect:996
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "Імя машыны"
-#: ../tools/drakconnect:998
+#: ../bin/drakconnect:997 ../lib/network/netconnect.pm:622
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr ""
+
+#: ../bin/drakconnect:998 ../lib/network/netconnect.pm:623
+#, fuzzy, c-format
+msgid "Second DNS Server (optional)"
+msgstr "Канфігурацыя сістэмных сэрвісаў"
+
+#: ../bin/drakconnect:999
#, c-format
msgid "Third DNS server (optional)"
msgstr ""
-#: ../tools/drakconnect:1020
+#: ../bin/drakconnect:1021
#, fuzzy, c-format
msgid "Internet Connection Configuration"
msgstr "Настройка далучэння да Інтэрнэту"
-#: ../tools/drakconnect:1021
+#: ../bin/drakconnect:1022
#, c-format
msgid "Internet access"
msgstr ""
-#: ../tools/drakconnect:1023 ../tools/net_monitor:98
+#: ../bin/drakconnect:1024 ../bin/net_monitor:98
#, fuzzy, c-format
msgid "Connection type: "
msgstr "Імя злучэння"
-#: ../tools/drakconnect:1026
+#: ../bin/drakconnect:1027
#, c-format
msgid "Status:"
msgstr "Стан:"
-#: ../tools/drakconnect:1031
+#: ../bin/drakconnect:1028 ../lib/network/netconnect.pm:704
+#, c-format
+msgid "Testing your connection..."
+msgstr ""
+
+#: ../bin/drakconnect:1032
#, c-format
msgid "Parameters"
msgstr "Парамэтры"
-#: ../tools/drakgw:71
+#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "Сумеснае Інтэрнэт-злучэнне"
-#: ../tools/drakgw:75
+#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -2740,7 +734,7 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../tools/drakgw:91
+#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
@@ -2749,7 +743,7 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakgw:95
+#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -2758,17 +752,17 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakgw:101
+#: ../bin/drakgw:101
#, fuzzy, c-format
msgid "Reconfigure"
msgstr "Настроіць панэль"
-#: ../tools/drakgw:122
+#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""
-#: ../tools/drakgw:141
+#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -2778,7 +772,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../tools/drakgw:152
+#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
@@ -2787,37 +781,42 @@ msgstr ""
"Калі ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
"вашай лакальнай сеткі."
-#: ../tools/drakgw:173
+#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "Прагляд лякальнай сеткі"
-#: ../tools/drakgw:178
+#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
+#, fuzzy, c-format
+msgid "Local IP address"
+msgstr "IP адрас"
+
+#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr ""
-#: ../tools/drakgw:184
+#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Патэнцыйны адрас ЛВС канфліктуе з бягучай канфігурацыяй %s!\n"
-#: ../tools/drakgw:200
+#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "Сістэмнае адміністраваньне"
-#: ../tools/drakgw:204
+#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""
-#: ../tools/drakgw:205
+#: ../bin/drakgw:205
#, fuzzy, c-format
msgid "The DNS Server IP"
msgstr "IP сэервера SMB"
-#: ../tools/drakgw:232
+#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
@@ -2826,77 +825,77 @@ msgid ""
"If you do not know the meaning of an option, simply leave it as it is."
msgstr ""
-#: ../tools/drakgw:239
+#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "Аўтаматычнае вызначэнне"
-#: ../tools/drakgw:240
+#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr ""
-#: ../tools/drakgw:241
+#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr ""
-#: ../tools/drakgw:242
+#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr ""
-#: ../tools/drakgw:243
+#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../tools/drakgw:266
+#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""
-#: ../tools/drakgw:270
+#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""
-#: ../tools/drakgw:271
+#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""
-#: ../tools/drakgw:272
+#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "Выкарыстаць выдалены хост"
-#: ../tools/drakgw:273
+#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "Якасьць"
-#: ../tools/drakgw:274
+#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "памер блоку"
-#: ../tools/drakgw:296
+#: ../bin/drakgw:296
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: ../tools/drakgw:313
+#: ../bin/drakgw:313
#, fuzzy, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "Сумеснае Інтэрнэт-злучэнне зараз магчыма"
-#: ../tools/drakgw:319
+#: ../bin/drakgw:319
#, fuzzy, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "Сумеснае Інтэрнэт-злучэнне зараз забаронена"
-#: ../tools/drakgw:325
+#: ../bin/drakgw:325
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -2905,17 +904,17 @@ msgid ""
" a Transparent Proxy Cache server (SQUID)."
msgstr ""
-#: ../tools/drakgw:359
+#: ../bin/drakgw:359
#, fuzzy, c-format
msgid "Disabling servers..."
msgstr "Вызначэнне прыладаў..."
-#: ../tools/drakgw:373
+#: ../bin/drakgw:373
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-#: ../tools/drakgw:374
+#: ../bin/drakgw:374
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
@@ -2924,460 +923,479 @@ msgstr ""
"Увага! Знойдзена існуючая сістэма сеткавай бяспекі (firewall). Вам магчыма "
"спатрэбіцца скарэктаваць яе пасля ўсталявання."
-#: ../tools/drakgw:379
+#: ../bin/drakgw:379
#, fuzzy, c-format
msgid "Configuring..."
msgstr "Настройка IDE"
-#: ../tools/drakgw:380
+#: ../bin/drakgw:380
#, c-format
msgid "Configuring firewall..."
msgstr ""
-#: ../tools/drakhosts:100
+#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""
-#: ../tools/drakhosts:110
+#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "Інфармацыя аб DMA"
-#: ../tools/drakhosts:111
+#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "Інфармацыя аб DMA"
-#: ../tools/drakhosts:112
+#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "Інфармацыя аб DMA"
-#: ../tools/drakhosts:116
+#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "IP адрас:"
-#: ../tools/drakhosts:117
+#: ../bin/drakhosts:117
#, c-format
msgid "Host name:"
msgstr "Назва вузла:"
-#: ../tools/drakhosts:118
+#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "Імя машыны"
-#: ../tools/drakhosts:122 ../tools/drakhosts:128 ../tools/draksambashare:209
-#: ../tools/draksambashare:230 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:209
+#: ../bin/draksambashare:230 ../bin/draksambashare:377
+#: ../bin/draksambashare:608 ../bin/draksambashare:775
#, c-format
msgid "Error!"
msgstr "Памылка!"
-#: ../tools/drakhosts:122
+#: ../bin/drakhosts:122
#, fuzzy, c-format
msgid "Please enter a valid IP address."
msgstr "IP адрас"
-#: ../tools/drakhosts:128
+#: ../bin/drakhosts:128
#, fuzzy, c-format
msgid "Same IP is already in %s file."
msgstr "%s ужо знойдзены "
-#: ../tools/drakhosts:196
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:202
+#, c-format
+msgid "Host name"
+msgstr "Імя машыны"
+
+#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "Імя машыны"
-#: ../tools/drakhosts:206 ../tools/drakhosts:236
+#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, c-format
msgid "Manage hosts definitions"
msgstr ""
-#: ../tools/drakhosts:222 ../tools/drakhosts:249
+#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""
-#: ../tools/drakhosts:241 ../tools/draknfs:563 ../tools/draksambashare:1102
-#: ../tools/draksambashare:1133 ../tools/draksambashare:1164
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakhosts:241 ../bin/draknfs:572 ../bin/draksambashare:1103
+#: ../bin/draksambashare:1134 ../bin/draksambashare:1165
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "Дадаць"
-#: ../tools/drakhosts:242
+#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "Прынтэр"
-#: ../tools/drakhosts:245
+#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""
-#: ../tools/drakhosts:248 ../tools/draknfs:570 ../tools/draksambashare:1059
-#: ../tools/draksambashare:1104 ../tools/draksambashare:1135
-#: ../tools/draksambashare:1172
+#: ../bin/drakhosts:248 ../bin/draknfs:579 ../bin/draksambashare:1060
+#: ../bin/draksambashare:1105 ../bin/draksambashare:1136
+#: ../bin/draksambashare:1173
#, c-format
msgid "Modify"
msgstr "Зьмяненьне"
-#: ../tools/drakhosts:252
+#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""
-#: ../tools/drakhosts:255 ../tools/drakids:87 ../tools/drakids:96
-#: ../tools/draknfs:577 ../tools/draksambashare:1060
-#: ../tools/draksambashare:1112 ../tools/draksambashare:1143
-#: ../tools/draksambashare:1180 ../tools/drakvpn-old:253
-#: ../tools/drakvpn-old:391
+#: ../bin/drakhosts:255 ../bin/drakids:87 ../bin/drakids:96 ../bin/draknfs:586
+#: ../bin/draksambashare:1061 ../bin/draksambashare:1113
+#: ../bin/draksambashare:1144 ../bin/draksambashare:1181
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "Выдаліць"
-#: ../tools/drakhosts:259
+#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""
-#: ../tools/drakhosts:262 ../tools/drakinvictus:141
-#: ../tools/draknetprofile:147 ../tools/drakroam:309 ../tools/net_applet:138
+#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:147
+#: ../bin/net_applet:139 ../lib/network/drakroam.pm:353
#, c-format
msgid "Quit"
msgstr "Выхад"
-#: ../tools/drakids:28
+#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "Дадаць карыстальніка"
-#: ../tools/drakids:65 ../tools/drakids:181 ../tools/drakids:190
-#: ../tools/drakids:215 ../tools/drakids:224 ../tools/drakids:234
-#: ../tools/drakids:326 ../tools/net_applet:238 ../tools/net_applet:514
+#: ../bin/drakids:40 ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190
+#: ../bin/drakids:215 ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:78 ../bin/net_applet:239 ../bin/net_applet:519
+#: ../bin/net_applet:546 ../lib/network/drakfirewall.pm:255
+#: ../lib/network/drakfirewall.pm:258
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
+
+#: ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190 ../bin/drakids:215
+#: ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:239 ../bin/net_applet:519
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "Немагчыма адчыніць файл %s\n"
-#: ../tools/drakids:74 ../tools/drakids:102
+#: ../bin/drakids:74 ../bin/drakids:102
#, c-format
msgid "Log"
msgstr "Рэгістрацыя"
-#: ../tools/drakids:78 ../tools/drakids:97 ../tools/net_applet:659
+#: ../bin/drakids:78 ../bin/drakids:97 ../bin/net_applet:663
#, fuzzy, c-format
msgid "Allow"
msgstr "Усё"
-#: ../tools/drakids:79 ../tools/drakids:88 ../tools/net_applet:660
+#: ../bin/drakids:79 ../bin/drakids:88 ../bin/net_applet:664
#, fuzzy, c-format
msgid "Block"
msgstr "Заблякавана"
-#: ../tools/drakids:80 ../tools/drakids:89 ../tools/drakids:98
-#: ../tools/drakids:109 ../tools/drakids:122 ../tools/drakids:130
-#: ../tools/draknfs:186 ../tools/net_monitor:120
+#: ../bin/drakids:80 ../bin/drakids:89 ../bin/drakids:98 ../bin/drakids:109
+#: ../bin/drakids:122 ../bin/drakids:130 ../bin/draknfs:188
+#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: ../tools/drakids:83
+#: ../bin/drakids:83
#, fuzzy, c-format
msgid "Allowed services"
msgstr "Дадаць карыстальніка"
-#: ../tools/drakids:92
+#: ../bin/drakids:92
#, fuzzy, c-format
msgid "Blocked services"
msgstr "Дрэнны файл рэзервовай копіі"
-#: ../tools/drakids:106
+#: ../bin/drakids:106
#, fuzzy, c-format
msgid "Clear logs"
msgstr "Ачысціць усё"
-#: ../tools/drakids:107 ../tools/drakids:112 ../tools/net_applet:602
+#: ../bin/drakids:107 ../bin/drakids:112 ../bin/net_applet:607
#, c-format
msgid "Blacklist"
msgstr ""
-#: ../tools/drakids:108 ../tools/drakids:125 ../tools/net_applet:607
+#: ../bin/drakids:108 ../bin/drakids:125 ../bin/net_applet:612
#, c-format
msgid "Whitelist"
msgstr ""
-#: ../tools/drakids:116
+#: ../bin/drakids:116
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "Выдаліць з LVM"
-#: ../tools/drakids:117
+#: ../bin/drakids:117
#, c-format
msgid "Move to whitelist"
msgstr ""
-#: ../tools/drakids:129
+#: ../bin/drakids:129
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "Выдаліць з LVM"
-#: ../tools/drakids:247
+#: ../bin/drakids:247
#, c-format
msgid "Date"
msgstr "Дата"
-#: ../tools/drakids:248
+#: ../bin/drakids:248
#, fuzzy, c-format
msgid "Attacker"
msgstr "Падрабязнасці"
-#: ../tools/drakids:249
+#: ../bin/drakids:249
#, fuzzy, c-format
msgid "Attack type"
msgstr "Тып: "
-#: ../tools/drakids:250 ../tools/drakids:283
+#: ../bin/drakids:250 ../bin/drakids:283
#, c-format
msgid "Service"
msgstr "Паслуга"
-#: ../tools/drakids:251
+#: ../bin/drakids:251
#, c-format
msgid "Network interface"
msgstr "Сеткавы інтэрфейс"
-#: ../tools/drakids:282
+#: ../bin/drakids:282
#, c-format
msgid "Application"
msgstr "Дастасаваньне"
-#: ../tools/drakids:284
+#: ../bin/drakids:284
#, c-format
msgid "Status"
msgstr "Статус"
-#: ../tools/drakids:286
+#: ../bin/drakids:286
#, fuzzy, c-format
msgid "Allowed"
msgstr "Усё"
-#: ../tools/drakids:287
+#: ../bin/drakids:287
#, c-format
msgid "Blocked"
msgstr "Заблякавана"
-#: ../tools/drakinvictus:36
+#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr ""
-#: ../tools/drakinvictus:53
+#: ../bin/drakinvictus:53
#, c-format
msgid "Start as master"
msgstr ""
-#: ../tools/drakinvictus:72
+#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "Настроіць паролі"
-#: ../tools/drakinvictus:100
+#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
-#: ../tools/drakinvictus:102
+#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "Адрасная кніга"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual shared address"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""
-#: ../tools/drakinvictus:114
+#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:586
+#: ../lib/network/vpn/vpnc.pm:56
+#, c-format
+msgid "Password"
+msgstr "Пароль"
+
+#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "Памеры экрану"
-#: ../tools/drakinvictus:116
+#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""
-#: ../tools/drakinvictus:123
+#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: ../tools/drakinvictus:132
+#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "Імя злучэння"
-#: ../tools/draknetprofile:36
+#: ../bin/draknetprofile:36
#, fuzzy, c-format
msgid "Network profiles"
msgstr "Сетка"
-#: ../tools/draknetprofile:67
+#: ../bin/draknetprofile:67
#, c-format
msgid "Profile"
msgstr "Профіль"
-#: ../tools/draknetprofile:99
+#: ../bin/draknetprofile:99
#, fuzzy, c-format
msgid "New profile..."
msgstr "Захаваць спіс"
-#: ../tools/draknetprofile:102
+#: ../bin/draknetprofile:102
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one):"
msgstr ""
-#: ../tools/draknetprofile:113
+#: ../bin/draknetprofile:113
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr ""
-#: ../tools/draknetprofile:129
+#: ../bin/draknetprofile:129
#, c-format
msgid "You can not delete the default profile"
msgstr ""
-#: ../tools/draknetprofile:131
+#: ../bin/draknetprofile:131
#, c-format
msgid "You can not delete the current profile"
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""
-#: ../tools/draknetprofile:144
+#: ../bin/draknetprofile:144
#, fuzzy, c-format
msgid "Activate"
msgstr "Стан"
-#: ../tools/draknetprofile:145
+#: ../bin/draknetprofile:145
#, c-format
msgid "Clone"
msgstr "Клянаваньне"
-#: ../tools/draknetprofile:146
+#: ../bin/draknetprofile:146
#, c-format
msgid "Delete"
msgstr "Знішчыць"
-#: ../tools/draknfs:41
+#: ../bin/draknfs:41
#, c-format
msgid "map root user as anonymous"
msgstr ""
-#: ../tools/draknfs:42
+#: ../bin/draknfs:42
#, c-format
msgid "map all users to anonymous user"
msgstr ""
-#: ../tools/draknfs:43
+#: ../bin/draknfs:43
#, c-format
msgid "No user UID mapping"
msgstr ""
-#: ../tools/draknfs:44
+#: ../bin/draknfs:44
#, c-format
msgid "allow real remote root access"
msgstr ""
-#: ../tools/draknfs:58 ../tools/draknfs:59 ../tools/draknfs:60
-#: ../tools/draksambashare:161 ../tools/draksambashare:162
-#: ../tools/draksambashare:163
+#: ../bin/draknfs:58 ../bin/draknfs:59 ../bin/draknfs:60
+#: ../bin/draksambashare:161 ../bin/draksambashare:162
+#: ../bin/draksambashare:163
#, c-format
msgid "/_File"
msgstr "/_Файл"
-#: ../tools/draknfs:59 ../tools/draksambashare:162
+#: ../bin/draknfs:59 ../bin/draksambashare:162
#, c-format
msgid "/_Write conf"
msgstr ""
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "/_Quit"
msgstr "/_Выйсьці"
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
-#: ../tools/draknfs:63 ../tools/draknfs:64 ../tools/draknfs:65
+#: ../bin/draknfs:63 ../bin/draknfs:64 ../bin/draknfs:65
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "NIS сэервер:"
-#: ../tools/draknfs:64 ../tools/draksambashare:166
+#: ../bin/draknfs:64 ../bin/draksambashare:166
#, c-format
msgid "/_Restart"
msgstr ""
-#: ../tools/draknfs:65 ../tools/draksambashare:167
+#: ../bin/draknfs:65 ../bin/draksambashare:167
#, c-format
msgid "/R_eload"
msgstr ""
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, fuzzy, c-format
msgid "NFS server"
msgstr "NIS сэервер:"
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""
-#: ../tools/draknfs:85
+#: ../bin/draknfs:85
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""
-#: ../tools/draknfs:101 ../tools/draksambashare:225
+#: ../bin/draknfs:101 ../bin/draksambashare:225
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "Накірунак"
-#: ../tools/draknfs:106 ../tools/draksambashare:230
+#: ../bin/draknfs:106 ../bin/draksambashare:230
#, c-format
msgid "Should be a directory."
msgstr ""
-#: ../tools/draknfs:137
+#: ../bin/draknfs:137
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
@@ -3404,7 +1422,7 @@ msgid ""
"result.\n"
msgstr ""
-#: ../tools/draknfs:152
+#: ../bin/draknfs:152
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
@@ -3430,27 +1448,32 @@ msgid ""
"the uid and gid of the anonymous account.\n"
msgstr ""
-#: ../tools/draknfs:168
+#: ../bin/draknfs:168
#, c-format
msgid "Synchronous access:"
msgstr ""
-#: ../tools/draknfs:169
+#: ../bin/draknfs:169
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "Сумеснае Інтэрнэт-злучэнне"
-#: ../tools/draknfs:170
+#: ../bin/draknfs:170
#, c-format
msgid "Read-Only share:"
msgstr ""
-#: ../tools/draknfs:172
+#: ../bin/draknfs:171
+#, c-format
+msgid "Subtree checking:"
+msgstr ""
+
+#: ../bin/draknfs:173
#, c-format
msgid "Advanced Options"
msgstr ""
-#: ../tools/draknfs:173
+#: ../bin/draknfs:174
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
@@ -3458,7 +1481,7 @@ msgid ""
"is on by default."
msgstr ""
-#: ../tools/draknfs:174
+#: ../bin/draknfs:175
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
@@ -3467,7 +1490,7 @@ msgid ""
"using this option."
msgstr ""
-#: ../tools/draknfs:175
+#: ../bin/draknfs:176
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
@@ -3475,746 +1498,693 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: ../tools/draknfs:180 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draknfs:177
+#, c-format
+msgid ""
+"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "Інфармацыя"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "Каталёг"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "Каталёг:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "Імя машыны"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr ""
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr ""
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "Пазначце ня менш адной групы для карыстальніка"
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr "Агульныя парамэтры"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: ../tools/drakroam:61
-#, fuzzy, c-format
-msgid "No device found"
-msgstr "Няма значкі"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "Інфармацыя аб DMA"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "Шыфраваньне"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, c-format
-msgid "Connecting..."
-msgstr "Далучэньне..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Disconnect"
-msgstr "Адлучаць"
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "Далучэньне"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "Настройка IDE"
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "Настройка"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "Аднавіць"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "Імя карыстальніку:"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "Імя для размеркаванага рэсурсу"
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "Ня тэчка"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, c-format
msgid "Comment"
msgstr "Камэнтар"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "Прагляд"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr "Агульны"
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, fuzzy, c-format
msgid "Writable"
msgstr "Запіс"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "Стварыць"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "Каталог %s Так"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "Чытаньне"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "Запіс"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "Дадаць карыстальніка"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "Дадаць карыстальніка"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "Правы доступу"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "Загрузіць файл(ы)"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, fuzzy, c-format
msgid "Hide files"
msgstr "Загрузіць файл(ы)"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "Усталяваньні"
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, c-format
msgid "Force create mode"
msgstr ""
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "Працоўная група"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "Па ўмаўчанні (%s)"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "Назва друкаркі"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "Шлях:"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, c-format
msgid "Printable"
msgstr "Здольны друкавацца"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "Каманда"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "Каманда"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "Правы доступу"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "Друкаваньне"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "Рэжым прайгравання"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"
msgstr "X сэервер"
-#: ../tools/draksambashare:142
+#: ../bin/draksambashare:142
#, fuzzy, c-format
msgid "Read List"
msgstr "Выдаліць сьпіс"
-#: ../tools/draksambashare:143
+#: ../bin/draksambashare:143
#, fuzzy, c-format
msgid "Write List"
msgstr "Запіс"
-#: ../tools/draksambashare:148
+#: ../bin/draksambashare:148
#, fuzzy, c-format
msgid "Force Group"
msgstr "Група"
-#: ../tools/draksambashare:149
+#: ../bin/draksambashare:149
#, c-format
msgid "Force create group"
msgstr ""
-#: ../tools/draksambashare:165 ../tools/draksambashare:166
-#: ../tools/draksambashare:167
+#: ../bin/draksambashare:165 ../bin/draksambashare:166
+#: ../bin/draksambashare:167
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "Сервак"
-#: ../tools/draksambashare:169 ../tools/draksambashare:170
+#: ../bin/draksambashare:169 ../bin/draksambashare:170
#, c-format
msgid "/_About"
msgstr "/_Пра праграму"
-#: ../tools/draksambashare:169
+#: ../bin/draksambashare:169
#, c-format
msgid "/_Report Bug"
msgstr "/_Паведаміць пра памылку"
-#: ../tools/draksambashare:170
+#: ../bin/draksambashare:170
#, c-format
msgid "/About..."
msgstr ""
-#: ../tools/draksambashare:173
+#: ../bin/draksambashare:173
#, c-format
msgid "Draksambashare"
msgstr ""
-#: ../tools/draksambashare:175
+#: ../bin/draksambashare:175
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""
-#: ../tools/draksambashare:177
+#: ../bin/draksambashare:177
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""
-#: ../tools/draksambashare:179
+#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "Цэнтар кіраваньня"
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
-#: ../tools/draksambashare:184
+#: ../bin/draksambashare:184
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr ""
-#: ../tools/draksambashare:208
+#: ../bin/draksambashare:208
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""
-#: ../tools/draksambashare:209
+#: ../bin/draksambashare:209
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""
-#: ../tools/draksambashare:349 ../tools/draksambashare:549
-#: ../tools/draksambashare:670
+#: ../bin/draksambashare:349 ../bin/draksambashare:550
+#: ../bin/draksambashare:671
#, c-format
msgid "Open"
msgstr "Адчыніць"
-#: ../tools/draksambashare:352
+#: ../bin/draksambashare:352
#, c-format
msgid "DrakSamba add entry"
msgstr ""
-#: ../tools/draksambashare:356
+#: ../bin/draksambashare:356
#, fuzzy, c-format
msgid "Add a share"
msgstr "Дадаць карыстальніка"
-#: ../tools/draksambashare:359
+#: ../bin/draksambashare:359
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "Імя друкаркі"
-#: ../tools/draksambashare:360 ../tools/draksambashare:569
-#: ../tools/draksambashare:750
+#: ../bin/draksambashare:360 ../bin/draksambashare:570
+#: ../bin/draksambashare:751
#, c-format
msgid "Comment:"
msgstr "Камэнтар:"
-#: ../tools/draksambashare:372
+#: ../bin/draksambashare:373
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
-#: ../tools/draksambashare:379
+#: ../bin/draksambashare:380
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""
-#: ../tools/draksambashare:382 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draksambashare:383 ../bin/draksambashare:606
+#: ../bin/draksambashare:773
#, c-format
msgid "Please enter a Comment for this share."
msgstr ""
-#: ../tools/draksambashare:413
+#: ../bin/draksambashare:414
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""
-#: ../tools/draksambashare:414
+#: ../bin/draksambashare:415
#, c-format
msgid "printers - all printers available"
msgstr ""
-#: ../tools/draksambashare:418
+#: ../bin/draksambashare:419
#, c-format
msgid "Add Special Printer share"
msgstr ""
-#: ../tools/draksambashare:421
+#: ../bin/draksambashare:422
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
-#: ../tools/draksambashare:428
+#: ../bin/draksambashare:429
#, c-format
msgid "A PDF generator already exists."
msgstr ""
-#: ../tools/draksambashare:452
+#: ../bin/draksambashare:453
#, c-format
msgid "Printers and print$ already exist."
msgstr ""
-#: ../tools/draksambashare:502
+#: ../bin/draksambashare:503
#, fuzzy, c-format
msgid "Congratulations"
msgstr "Прыміце віншаванні!"
-#: ../tools/draksambashare:503
+#: ../bin/draksambashare:504
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""
-#: ../tools/draksambashare:518
+#: ../bin/draksambashare:519
#, c-format
msgid "Failed to add printers."
msgstr ""
-#: ../tools/draksambashare:533
+#: ../bin/draksambashare:534
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:552
+#: ../bin/draksambashare:553
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""
-#: ../tools/draksambashare:565
+#: ../bin/draksambashare:566
#, c-format
msgid "Printer share"
msgstr ""
-#: ../tools/draksambashare:568
+#: ../bin/draksambashare:569
#, c-format
msgid "Printer name:"
msgstr "Імя прынтэра:"
-#: ../tools/draksambashare:574 ../tools/draksambashare:755
+#: ../bin/draksambashare:575 ../bin/draksambashare:756
#, fuzzy, c-format
msgid "Writable:"
msgstr "Запіс"
-#: ../tools/draksambashare:575 ../tools/draksambashare:756
+#: ../bin/draksambashare:576 ../bin/draksambashare:757
#, fuzzy, c-format
msgid "Browseable:"
msgstr "Прагляд"
-#: ../tools/draksambashare:580
+#: ../bin/draksambashare:581
#, c-format
msgid "Advanced options"
msgstr ""
-#: ../tools/draksambashare:582
+#: ../bin/draksambashare:583
#, fuzzy, c-format
msgid "Printer access"
msgstr "Інтэрфэйс"
-#: ../tools/draksambashare:586
+#: ../bin/draksambashare:587
#, c-format
msgid "Guest ok:"
msgstr ""
-#: ../tools/draksambashare:587
+#: ../bin/draksambashare:588
#, fuzzy, c-format
msgid "Create mode:"
msgstr "Рэжым прайгравання"
-#: ../tools/draksambashare:591
+#: ../bin/draksambashare:592
#, c-format
msgid "Printer command"
msgstr ""
-#: ../tools/draksambashare:593
+#: ../bin/draksambashare:594
#, c-format
msgid "Print command:"
msgstr ""
-#: ../tools/draksambashare:594
+#: ../bin/draksambashare:595
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "Каманда"
-#: ../tools/draksambashare:595
+#: ../bin/draksambashare:596
#, fuzzy, c-format
msgid "Printing:"
msgstr "Увага!"
-#: ../tools/draksambashare:611
+#: ../bin/draksambashare:612
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:673
+#: ../bin/draksambashare:674
#, c-format
msgid "DrakSamba entry"
msgstr ""
-#: ../tools/draksambashare:678
+#: ../bin/draksambashare:679
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:701
+#: ../bin/draksambashare:702
#, fuzzy, c-format
msgid "Samba user access"
msgstr "NIS сэервер:"
-#: ../tools/draksambashare:709
+#: ../bin/draksambashare:710
#, fuzzy, c-format
msgid "Mask options"
msgstr "Захаваць усталёўкі"
-#: ../tools/draksambashare:723
+#: ../bin/draksambashare:724
#, fuzzy, c-format
msgid "Display options"
msgstr "Пазначце параметры"
-#: ../tools/draksambashare:745
+#: ../bin/draksambashare:746
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "Ня тэчка"
-#: ../tools/draksambashare:748
+#: ../bin/draksambashare:749
#, fuzzy, c-format
msgid "Share name:"
msgstr "Імя для размеркаванага рэсурсу"
-#: ../tools/draksambashare:754
+#: ../bin/draksambashare:755
#, c-format
msgid "Public:"
msgstr "Публічны:"
-#: ../tools/draksambashare:778
+#: ../bin/draksambashare:779
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:785
+#: ../bin/draksambashare:786
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""
-#: ../tools/draksambashare:889
+#: ../bin/draksambashare:890
#, c-format
msgid "Add Samba user"
msgstr ""
-#: ../tools/draksambashare:904
+#: ../bin/draksambashare:905
#, c-format
msgid "User information"
msgstr "Зьвесткі аб карыстальніке"
-#: ../tools/draksambashare:906
+#: ../bin/draksambashare:907
#, c-format
msgid "User name:"
msgstr "Імя карыстальніка(цы):"
-#: ../tools/draksambashare:907
+#: ../bin/draksambashare:908
#, c-format
msgid "Password:"
msgstr "Пароль:"
-#: ../tools/draksambashare:1021
+#: ../bin/draksambashare:1022
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "Канфігурацыя"
-#: ../tools/draksambashare:1109
+#: ../bin/draksambashare:1110
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""
-#: ../tools/draksambashare:1118
+#: ../bin/draksambashare:1119
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""
-#: ../tools/draksambashare:1125
+#: ../bin/draksambashare:1126
#, c-format
msgid "File share"
msgstr ""
-#: ../tools/draksambashare:1140
+#: ../bin/draksambashare:1141
#, c-format
msgid "Failed to Modify."
msgstr ""
-#: ../tools/draksambashare:1149
+#: ../bin/draksambashare:1150
#, c-format
msgid "Failed to remove."
msgstr ""
-#: ../tools/draksambashare:1156
+#: ../bin/draksambashare:1157
#, c-format
msgid "Printers"
msgstr "Прынтэры"
-#: ../tools/draksambashare:1168
+#: ../bin/draksambashare:1169
#, c-format
msgid "Failed to add user."
msgstr ""
-#: ../tools/draksambashare:1177
+#: ../bin/draksambashare:1178
#, c-format
msgid "Failed to change user password."
msgstr ""
-#: ../tools/draksambashare:1189
+#: ../bin/draksambashare:1190
#, c-format
msgid "Failed to delete user."
msgstr ""
-#: ../tools/draksambashare:1194
+#: ../bin/draksambashare:1195
#, fuzzy, c-format
msgid "Userdrake"
msgstr "Карыстальнік"
-#: ../tools/draksambashare:1202
+#: ../bin/draksambashare:1203
#, c-format
msgid "Samba Users"
msgstr ""
-#: ../tools/draksambashare:1211
+#: ../bin/draksambashare:1212
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""
-#: ../tools/drakvpn-old:65
+#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr ""
-#: ../tools/drakvpn-old:87
+#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr ""
-#: ../tools/drakvpn-old:88
+#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4224,37 +2194,37 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:93
+#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr ""
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr ""
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119 ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr ""
-#: ../tools/drakvpn-old:97
+#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr ""
-#: ../tools/drakvpn-old:106
+#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr ""
-#: ../tools/drakvpn-old:113
+#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr ""
-#: ../tools/drakvpn-old:114
+#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4264,27 +2234,27 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr ""
-#: ../tools/drakvpn-old:127
+#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr ""
-#: ../tools/drakvpn-old:133
+#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr ""
-#: ../tools/drakvpn-old:147 ../tools/drakvpn-old:164
+#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr ""
-#: ../tools/drakvpn-old:148
+#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
@@ -4300,7 +2270,7 @@ msgid ""
"drakconnect before going any further."
msgstr ""
-#: ../tools/drakvpn-old:165
+#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
@@ -4316,27 +2286,27 @@ msgid ""
"before going any further."
msgstr ""
-#: ../tools/drakvpn-old:208
+#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr "Праблемы з усталяваннем пакету %s"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr ""
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr ""
-#: ../tools/drakvpn-old:224
+#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr ""
-#: ../tools/drakvpn-old:225
+#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
@@ -4348,12 +2318,12 @@ msgid ""
"What would you like to configure?\n"
msgstr ""
-#: ../tools/drakvpn-old:245 ../tools/drakvpn-old:382
+#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr ""
-#: ../tools/drakvpn-old:246
+#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
@@ -4367,32 +2337,32 @@ msgid ""
"What would you like to do?\n"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "Рэдагаваць"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr "Фіксацыя"
-#: ../tools/drakvpn-old:267 ../tools/drakvpn-old:271 ../tools/drakvpn-old:406
-#: ../tools/drakvpn-old:410
+#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
+#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr ""
-#: ../tools/drakvpn-old:272
+#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
@@ -4402,7 +2372,7 @@ msgid ""
"You'll have to go back and choose 'add'.\n"
msgstr ""
-#: ../tools/drakvpn-old:301
+#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
@@ -4412,12 +2382,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:333 ../tools/drakvpn-old:523
+#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr ""
-#: ../tools/drakvpn-old:334
+#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4426,13 +2396,13 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:337 ../tools/drakvpn-old:357 ../tools/drakvpn-old:528
-#: ../tools/drakvpn-old:574
+#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
+#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr ""
-#: ../tools/drakvpn-old:344
+#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
@@ -4442,12 +2412,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:353 ../tools/drakvpn-old:570
+#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr ""
-#: ../tools/drakvpn-old:354 ../tools/drakvpn-old:571
+#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4456,7 +2426,7 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:383
+#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
@@ -4470,7 +2440,7 @@ msgid ""
" - commit \t\t (writes the changes to the real file)"
msgstr ""
-#: ../tools/drakvpn-old:411
+#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
@@ -4480,12 +2450,12 @@ msgid ""
"You'll have to go back and choose configure.\n"
msgstr ""
-#: ../tools/drakvpn-old:425
+#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr ""
-#: ../tools/drakvpn-old:426
+#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
@@ -4498,22 +2468,22 @@ msgid ""
"Choose the section you would like to add.\n"
msgstr ""
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr ""
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr ""
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr ""
-#: ../tools/drakvpn-old:440
+#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
@@ -4523,12 +2493,12 @@ msgid ""
"Put your mouse over the certificate entry to obtain online help."
msgstr ""
-#: ../tools/drakvpn-old:443
+#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr ""
-#: ../tools/drakvpn-old:447
+#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
@@ -4552,12 +2522,12 @@ msgid ""
"Pre-shared key authentication method in phase 1."
msgstr ""
-#: ../tools/drakvpn-old:467 ../tools/drakvpn-old:560
+#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr ""
-#: ../tools/drakvpn-old:490
+#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4567,7 +2537,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:507
+#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4577,7 +2547,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:524
+#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4586,7 +2556,7 @@ msgid ""
"to edit and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:535
+#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4597,7 +2567,7 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:544
+#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4607,7 +2577,7 @@ msgid ""
"Choose continue when you are done to write the data."
msgstr ""
-#: ../tools/drakvpn-old:552
+#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
@@ -4621,17 +2591,17 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:559
+#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr ""
-#: ../tools/drakvpn-old:599
+#: ../bin/drakvpn-old:599
#, c-format
msgid "Congratulations!"
msgstr "Прыміце віншаванні!"
-#: ../tools/drakvpn-old:600
+#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -4643,12 +2613,12 @@ msgid ""
"section is configured."
msgstr ""
-#: ../tools/drakvpn-old:620
+#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""
-#: ../tools/drakvpn-old:621
+#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4671,12 +2641,12 @@ msgid ""
"\t172.16.1.0/24 is the source address"
msgstr ""
-#: ../tools/drakvpn-old:638
+#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr ""
-#: ../tools/drakvpn-old:639
+#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4696,12 +2666,12 @@ msgid ""
"\tthe first 'any' allows any protocol for the source"
msgstr ""
-#: ../tools/drakvpn-old:653
+#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr ""
-#: ../tools/drakvpn-old:654
+#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4724,12 +2694,12 @@ msgid ""
"\t172.16.2.0/24 is the destination address"
msgstr ""
-#: ../tools/drakvpn-old:671
+#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr ""
-#: ../tools/drakvpn-old:672
+#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4749,12 +2719,12 @@ msgid ""
"\tthe last 'any' allows any protocol for the destination"
msgstr ""
-#: ../tools/drakvpn-old:686
+#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr ""
-#: ../tools/drakvpn-old:688
+#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
@@ -4764,12 +2734,12 @@ msgid ""
"Or you can define 1, 2, or 5 as the DH group number."
msgstr ""
-#: ../tools/drakvpn-old:693
+#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr ""
-#: ../tools/drakvpn-old:694
+#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4790,12 +2760,12 @@ msgid ""
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
msgstr ""
-#: ../tools/drakvpn-old:710
+#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr ""
-#: ../tools/drakvpn-old:712
+#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4817,32 +2787,32 @@ msgid ""
"'hour'.\n"
msgstr ""
-#: ../tools/drakvpn-old:728 ../tools/drakvpn-old:813
+#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, c-format
msgid "Encryption algorithm"
msgstr ""
-#: ../tools/drakvpn-old:730
+#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr ""
-#: ../tools/drakvpn-old:732
+#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr ""
-#: ../tools/drakvpn-old:733
+#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr ""
-#: ../tools/drakvpn-old:740
+#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr ""
-#: ../tools/drakvpn-old:741
+#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
@@ -4857,12 +2827,12 @@ msgid ""
"remote ::1 [8000]"
msgstr ""
-#: ../tools/drakvpn-old:749
+#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr ""
-#: ../tools/drakvpn-old:751
+#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
@@ -4873,22 +2843,22 @@ msgid ""
"racoon uses when it is the initiator.\n"
msgstr ""
-#: ../tools/drakvpn-old:757
+#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr ""
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr ""
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "на"
-#: ../tools/drakvpn-old:759
+#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder. Therefore you\n"
@@ -4907,12 +2877,12 @@ msgid ""
"the initiator case. The default value is off."
msgstr ""
-#: ../tools/drakvpn-old:773
+#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr ""
-#: ../tools/drakvpn-old:775
+#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
@@ -4920,59 +2890,59 @@ msgid ""
"server."
msgstr ""
-#: ../tools/drakvpn-old:778
+#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr ""
-#: ../tools/drakvpn-old:780
+#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr ""
-#: ../tools/drakvpn-old:781
+#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr ""
-#: ../tools/drakvpn-old:782
+#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr ""
-#: ../tools/drakvpn-old:783
+#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr ""
-#: ../tools/drakvpn-old:784
+#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr ""
-#: ../tools/drakvpn-old:785
+#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr ""
-#: ../tools/drakvpn-old:786
+#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr ""
-#: ../tools/drakvpn-old:788
+#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
"some reason, set this to off. The default is on."
msgstr ""
-#: ../tools/drakvpn-old:790
+#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr ""
-#: ../tools/drakvpn-old:791
+#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
@@ -4999,17 +2969,17 @@ msgid ""
"my_identifier user_fqdn \"myemail@mydomain.com\""
msgstr ""
-#: ../tools/drakvpn-old:811
+#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr ""
-#: ../tools/drakvpn-old:812
+#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr ""
-#: ../tools/drakvpn-old:814
+#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
@@ -5021,432 +2991,2474 @@ msgid ""
"For other transforms, this statement should not be used."
msgstr ""
-#: ../tools/drakvpn-old:821
+#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr ""
-#: ../tools/drakvpn-old:822
+#: ../bin/drakvpn-old:822
#, fuzzy, c-format
msgid "Authentication method"
msgstr "Аўтэнтыфікацыя"
-#: ../tools/drakvpn-old:823
+#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr ""
-#: ../tools/drakvpn-old:830
+#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "Каманда"
-#: ../tools/drakvpn-old:831
+#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr ""
-#: ../tools/drakvpn-old:832
+#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr ""
-#: ../tools/drakvpn-old:833
+#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr ""
-#: ../tools/drakvpn-old:833 ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr ""
-#: ../tools/drakvpn-old:835
+#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "Сьцяг"
-#: ../tools/drakvpn-old:836
+#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "Накірунак"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "Рэжым"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr ""
-#: ../tools/drakvpn-old:842
+#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "Узровень"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "Па дамаўленню"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr ""
-#: ../tools/net_applet:61
+#: ../bin/net_applet:62
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "Сеткавы інтэрфейс"
-#: ../tools/net_applet:62
+#: ../bin/net_applet:63
#, fuzzy, c-format
msgid "IP address: %s"
msgstr "IP адрас:"
-#: ../tools/net_applet:63
+#: ../bin/net_applet:64
#, fuzzy, c-format
msgid "Gateway: %s"
msgstr "Шлюз:"
-#: ../tools/net_applet:64
+#: ../bin/net_applet:65
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""
-#: ../tools/net_applet:66
+#: ../bin/net_applet:67
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "Сеткавы інтэрфейс"
-#: ../tools/net_applet:74 ../tools/net_monitor:468
+#: ../bin/net_applet:75 ../bin/net_monitor:468
#, fuzzy, c-format
msgid "Connect %s"
msgstr "Імя злучэння"
-#: ../tools/net_applet:75 ../tools/net_monitor:468
+#: ../bin/net_applet:76 ../bin/net_monitor:468
#, c-format
msgid "Disconnect %s"
msgstr ""
-#: ../tools/net_applet:76
+#: ../bin/net_applet:77
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "Сетка"
-#: ../tools/net_applet:78
+#: ../bin/net_applet:79
#, c-format
msgid "Manage wireless networks"
msgstr ""
-#: ../tools/net_applet:80
+#: ../bin/net_applet:81
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "Размеркаванне"
-#: ../tools/net_applet:84
+#: ../bin/net_applet:85
#, fuzzy, c-format
msgid "Configure Network"
msgstr "Настройка сеткі"
-#: ../tools/net_applet:86
+#: ../bin/net_applet:87
#, fuzzy, c-format
msgid "Watched interface"
msgstr "Сеткавыя інтэрфэйсы"
-#: ../tools/net_applet:87 ../tools/net_applet:88 ../tools/net_applet:90
+#: ../bin/net_applet:88 ../bin/net_applet:89 ../bin/net_applet:91
#, fuzzy, c-format
msgid "Auto-detect"
msgstr "Аўтаматычнае вызначэнне"
-#: ../tools/net_applet:95
+#: ../bin/net_applet:96
#, c-format
msgid "Active interfaces"
msgstr ""
-#: ../tools/net_applet:119
+#: ../bin/net_applet:120
#, c-format
msgid "Profiles"
msgstr "Профілі"
-#: ../tools/net_applet:137
-#, c-format
-msgid "Get Online Help"
-msgstr ""
+#: ../bin/net_applet:130 ../lib/network/connection.pm:149
+#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
+#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
+#, fuzzy, c-format
+msgid "VPN connection"
+msgstr "Дзеяньні"
-#: ../tools/net_applet:318
+#: ../bin/net_applet:319
#, fuzzy, c-format
msgid "Network connection"
msgstr "Сетка"
-#: ../tools/net_applet:438
+#: ../bin/net_applet:443
#, c-format
msgid "More networks"
msgstr ""
-#: ../tools/net_applet:465
+#: ../bin/net_applet:470
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: ../tools/net_applet:470
+#: ../bin/net_applet:475
#, c-format
msgid "Always launch on startup"
msgstr ""
-#: ../tools/net_applet:475
+#: ../bin/net_applet:480
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "Канфігурацыя"
-#: ../tools/net_applet:482 ../tools/net_monitor:96
+#: ../bin/net_applet:487 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "Усталёўкі"
-#: ../tools/net_applet:557
+#: ../bin/net_applet:562
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-#: ../tools/net_applet:574
+#: ../bin/net_applet:579
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "Вы жадаеце скончыць гульню?"
-#: ../tools/net_applet:577
+#: ../bin/net_applet:582
#, fuzzy, c-format
msgid "Attack details"
msgstr "Падрабязнасці"
-#: ../tools/net_applet:581
+#: ../bin/net_applet:586
#, fuzzy, c-format
msgid "Attack time: %s"
msgstr "Укласьці файл(ы)"
-#: ../tools/net_applet:582
+#: ../bin/net_applet:587
#, c-format
msgid "Network interface: %s"
msgstr "Сеткавы інтэрфейс: %s"
-#: ../tools/net_applet:583
+#: ../bin/net_applet:588
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "Тып: "
-#: ../tools/net_applet:584
+#: ../bin/net_applet:589
#, c-format
msgid "Protocol: %s"
msgstr "Пратакол: %s"
-#: ../tools/net_applet:585
+#: ../bin/net_applet:590
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "IP адрас"
-#: ../tools/net_applet:586
+#: ../bin/net_applet:591
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "Адбыўся збой пад час атрыманьня назвы вузла: %s\n"
-#: ../tools/net_applet:589
+#: ../bin/net_applet:594
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "Кіраваньне сэрвісамі"
-#: ../tools/net_applet:590
+#: ../bin/net_applet:595
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "Порт:"
-#: ../tools/net_applet:592
+#: ../bin/net_applet:597
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""
-#: ../tools/net_applet:597
+#: ../bin/net_applet:602
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""
-#: ../tools/net_applet:612
+#: ../bin/net_applet:617
#, c-format
msgid "Ignore"
msgstr "Ігнараваць"
-#: ../tools/net_applet:630 ../tools/net_applet:643
+#: ../bin/net_applet:635 ../bin/net_applet:648
#, fuzzy, c-format
msgid "Interactive Firewall: new service"
msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
-#: ../tools/net_applet:654
+#: ../bin/net_applet:658
#, fuzzy, c-format
msgid "Do you want to open this service?"
msgstr "Ці жадаеце пратэсціраваць настройкі?"
-#: ../tools/net_applet:657
+#: ../bin/net_applet:661
#, fuzzy, c-format
msgid "Remember this answer"
msgstr "Запомніць гэты пароль"
-#: ../tools/net_monitor:60 ../tools/net_monitor:65
+#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, fuzzy, c-format
msgid "Network Monitoring"
msgstr "Канфігурацыя сеткі"
-#: ../tools/net_monitor:101
+#: ../bin/net_monitor:101
#, c-format
msgid "Global statistics"
msgstr ""
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr ""
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, fuzzy, c-format
msgid "Average"
msgstr "Альтэрнатыўны"
-#: ../tools/net_monitor:105
+#: ../bin/net_monitor:105
#, c-format
msgid ""
"Sending\n"
"speed:"
msgstr ""
-#: ../tools/net_monitor:105 ../tools/net_monitor:106 ../tools/net_monitor:111
+#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "невядома"
-#: ../tools/net_monitor:106
+#: ../bin/net_monitor:106
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr ""
-#: ../tools/net_monitor:110
+#: ../bin/net_monitor:110
#, fuzzy, c-format
msgid ""
"Connection\n"
"time: "
msgstr "Імя злучэння"
-#: ../tools/net_monitor:117
+#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""
-#: ../tools/net_monitor:136
+#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr ""
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, fuzzy, c-format
msgid "Disconnecting from Internet "
msgstr "Далучэнне да Інтэрнэту"
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, fuzzy, c-format
msgid "Connecting to Internet "
msgstr "Далучэнне да Інтэрнэту"
-#: ../tools/net_monitor:229
+#: ../bin/net_monitor:229
#, c-format
msgid "Disconnection from Internet failed."
msgstr ""
-#: ../tools/net_monitor:230
+#: ../bin/net_monitor:230
#, c-format
msgid "Disconnection from Internet complete."
msgstr ""
-#: ../tools/net_monitor:232
+#: ../bin/net_monitor:232
#, fuzzy, c-format
msgid "Connection complete."
msgstr "Імя злучэння"
-#: ../tools/net_monitor:233
+#: ../bin/net_monitor:233
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandriva Linux Control Center."
msgstr ""
-#: ../tools/net_monitor:338
+#: ../bin/net_monitor:338
#, fuzzy, c-format
msgid "Color configuration"
msgstr "Канфігурацыя"
-#: ../tools/net_monitor:395 ../tools/net_monitor:407
+#: ../bin/net_monitor:395 ../bin/net_monitor:407
#, fuzzy, c-format
msgid "sent: "
msgstr "Эсперанто:"
-#: ../tools/net_monitor:398 ../tools/net_monitor:411
+#: ../bin/net_monitor:398 ../bin/net_monitor:411
#, c-format
msgid "received: "
msgstr ""
-#: ../tools/net_monitor:401
+#: ../bin/net_monitor:401
#, c-format
msgid "average"
msgstr ""
-#: ../tools/net_monitor:404
+#: ../bin/net_monitor:404
#, fuzzy, c-format
msgid "Local measure"
msgstr "Гульня ў косьці"
-#: ../tools/net_monitor:461
+#: ../bin/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../tools/net_monitor:472
+#: ../bin/net_monitor:472
#, fuzzy, c-format
msgid "No internet connection configured"
msgstr "Сумеснае Інтэрнэт-злучэнне"
+
+#: ../lib/network/connection.pm:16
+#, c-format
+msgid "Unknown connection type"
+msgstr ""
+
+#: ../lib/network/connection.pm:115
+#, c-format
+msgid "Network access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:116
+#, c-format
+msgid "Access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:117
+#, c-format
+msgid "Address settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
+#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
+#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
+#, c-format
+msgid "None"
+msgstr "Нічога"
+
+#: ../lib/network/connection.pm:163
+#, c-format
+msgid "Allow users to manage the connection"
+msgstr ""
+
+#: ../lib/network/connection.pm:164
+#, c-format
+msgid "Start the connection at boot"
+msgstr ""
+
+#: ../lib/network/connection.pm:230
+#, c-format
+msgid "Link detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:273
+#, c-format
+msgid "Link beat lost on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:13
+#, c-format
+msgid "Cable"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:14
+#, fuzzy, c-format
+msgid "Cable modem"
+msgstr "Рэжым прайгравання"
+
+#: ../lib/network/connection/cable.pm:45
+#, c-format
+msgid "Use BPALogin (needed for Telstra)"
+msgstr ""
+
+#: ../lib/network/connection/cellular.pm:47
+#, c-format
+msgid "Access Point Name"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:10
+#, c-format
+msgid "Bluetooth"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:11
+#, c-format
+msgid "Bluetooth Dial Up Networking"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:8
+#, c-format
+msgid "GPRS/Edge/3G"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:67
+#: ../lib/network/vpn/openvpn.pm:391
+#, c-format
+msgid "PIN number"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:130
+#, fuzzy, c-format
+msgid "Unable to open device %s"
+msgstr "Немагчыма адчыніць файл %s\n"
+
+#: ../lib/network/connection/cellular_card.pm:155
+#, fuzzy, c-format
+msgid "Please check that your SIM card is inserted."
+msgstr "Калі ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
+
+#: ../lib/network/connection/cellular_card.pm:161
+#, c-format
+msgid ""
+"You entered a wrong PIN code.\n"
+"Entering the wrong PIN code multiple times may lock your SIM card!"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:12
+#, c-format
+msgid "DVB"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:13
+#, c-format
+msgid "Satellite (DVB)"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:56
+#, c-format
+msgid "Adapter card"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:57
+#, c-format
+msgid "Net demux"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:58
+#, c-format
+msgid "PID"
+msgstr "PID"
+
+#: ../lib/network/connection/ethernet.pm:10
+#, c-format
+msgid "Ethernet"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:53
+#, c-format
+msgid "Unable to find network interface for selected device (using %s driver)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#, fuzzy, c-format
+msgid "Manual configuration"
+msgstr "Захаваць канфігурацыю меню"
+
+#: ../lib/network/connection/ethernet.pm:62
+#, c-format
+msgid "Automatic IP (BOOTP/DHCP)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:116
+#, fuzzy, c-format
+msgid "IP settings"
+msgstr "Настройкі шрыфтоў"
+
+#: ../lib/network/connection/ethernet.pm:129
+#, 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)."
+msgstr ""
+"Калі ласка, увядзіце IP канфігурацыю для вашай машыны.\n"
+"Кожны пункт павінен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
+"натацыі (напрыклад, 1.2.3.4)."
+
+#: ../lib/network/connection/ethernet.pm:138
+#, fuzzy, c-format
+msgid "DNS server 1"
+msgstr "NIS сэервер:"
+
+#: ../lib/network/connection/ethernet.pm:139
+#, fuzzy, c-format
+msgid "DNS server 2"
+msgstr "NIS сэервер:"
+
+#: ../lib/network/connection/ethernet.pm:140
+#, fuzzy, c-format
+msgid "Search domain"
+msgstr "Шукаць: "
+
+#: ../lib/network/connection/ethernet.pm:141
+#, c-format
+msgid "By default search domain will be set from the fully-qualified host name"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:149
+#, c-format
+msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:170
+#, c-format
+msgid "Warning: IP address %s is usually reserved!"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:176
+#, fuzzy, c-format
+msgid "%s already in use\n"
+msgstr "%s ужо знойдзены "
+
+#: ../lib/network/connection/ethernet.pm:224
+#, c-format
+msgid "Enable IPv6 to IPv4 tunnel"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:272
+#, c-format
+msgid "Link beat detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:275
+#, c-format
+msgid "Requesting a network address on interface %s (%s protocol)..."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:276
+#, c-format
+msgid "Got a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:277
+#, c-format
+msgid "Failed to get a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:8
+#, c-format
+msgid "ISDN"
+msgstr "ISDN"
+
+#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
+#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
+#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
+#: ../lib/network/netconnect.pm:562
+#, c-format
+msgid "Unlisted - edit manually"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "I do not know"
+msgstr "Не вядома"
+
+#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "USB"
+msgstr "USB"
+
+#. -PO: POTS means "Plain old telephone service"
+#: ../lib/network/connection/pots.pm:10
+#, c-format
+msgid "POTS"
+msgstr ""
+
+#. -PO: POTS means "Plain old telephone service"
+#. -PO: remove it if it doesn't have an equivalent in your language
+#. -PO: for example, in French, it can be translated as "RTC"
+#: ../lib/network/connection/pots.pm:16
+#, c-format
+msgid "Analog telephone modem (POTS)"
+msgstr ""
+
+#: ../lib/network/connection/providers/cellular.pm:13
+#: ../lib/network/connection/providers/cellular.pm:18
+#: ../lib/network/connection/providers/cellular.pm:23
+#: ../lib/network/connection/providers/xdsl.pm:492
+#: ../lib/network/connection/providers/xdsl.pm:504
+#: ../lib/network/connection/providers/xdsl.pm:516
+#: ../lib/network/connection/providers/xdsl.pm:528
+#: ../lib/network/connection/providers/xdsl.pm:539
+#: ../lib/network/connection/providers/xdsl.pm:551
+#: ../lib/network/connection/providers/xdsl.pm:563
+#: ../lib/network/connection/providers/xdsl.pm:575
+#: ../lib/network/connection/providers/xdsl.pm:588
+#: ../lib/network/connection/providers/xdsl.pm:599
+#: ../lib/network/connection/providers/xdsl.pm:610
+#: ../lib/network/netconnect.pm:33
+#, c-format
+msgid "France"
+msgstr "Францыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:47
+#: ../lib/network/connection/providers/xdsl.pm:57
+#, c-format
+msgid "Algeria"
+msgstr "Альджыр"
+
+#: ../lib/network/connection/providers/xdsl.pm:67
+#: ../lib/network/connection/providers/xdsl.pm:77
+#, c-format
+msgid "Argentina"
+msgstr "Аргенціна"
+
+#: ../lib/network/connection/providers/xdsl.pm:87
+#: ../lib/network/connection/providers/xdsl.pm:96
+#: ../lib/network/connection/providers/xdsl.pm:105
+#, c-format
+msgid "Austria"
+msgstr "Аўстрыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:114
+#: ../lib/network/connection/providers/xdsl.pm:124
+#: ../lib/network/connection/providers/xdsl.pm:134
+#, c-format
+msgid "Australia"
+msgstr "Аўстралія"
+
+#: ../lib/network/connection/providers/xdsl.pm:144
+#: ../lib/network/connection/providers/xdsl.pm:153
+#: ../lib/network/connection/providers/xdsl.pm:164
+#: ../lib/network/connection/providers/xdsl.pm:173
+#: ../lib/network/connection/providers/xdsl.pm:182
+#: ../lib/network/netconnect.pm:36
+#, c-format
+msgid "Belgium"
+msgstr "Бельгія"
+
+#: ../lib/network/connection/providers/xdsl.pm:191
+#: ../lib/network/connection/providers/xdsl.pm:201
+#: ../lib/network/connection/providers/xdsl.pm:210
+#: ../lib/network/connection/providers/xdsl.pm:219
+#, c-format
+msgid "Brazil"
+msgstr "Бразылія"
+
+#: ../lib/network/connection/providers/xdsl.pm:228
+#: ../lib/network/connection/providers/xdsl.pm:237
+#, c-format
+msgid "Bulgaria"
+msgstr "Баўгарыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:246
+#: ../lib/network/connection/providers/xdsl.pm:255
+#: ../lib/network/connection/providers/xdsl.pm:264
+#: ../lib/network/connection/providers/xdsl.pm:273
+#: ../lib/network/connection/providers/xdsl.pm:282
+#: ../lib/network/connection/providers/xdsl.pm:291
+#: ../lib/network/connection/providers/xdsl.pm:300
+#: ../lib/network/connection/providers/xdsl.pm:309
+#: ../lib/network/connection/providers/xdsl.pm:318
+#: ../lib/network/connection/providers/xdsl.pm:327
+#: ../lib/network/connection/providers/xdsl.pm:336
+#: ../lib/network/connection/providers/xdsl.pm:345
+#: ../lib/network/connection/providers/xdsl.pm:354
+#: ../lib/network/connection/providers/xdsl.pm:363
+#: ../lib/network/connection/providers/xdsl.pm:372
+#: ../lib/network/connection/providers/xdsl.pm:381
+#: ../lib/network/connection/providers/xdsl.pm:390
+#: ../lib/network/connection/providers/xdsl.pm:399
+#: ../lib/network/connection/providers/xdsl.pm:408
+#: ../lib/network/connection/providers/xdsl.pm:417
+#, c-format
+msgid "China"
+msgstr "Кітай"
+
+#: ../lib/network/connection/providers/xdsl.pm:426
+#: ../lib/network/connection/providers/xdsl.pm:436
+#, c-format
+msgid "Czech Republic"
+msgstr "Чэская Рэспубліка"
+
+#: ../lib/network/connection/providers/xdsl.pm:446
+#: ../lib/network/connection/providers/xdsl.pm:455
+#: ../lib/network/connection/providers/xdsl.pm:464
+#, c-format
+msgid "Denmark"
+msgstr "Данія"
+
+#: ../lib/network/connection/providers/xdsl.pm:473
+#, c-format
+msgid "Egypt"
+msgstr "Эгіпэт"
+
+#: ../lib/network/connection/providers/xdsl.pm:483
+#, c-format
+msgid "Finland"
+msgstr "Фінляндыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:621
+#: ../lib/network/connection/providers/xdsl.pm:630
+#: ../lib/network/connection/providers/xdsl.pm:640
+#, c-format
+msgid "Germany"
+msgstr "Нямецкі"
+
+#: ../lib/network/connection/providers/xdsl.pm:650
+#, c-format
+msgid "Greece"
+msgstr "Грэцыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:659
+#, c-format
+msgid "Hungary"
+msgstr "Вугоршчына"
+
+#: ../lib/network/connection/providers/xdsl.pm:668
+#, c-format
+msgid "Ireland"
+msgstr "Ірляндыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:677
+#, c-format
+msgid "Israel"
+msgstr "Габрэйшчына"
+
+#: ../lib/network/connection/providers/xdsl.pm:687
+#, c-format
+msgid "India"
+msgstr "Індыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:696
+#: ../lib/network/connection/providers/xdsl.pm:705
+#, c-format
+msgid "Iceland"
+msgstr "Ісьляндыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:714
+#: ../lib/network/connection/providers/xdsl.pm:725
+#: ../lib/network/connection/providers/xdsl.pm:735
+#: ../lib/network/connection/providers/xdsl.pm:746
+#: ../lib/network/netconnect.pm:35
+#, c-format
+msgid "Italy"
+msgstr "Італія"
+
+#: ../lib/network/connection/providers/xdsl.pm:758
+#, c-format
+msgid "Sri Lanka"
+msgstr "Шры Ланка"
+
+#: ../lib/network/connection/providers/xdsl.pm:770
+#, c-format
+msgid "Lithuania"
+msgstr "Жамойція"
+
+#: ../lib/network/connection/providers/xdsl.pm:779
+#: ../lib/network/connection/providers/xdsl.pm:789
+#, c-format
+msgid "Mauritius"
+msgstr "Марыціўс"
+
+#: ../lib/network/connection/providers/xdsl.pm:800
+#, c-format
+msgid "Morocco"
+msgstr "Марока"
+
+#: ../lib/network/connection/providers/xdsl.pm:810
+#: ../lib/network/connection/providers/xdsl.pm:819
+#: ../lib/network/connection/providers/xdsl.pm:828
+#: ../lib/network/connection/providers/xdsl.pm:837
+#: ../lib/network/netconnect.pm:34
+#, c-format
+msgid "Netherlands"
+msgstr "Нідэрлянды"
+
+#: ../lib/network/connection/providers/xdsl.pm:846
+#: ../lib/network/connection/providers/xdsl.pm:852
+#: ../lib/network/connection/providers/xdsl.pm:858
+#: ../lib/network/connection/providers/xdsl.pm:864
+#: ../lib/network/connection/providers/xdsl.pm:870
+#: ../lib/network/connection/providers/xdsl.pm:876
+#: ../lib/network/connection/providers/xdsl.pm:882
+#, c-format
+msgid "Norway"
+msgstr "Нарвэгія"
+
+#: ../lib/network/connection/providers/xdsl.pm:890
+#, c-format
+msgid "Pakistan"
+msgstr "Пакістан"
+
+#: ../lib/network/connection/providers/xdsl.pm:901
+#: ../lib/network/connection/providers/xdsl.pm:911
+#, c-format
+msgid "Poland"
+msgstr "Польшча"
+
+#: ../lib/network/connection/providers/xdsl.pm:922
+#, c-format
+msgid "Portugal"
+msgstr "Партугалія"
+
+#: ../lib/network/connection/providers/xdsl.pm:931
+#, c-format
+msgid "Russia"
+msgstr "Расея"
+
+#: ../lib/network/connection/providers/xdsl.pm:942
+#, c-format
+msgid "Singapore"
+msgstr "Сынгапур"
+
+#: ../lib/network/connection/providers/xdsl.pm:951
+#, c-format
+msgid "Senegal"
+msgstr "Сенегал"
+
+#: ../lib/network/connection/providers/xdsl.pm:961
+#, c-format
+msgid "Slovenia"
+msgstr "Славенія"
+
+#: ../lib/network/connection/providers/xdsl.pm:972
+#: ../lib/network/connection/providers/xdsl.pm:984
+#: ../lib/network/connection/providers/xdsl.pm:996
+#: ../lib/network/connection/providers/xdsl.pm:1009
+#: ../lib/network/connection/providers/xdsl.pm:1019
+#: ../lib/network/connection/providers/xdsl.pm:1029
+#: ../lib/network/connection/providers/xdsl.pm:1040
+#: ../lib/network/connection/providers/xdsl.pm:1050
+#: ../lib/network/connection/providers/xdsl.pm:1060
+#: ../lib/network/connection/providers/xdsl.pm:1070
+#: ../lib/network/connection/providers/xdsl.pm:1080
+#: ../lib/network/connection/providers/xdsl.pm:1090
+#: ../lib/network/connection/providers/xdsl.pm:1101
+#: ../lib/network/connection/providers/xdsl.pm:1112
+#: ../lib/network/connection/providers/xdsl.pm:1124
+#: ../lib/network/connection/providers/xdsl.pm:1136
+#, c-format
+msgid "Spain"
+msgstr "Гішпанія"
+
+#: ../lib/network/connection/providers/xdsl.pm:1149
+#, c-format
+msgid "Sweden"
+msgstr "Швэцыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:1158
+#: ../lib/network/connection/providers/xdsl.pm:1167
+#: ../lib/network/connection/providers/xdsl.pm:1177
+#, c-format
+msgid "Switzerland"
+msgstr "Щвэйцарыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:1186
+#, c-format
+msgid "Thailand"
+msgstr "Тайланд"
+
+#: ../lib/network/connection/providers/xdsl.pm:1196
+#, c-format
+msgid "Tunisia"
+msgstr "Тунісія"
+
+#: ../lib/network/connection/providers/xdsl.pm:1207
+#, c-format
+msgid "Turkey"
+msgstr "Турцыя"
+
+#: ../lib/network/connection/providers/xdsl.pm:1220
+#, c-format
+msgid "United Arab Emirates"
+msgstr "Злучаныя Арабскія Эміраты"
+
+#: ../lib/network/connection/providers/xdsl.pm:1230
+#: ../lib/network/connection/providers/xdsl.pm:1240
+#: ../lib/network/netconnect.pm:38
+#, c-format
+msgid "United Kingdom"
+msgstr "Злучанае Каралеўства"
+
+#: ../lib/network/connection/wireless.pm:11
+#, c-format
+msgid "Wireless"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:27
+#, c-format
+msgid "Use a Windows driver (with ndiswrapper)"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:44
+#, c-format
+msgid "Open WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:45
+#, c-format
+msgid "Restricted WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:46
+#, c-format
+msgid "WPA Pre-Shared Key"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:182 ../lib/network/thirdparty.pm:175
+#, c-format
+msgid "Firmware files are required for this device."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:248
+#, c-format
+msgid ""
+"Your wireless card is disabled, please enable the wireless switch (RF kill "
+"switch) first."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:307
+#, fuzzy, c-format
+msgid "Wireless settings"
+msgstr "Канфігурацыя"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Ad-hoc"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:313
+#, fuzzy, c-format
+msgid "Managed"
+msgstr "Мэнэджэр файлаў"
+
+#: ../lib/network/connection/wireless.pm:313
+#, fuzzy, c-format
+msgid "Master"
+msgstr "Прайгравальнік дыскаў"
+
+#: ../lib/network/connection/wireless.pm:313
+#, fuzzy, c-format
+msgid "Repeater"
+msgstr "Цыклічна"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Secondary"
+msgstr "Падпарадкаваны"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Auto"
+msgstr "Аўтаматычна"
+
+#: ../lib/network/connection/wireless.pm:318
+#, c-format
+msgid "Encryption mode"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:327
+#, c-format
+msgid ""
+"RTS/CTS adds a handshake before each packet transmission to make sure that "
+"the\n"
+"channel is clear. This adds overhead, but increase performance in case of "
+"hidden\n"
+"nodes or large number of active nodes. This parameter sets the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, "
+"fixed\n"
+"or off."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:336
+#, c-format
+msgid ""
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
+"as the hostname).\n"
+"\n"
+"See iwconfig(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:344
+#, c-format
+msgid ""
+"iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
+"\n"
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:354
+#, c-format
+msgid ""
+"iwpriv enable to set up optionals (private) parameters of a wireless "
+"network\n"
+"interface.\n"
+"\n"
+"iwpriv deals with parameters and setting specific to each driver (as opposed "
+"to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to "
+"use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:372
+#, c-format
+msgid "An encryption key is required."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:378
+#, 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 ""
+
+#: ../lib/network/connection/wireless.pm:384
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:396
+#, c-format
+msgid "Allow access point roaming"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:499
+#, c-format
+msgid "Associated to wireless network \"%s\" on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:500
+#, c-format
+msgid "Lost association to wireless network on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:8
+#, fuzzy, c-format
+msgid "DSL"
+msgstr "SSL"
+
+#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
+#, c-format
+msgid "Alcatel speedtouch USB modem"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:104
+#, c-format
+msgid ""
+"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
+"problem.\n"
+"\n"
+"You can find a driver on http://eciadsl.flashtux.org/"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:176
+#, c-format
+msgid "DSL over CAPI"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:179
+#, fuzzy, c-format
+msgid "Dynamic Host Configuration Protocol (DHCP)"
+msgstr "Канфігурацыя сістэмных сэрвісаў"
+
+#: ../lib/network/connection/xdsl.pm:180
+#, fuzzy, c-format
+msgid "Manual TCP/IP configuration"
+msgstr "Канфігурацыя"
+
+#: ../lib/network/connection/xdsl.pm:181
+#, c-format
+msgid "Point to Point Tunneling Protocol (PPTP)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:182
+#, c-format
+msgid "PPP over Ethernet (PPPoE)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:183
+#, c-format
+msgid "PPP over ATM (PPPoA)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:223
+#, c-format
+msgid "Virtual Path ID (VPI):"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:224
+#, c-format
+msgid "Virtual Circuit ID (VCI):"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakvpn.pm:45 ../lib/network/netconnect.pm:131
+#: ../lib/network/thirdparty.pm:115
+#, fuzzy, c-format
+msgid "Could not install the packages (%s)!"
+msgstr "Усталяванне пакету %s"
+
+#: ../lib/network/drakfirewall.pm:12
+#, fuzzy, c-format
+msgid "Web Server"
+msgstr "Сервак"
+
+#: ../lib/network/drakfirewall.pm:17
+#, fuzzy, c-format
+msgid "Domain Name Server"
+msgstr "Імя дамену"
+
+#: ../lib/network/drakfirewall.pm:22
+#, fuzzy, c-format
+msgid "SSH server"
+msgstr "X сэервер"
+
+#: ../lib/network/drakfirewall.pm:27
+#, fuzzy, c-format
+msgid "FTP server"
+msgstr "X сэервер"
+
+#: ../lib/network/drakfirewall.pm:32
+#, fuzzy, c-format
+msgid "Mail Server"
+msgstr "Сервак"
+
+#: ../lib/network/drakfirewall.pm:37
+#, c-format
+msgid "POP and IMAP Server"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:42
+#, fuzzy, c-format
+msgid "Telnet server"
+msgstr "X сэервер"
+
+#: ../lib/network/drakfirewall.pm:48
+#, c-format
+msgid "Windows Files Sharing (SMB)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:54
+#, fuzzy, c-format
+msgid "CUPS server"
+msgstr "Аддалены сэервер CUPS"
+
+#: ../lib/network/drakfirewall.pm:60
+#, c-format
+msgid "Echo request (ping)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
+#, fuzzy, c-format
+msgid "Firewall configuration"
+msgstr "Захаваць канфігурацыю меню"
+
+#: ../lib/network/drakfirewall.pm:166
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandriva Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized Mandriva Security Firewall distribution."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:172
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:189
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
+#, c-format
+msgid "Firewall"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:192
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:198
+#, 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.\n"
+"\n"
+"You can also give a range of ports (eg: 24300:24350/udp)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:208
+#, c-format
+msgid "Everything (no firewall)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:210
+#, fuzzy, c-format
+msgid "Other ports"
+msgstr "Парты вываду:"
+
+#: ../lib/network/drakfirewall.pm:211
+#, c-format
+msgid "Log firewall messages in system logs"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:256
+#, c-format
+msgid ""
+"You can be warned when someone accesses to a service or tries to intrude "
+"into your computer.\n"
+"Please select which network activities should be watched."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:261
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:29
+#, fuzzy, c-format
+msgid "No device found"
+msgstr "Няма значкі"
+
+#: ../lib/network/drakroam.pm:63 ../lib/network/drakroam.pm:161
+#, fuzzy, c-format
+msgid "Please enter settings for network"
+msgstr "Інфармацыя аб DMA"
+
+#: ../lib/network/drakroam.pm:67 ../lib/network/netconnect.pm:177
+#, fuzzy, c-format
+msgid "Configuring device..."
+msgstr "Настройка IDE"
+
+#: ../lib/network/drakroam.pm:95
+#, c-format
+msgid "Hostname changed to \"%s\""
+msgstr ""
+
+#: ../lib/network/drakroam.pm:108 ../lib/network/netconnect.pm:209
+#, fuzzy, c-format
+msgid "Scanning for networks..."
+msgstr "Пачатковы сектар:"
+
+#: ../lib/network/drakroam.pm:200
+#, c-format
+msgid "Connecting..."
+msgstr "Далучэньне..."
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Disconnect"
+msgstr "Адлучаць"
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Connect"
+msgstr "Далучэньне"
+
+#: ../lib/network/drakroam.pm:250
+#, fuzzy, c-format
+msgid "Disconnecting..."
+msgstr "Настройка IDE"
+
+#: ../lib/network/drakroam.pm:279
+#, c-format
+msgid "SSID"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:280
+#, c-format
+msgid "Signal strength"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:281
+#, c-format
+msgid "Encryption"
+msgstr "Шыфраваньне"
+
+#: ../lib/network/drakroam.pm:335 ../lib/network/netconnect.pm:761
+#, fuzzy, c-format
+msgid "Wireless connection"
+msgstr "Канфігурацыя"
+
+#: ../lib/network/drakroam.pm:350
+#, c-format
+msgid "Configure"
+msgstr "Настройка"
+
+#: ../lib/network/drakroam.pm:352
+#, c-format
+msgid "Refresh"
+msgstr "Аднавіць"
+
+#: ../lib/network/drakvpn.pm:30
+#, fuzzy, c-format
+msgid "VPN configuration"
+msgstr "Канфігурацыя"
+
+#: ../lib/network/drakvpn.pm:34
+#, fuzzy, c-format
+msgid "Choose the VPN type"
+msgstr "Выбар новых памераў"
+
+#: ../lib/network/drakvpn.pm:49
+#, c-format
+msgid "Initializing tools and detecting devices for %s..."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:52
+#, fuzzy, c-format
+msgid "Unable to initialize %s connection type!"
+msgstr "Выбар тыпу злучэння прынтэру"
+
+#: ../lib/network/drakvpn.pm:60
+#, c-format
+msgid "Please select an existing VPN connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:64
+#, fuzzy, c-format
+msgid "Configure a new connection..."
+msgstr "Настройка сеткі"
+
+#: ../lib/network/drakvpn.pm:66
+#, fuzzy, c-format
+msgid "New name"
+msgstr "Уласнае імя"
+
+#: ../lib/network/drakvpn.pm:70
+#, c-format
+msgid "You must select an existing connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:81
+#, fuzzy, c-format
+msgid "Please enter the required key(s)"
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
+
+#: ../lib/network/drakvpn.pm:86
+#, fuzzy, c-format
+msgid "Please enter the settings of your VPN connection"
+msgstr "Немагчыма адчыніць файл %s\n"
+
+#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#, c-format
+msgid "Do you want to start the connection now?"
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:100
+#, fuzzy, c-format
+msgid "Connection failed."
+msgstr "Імя злучэння"
+
+#: ../lib/network/drakvpn.pm:108
+#, c-format
+msgid ""
+"The VPN connection is now configured.\n"
+"\n"
+"This VPN connection can be automatically started together with a network "
+"connection.\n"
+"It can be done by reconfiguring the network connection and selecting this "
+"VPN connection.\n"
+msgstr ""
+
+#: ../lib/network/ifw.pm:129
+#, fuzzy, c-format
+msgid "Port scanning"
+msgstr "Нічога"
+
+#: ../lib/network/ifw.pm:130
+#, fuzzy, c-format
+msgid "Service attack"
+msgstr "Кіраваньне сэрвісамі"
+
+#: ../lib/network/ifw.pm:131
+#, fuzzy, c-format
+msgid "Password cracking"
+msgstr "Паўтарыце пароль"
+
+#: ../lib/network/ifw.pm:132
+#, c-format
+msgid "\"%s\" attack"
+msgstr ""
+
+#: ../lib/network/ifw.pm:134
+#, c-format
+msgid "A port scanning attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:135
+#, fuzzy, c-format
+msgid "The %s service has been attacked by %s."
+msgstr "Гэтая падзея была зьменена."
+
+#: ../lib/network/ifw.pm:136
+#, c-format
+msgid "A password cracking attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:137
+#, fuzzy, c-format
+msgid "A \"%s\" attack has been attempted by %s"
+msgstr "Гэтая падзея была зьменена."
+
+#: ../lib/network/ifw.pm:146
+#, c-format
+msgid ""
+"The \"%s\" application is trying to make a service (%s) available to the "
+"network."
+msgstr ""
+
+#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
+#: ../lib/network/ifw.pm:150
+#, fuzzy, c-format
+msgid "port %d"
+msgstr "Цыклічна"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#, fuzzy, c-format
+msgid "Manual"
+msgstr "Студзень"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
+#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
+#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
+#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#: ../lib/network/netconnect.pm:638
+#, c-format
+msgid "Automatic"
+msgstr "Аўтаматычна"
+
+#: ../lib/network/ndiswrapper.pm:27
+#, c-format
+msgid "No device supporting the %s ndiswrapper driver is present!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:33
+#, c-format
+msgid "Please select the Windows driver (.inf file)"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:42
+#, c-format
+msgid "Unable to install the %s ndiswrapper driver!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:86
+#, c-format
+msgid "Unable to load the ndiswrapper module!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:92
+#, c-format
+msgid ""
+"The selected device has already been configured with the %s driver.\n"
+"Do you really want to use a ndiswrapper driver?"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:102
+#, c-format
+msgid "Unable to find the ndiswrapper interface!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:115
+#, fuzzy, c-format
+msgid "Choose an ndiswrapper driver"
+msgstr "X сэервер"
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Use the ndiswrapper driver %s"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:118
+#, fuzzy, c-format
+msgid "Install a new driver"
+msgstr "Усталяванне сістэмы"
+
+#: ../lib/network/ndiswrapper.pm:129
+#, c-format
+msgid "Select a device:"
+msgstr ""
+
+#: ../lib/network/netcenter.pm:55
+#, fuzzy, c-format
+msgid "Network Center"
+msgstr "Сеткавы інтэрфейс"
+
+#: ../lib/network/netconnect.pm:37
+#, c-format
+msgid "United States"
+msgstr "Злучаныя Штаты"
+
+#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
+#: ../lib/network/netconnect.pm:507
+#, c-format
+msgid "Manual choice"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:60
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Унутраная ISDN карта"
+
+#: ../lib/network/netconnect.pm:65
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:123
+#, fuzzy, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Выбар раздзелаў для фарматавання"
+
+#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
+#: ../lib/network/netconnect.pm:788
+#, fuzzy, c-format
+msgid "Select the network interface to configure:"
+msgstr "Пазначце сеткавы інтэрфейс"
+
+#: ../lib/network/netconnect.pm:164
+#, c-format
+msgid "No device can be found for this connection type."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:173
+#, fuzzy, c-format
+msgid "Hardware Configuration"
+msgstr "Канфігурацыя сеткі"
+
+#: ../lib/network/netconnect.pm:194
+#, c-format
+msgid "Please select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:212
+#, c-format
+msgid "Please select your network:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:241
+#, c-format
+msgid ""
+"Please select your connection protocol.\n"
+"If you do not know it, keep the preselected protocol."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#, c-format
+msgid "Connection control"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Connection Configuration"
+msgstr "Настройка далучэння да Інтэрнэту"
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Калі ласка, запоўніце ці пазначце поле ніжэй"
+
+#: ../lib/network/netconnect.pm:318
+#, c-format
+msgid "Your personal phone number"
+msgstr "Ваш асабісты тэлефонны нумар"
+
+#: ../lib/network/netconnect.pm:319
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Імя правайдару, напрыклад правайдар.net"
+
+#: ../lib/network/netconnect.pm:321
+#, fuzzy, c-format
+msgid "Provider DNS 1 (optional)"
+msgstr "Опцыі прынтэру"
+
+#: ../lib/network/netconnect.pm:322
+#, fuzzy, c-format
+msgid "Provider DNS 2 (optional)"
+msgstr "Опцыі прынтэру"
+
+#: ../lib/network/netconnect.pm:332
+#, c-format
+msgid "Card IO_1"
+msgstr "IO_1 карты"
+
+#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#, fuzzy, c-format
+msgid "External ISDN modem"
+msgstr "Унутраная ISDN карта"
+
+#: ../lib/network/netconnect.pm:384
+#, fuzzy, c-format
+msgid "Select a device!"
+msgstr "Абярыце файл"
+
+#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
+#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid "ISDN Configuration"
+msgstr "Настройка ISDN"
+
+#: ../lib/network/netconnect.pm:394
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Які тып карты вы маеце?"
+
+#: ../lib/network/netconnect.pm:404
+#, 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 карту, велічыні на наступным экране павінны быць "
+"сапраўднымі.\n"
+"\n"
+"Калі вы маеце PCMCIA карту, вы павінны ведаць irq і io вашай карты.\n"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Continue"
+msgstr "Працягнуць"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Abort"
+msgstr "Адмяніць"
+
+#: ../lib/network/netconnect.pm:414
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:432
+#, c-format
+msgid ""
+"A CAPI driver is available for this modem. This CAPI driver can offer more "
+"capabilities than the free driver (like sending faxes). Which driver do you "
+"want to use?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:446
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Які пратакол вы жадаеце выкарыстоўваць?"
+
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it is not listed, choose Unlisted."
+msgstr ""
+"Абярыце вашага правайдара.\n"
+"калі яго няма ў гэтым спісе, абярыце тып ‟Іншы”"
+
+#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
+#, fuzzy, c-format
+msgid "Provider:"
+msgstr "Прынтэр"
+
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid ""
+"Your modem is not supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:490
+#, fuzzy, c-format
+msgid "Select the modem to configure:"
+msgstr "Пазначце карыстальнікаў каб аб'яднаць у гэтыю групу"
+
+#: ../lib/network/netconnect.pm:492
+#, c-format
+msgid "Modem"
+msgstr "Мадэм"
+
+#: ../lib/network/netconnect.pm:527
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
+
+#: ../lib/network/netconnect.pm:556
+#, c-format
+msgid "Select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:580
+#, fuzzy, c-format
+msgid "Dialup: account options"
+msgstr "Дазволіць тэрмін дзеяньня запісу"
+
+#: ../lib/network/netconnect.pm:583
+#, c-format
+msgid "Connection name"
+msgstr "Імя злучэння"
+
+#: ../lib/network/netconnect.pm:584
+#, c-format
+msgid "Phone number"
+msgstr "Нумар тэлефону"
+
+#: ../lib/network/netconnect.pm:585
+#, c-format
+msgid "Login ID"
+msgstr "Імя (login ID)"
+
+#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
+#, fuzzy, c-format
+msgid "Dialup: IP parameters"
+msgstr "Настроіць проксі сэрвэры"
+
+#: ../lib/network/netconnect.pm:603
+#, fuzzy, c-format
+msgid "IP parameters"
+msgstr "Інтэрнэт"
+
+#: ../lib/network/netconnect.pm:605
+#, fuzzy, c-format
+msgid "Subnet mask"
+msgstr "Маска сеткі"
+
+#: ../lib/network/netconnect.pm:617
+#, c-format
+msgid "Dialup: DNS parameters"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:620
+#, c-format
+msgid "DNS"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:621
+#, c-format
+msgid "Domain name"
+msgstr "Імя дамену"
+
+#: ../lib/network/netconnect.pm:624
+#, c-format
+msgid "Set hostname from IP"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:637
+#, fuzzy, c-format
+msgid "Gateway IP address"
+msgstr "IP адрас"
+
+#: ../lib/network/netconnect.pm:670
+#, fuzzy, c-format
+msgid "Automatically at boot"
+msgstr "Аўтаматычны"
+
+#: ../lib/network/netconnect.pm:672
+#, c-format
+msgid "By using Net Applet in the system tray"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:674
+#, c-format
+msgid "Manually (the interface would still be activated at boot)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:683
+#, fuzzy, c-format
+msgid "How do you want to dial this connection?"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
+
+#: ../lib/network/netconnect.pm:696
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Ці жадаеце зараз паспрабаваць далучыцца да Інтэрнэту?"
+
+#: ../lib/network/netconnect.pm:723
+#, fuzzy, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Далучэнне да Інтэрнэту"
+
+#: ../lib/network/netconnect.pm:724
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:725
+#, c-format
+msgid ""
+"The system does not seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:740
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:743
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:744
+#, c-format
+msgid ""
+"Problems occurred during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection does not "
+"work, you might want to relaunch the configuration."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:756
+#, c-format
+msgid "Sagem USB modem"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
+#, fuzzy, c-format
+msgid "Bewan modem"
+msgstr "Рэжым злучэння"
+
+#: ../lib/network/netconnect.pm:759
+#, c-format
+msgid "ECI Hi-Focus modem"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:760
+#, fuzzy, c-format
+msgid "LAN connection"
+msgstr "Дзеяньні"
+
+#: ../lib/network/netconnect.pm:762
+#, fuzzy, c-format
+msgid "ADSL connection"
+msgstr "Дзеяньні"
+
+#: ../lib/network/netconnect.pm:763
+#, fuzzy, c-format
+msgid "Cable connection"
+msgstr "Размеркаванне"
+
+#: ../lib/network/netconnect.pm:764
+#, fuzzy, c-format
+msgid "ISDN connection"
+msgstr "Дзеяньні"
+
+#: ../lib/network/netconnect.pm:765
+#, fuzzy, c-format
+msgid "Modem connection"
+msgstr "Размеркаванне"
+
+#: ../lib/network/netconnect.pm:766
+#, c-format
+msgid "DVB connection"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:768
+#, c-format
+msgid "(detected on port %s)"
+msgstr ""
+
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected %s)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:770
+#, c-format
+msgid "(detected)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:771
+#, c-format
+msgid "Network Configuration"
+msgstr "Канфігурацыя сеткі"
+
+#: ../lib/network/netconnect.pm:772
+#, c-format
+msgid "Zeroconf hostname resolution"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:773
+#, c-format
+msgid ""
+"If desired, enter a Zeroconf hostname.\n"
+"This is the name your machine will use to advertise any of\n"
+"its shared resources that are not managed by the network.\n"
+"It is not necessary on most networks."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:777
+#, fuzzy, c-format
+msgid "Zeroconf Host name"
+msgstr "Імя машыны"
+
+#: ../lib/network/netconnect.pm:778
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:779
+#, 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 ""
+
+#: ../lib/network/netconnect.pm:782
+#, fuzzy, c-format
+msgid "The network needs to be restarted. Do you want to restart it?"
+msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?"
+
+#: ../lib/network/netconnect.pm:783
+#, c-format
+msgid ""
+"A problem occurred while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:784
+#, c-format
+msgid ""
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press \"%s\" to continue."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:785
+#, fuzzy, c-format
+msgid "Configuration is complete, do you want to apply settings?"
+msgstr "Якую канфігурацыю Xorg вы жадаеце атрымаць?"
+
+#: ../lib/network/netconnect.pm:786
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:787
+#, fuzzy, c-format
+msgid "Internet connection"
+msgstr "Сумеснае Інтэрнэт-злучэнне"
+
+#: ../lib/network/netconnect.pm:789
+#, fuzzy, c-format
+msgid "Configuring network device %s (driver %s)"
+msgstr "Настрйка драйверу Solaris"
+
+#: ../lib/network/netconnect.pm:790
+#, c-format
+msgid ""
+"The following protocols can be used to configure a LAN connection. Please "
+"choose the one you want to use."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:791
+#, 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 ""
+"Увядзіце імя сваёй машыны (host).\n"
+"Імя вашай машыны павінна быць зададзена поўнасцю,\n"
+"напрыклад ‟mybox.mylab.myco.com”.\n"
+"Вы можаце таксама ўвесці IP адрас шлюзу, калі ён у вас ёсць."
+
+#: ../lib/network/netconnect.pm:796
+#, c-format
+msgid "Last but not least you can also type in your DNS server IP addresses."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:797
+#, fuzzy, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
+
+#: ../lib/network/netconnect.pm:799
+#, c-format
+msgid "Gateway device"
+msgstr "Прылада-шлюз"
+
+#: ../lib/network/netconnect.pm:813
+#, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/network.pm:429
+#, c-format
+msgid "Proxies configuration"
+msgstr "Настройка proxy кэшуючых сэервераў"
+
+#: ../lib/network/network.pm:430
+#, c-format
+msgid ""
+"Here you can set up your proxies configuration (eg: http://"
+"my_caching_server:8080)"
+msgstr ""
+
+#: ../lib/network/network.pm:431
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../lib/network/network.pm:432
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: ../lib/network/network.pm:433
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: ../lib/network/network.pm:434
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../lib/network/network.pm:435
+#, fuzzy, c-format
+msgid "No proxy for (comma separated list):"
+msgstr "Фарматаванне раздзелаў"
+
+#: ../lib/network/network.pm:440
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "Proxy павінен быць http://..."
+
+#: ../lib/network/network.pm:441
+#, fuzzy, c-format
+msgid "Proxy should be http://... or https://..."
+msgstr "Proxy павінен быць http://..."
+
+#: ../lib/network/network.pm:442
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:61
+#, c-format
+msgid ""
+"Please select the interfaces that will be protected by the firewall.\n"
+"\n"
+"All interfaces directly connected to Internet should be selected,\n"
+"while interfaces connected to a local network may be unselected.\n"
+"\n"
+"Which interfaces should be protected?\n"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:136
+#, c-format
+msgid "Keep custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:137
+#, c-format
+msgid "Drop custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:142
+#, c-format
+msgid ""
+"Your firewall configuration has been manually edited and contains\n"
+"rules that may conflict with the configuration that has just been set up.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:135
+#, c-format
+msgid "Some components (%s) are required but aren't available for %s hardware."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:136
+#, c-format
+msgid "Some packages (%s) are required but aren't available."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:138
+#, c-format
+msgid ""
+"These packages can be found in Mandriva Club or in Mandriva commercial "
+"releases."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:139
+#, c-format
+msgid "The following component is missing: %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:141
+#, c-format
+msgid ""
+"The required files can also be installed from this URL:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:183
+#, fuzzy, c-format
+msgid "Use a floppy"
+msgstr "Захаванне на дыскету"
+
+#: ../lib/network/thirdparty.pm:179 ../lib/network/thirdparty.pm:186
+#, fuzzy, c-format
+msgid "Use my Windows partition"
+msgstr "Вылічэнне межаў файлавай сістэмы Windows"
+
+#: ../lib/network/thirdparty.pm:180
+#, c-format
+msgid "Select file"
+msgstr "Абярыце файл"
+
+#: ../lib/network/thirdparty.pm:191
+#, c-format
+msgid "Please select the firmware file (for example: %s)"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:215
+#, fuzzy, c-format
+msgid "Unable to find \"%s\" on your Windows system!"
+msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
+
+#: ../lib/network/thirdparty.pm:217
+#, c-format
+msgid "No Windows system has been detected!"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:227
+#, fuzzy, c-format
+msgid "Insert floppy"
+msgstr "Усталёўка"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid "Next"
+msgstr "Далей"
+
+#: ../lib/network/thirdparty.pm:238
+#, fuzzy, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "Куды вы жадаеце манціраваць прыладу %s?"
+
+#: ../lib/network/thirdparty.pm:327
+#, c-format
+msgid "Looking for required software and drivers..."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:338
+#, fuzzy, c-format
+msgid "Please wait, running device configuration commands..."
+msgstr "Канфігурацыя сыстэмы друку (прынтэры, заданьні, клясы, ...)"
+
+#: ../lib/network/vpn/openvpn.pm:107
+#, c-format
+msgid "X509 Public Key Infrastructure"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:108
+#, c-format
+msgid "Static Key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:115
+#, c-format
+msgid "Type"
+msgstr "Тып"
+
+#. -PO: please don't translate the CA acronym
+#: ../lib/network/vpn/openvpn.pm:142
+#, c-format
+msgid "Certificate Authority (CA)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:148
+#, c-format
+msgid "Certificate"
+msgstr "Сэртыфікат"
+
+#: ../lib/network/vpn/openvpn.pm:154
+#, c-format
+msgid "Key"
+msgstr "Клявіша"
+
+#: ../lib/network/vpn/openvpn.pm:160
+#, fuzzy, c-format
+msgid "TLS control channel key"
+msgstr "Кантролер гучнасьці"
+
+#: ../lib/network/vpn/openvpn.pm:167
+#, c-format
+msgid "Key direction"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:175
+#, c-format
+msgid "Authenticate using username and password"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:181
+#, c-format
+msgid "Check server certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:187
+#, c-format
+msgid "Cipher algorithm"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:191
+#, c-format
+msgid "Default"
+msgstr "Па дамаўленню"
+
+#: ../lib/network/vpn/openvpn.pm:195
+#, c-format
+msgid "Size of cipher key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:206
+#, fuzzy, c-format
+msgid "Get from server"
+msgstr "X сэервер"
+
+#: ../lib/network/vpn/openvpn.pm:216
+#, fuzzy, c-format
+msgid "Gateway port"
+msgstr "Шлюз"
+
+#: ../lib/network/vpn/openvpn.pm:232
+#, fuzzy, c-format
+msgid "Remote IP address"
+msgstr "IP адрас"
+
+#: ../lib/network/vpn/openvpn.pm:237
+#, fuzzy, c-format
+msgid "Use TCP protocol"
+msgstr "Пратакол"
+
+#: ../lib/network/vpn/openvpn.pm:243
+#, c-format
+msgid "Virtual network device type"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:250
+#, c-format
+msgid "Virtual network device number (optional)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:365
+#, c-format
+msgid "Starting connection.."
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:380
+#, c-format
+msgid "Please insert your token"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:9
+#, c-format
+msgid "Cisco VPN Concentrator"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:43
+#, fuzzy, c-format
+msgid "Group name"
+msgstr "ID групы"
+
+#: ../lib/network/vpn/vpnc.pm:47
+#, c-format
+msgid "Group secret"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:52
+#, c-format
+msgid "Username"
+msgstr "Карыстальнік"
+
+#: ../lib/network/vpn/vpnc.pm:61
+#, c-format
+msgid "Use Cisco-UDP encapsulation"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:67
+#, c-format
+msgid "Use specific UDP port"
+msgstr ""
diff --git a/po/bg.po b/po/bg.po
index 7ba7c82..5039e2a 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-bg\n"
-"POT-Creation-Date: 2007-01-10 15:18+0100\n"
+"POT-Creation-Date: 2007-08-09 11:47+0200\n"
"PO-Revision-Date: 2004-09-15 13:27+0200\n"
"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
@@ -18,2598 +18,522 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: ../lib/network/connection.pm:16
-#, c-format
-msgid "Unknown connection type"
-msgstr "Неизвестен тип връзка"
-
-#: ../lib/network/connection.pm:115
-#, c-format
-msgid "Network access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:116
-#, c-format
-msgid "Access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:117
-#, c-format
-msgid "Address settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:149 ../lib/network/drakvpn.pm:62
-#: ../lib/network/vpn/openvpn.pm:365 ../lib/network/vpn/openvpn.pm:379
-#: ../lib/network/vpn/openvpn.pm:390 ../tools/net_applet:129
+#: ../bin/drakconnect:61 ../lib/network/netconnect.pm:118
#, fuzzy, c-format
-msgid "VPN connection"
-msgstr "LAN връзка"
-
-#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
-#: ../lib/network/connection/wireless.pm:37 ../lib/network/vpn/openvpn.pm:127
-#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
-#, c-format
-msgid "None"
-msgstr "Без"
-
-#: ../lib/network/connection.pm:163
-#, c-format
-msgid "Allow users to manage the connection"
-msgstr ""
-
-#: ../lib/network/connection.pm:164
-#, c-format
-msgid "Start the connection at boot"
-msgstr ""
+msgid "Network & Internet Configuration"
+msgstr "Настройка на мрежата"
-#: ../lib/network/connection.pm:165 ../tools/drakconnect:462
+#: ../bin/drakconnect:81
#, c-format
-msgid "Metric"
-msgstr "Метрика"
-
-#: ../lib/network/connection.pm:230
-#, fuzzy, c-format
-msgid "Link detected on interface %s"
-msgstr "засечен на порт %s"
+msgid "Network configuration (%d adapters)"
+msgstr "Настройка на мрежата (%d адаптера)"
-#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:278
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Link beat lost on interface %s"
-msgstr ""
+msgid "Gateway:"
+msgstr "Gateway:"
-#: ../lib/network/connection/cable.pm:13
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Cable"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:14
-#, fuzzy, c-format
-msgid "Cable modem"
-msgstr "Модел на карта:"
+msgid "Interface:"
+msgstr "Интерфейс:"
-#: ../lib/network/connection/cable.pm:45
+#: ../bin/drakconnect:97 ../bin/net_monitor:119
#, c-format
-msgid "Use BPALogin (needed for Telstra)"
+msgid "Wait please"
msgstr ""
-#: ../lib/network/connection/cable.pm:48 ../lib/network/netconnect.pm:587
-#: ../tools/drakconnect:482
+#: ../bin/drakconnect:113 ../bin/drakinvictus:105
#, c-format
-msgid "Authentication"
-msgstr "Идентификация"
+msgid "Interface"
+msgstr "Интерфейс"
-#: ../lib/network/connection/cable.pm:50 ../lib/network/connection/ppp.pm:22
-#: ../lib/network/netconnect.pm:326 ../lib/network/vpn/openvpn.pm:393
-#: ../tools/drakconnect:492
+#: ../bin/drakconnect:113 ../bin/drakconnect:321 ../bin/drakconnect:888
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:125
+#: ../lib/network/netconnect.pm:604 ../lib/network/vpn/openvpn.pm:221
#, c-format
-msgid "Account Login (user name)"
-msgstr "Име на акаунта (потебителско име)"
+msgid "IP address"
+msgstr "IP адрес"
-#: ../lib/network/connection/cable.pm:52 ../lib/network/connection/ppp.pm:23
-#: ../lib/network/netconnect.pm:327 ../lib/network/vpn/openvpn.pm:394
-#: ../tools/drakconnect:493
+#: ../bin/drakconnect:113 ../bin/drakconnect:305 ../bin/drakconnect:563
+#: ../bin/drakids:252 ../bin/drakvpn-old:839 ../lib/network/netconnect.pm:448
#, c-format
-msgid "Account Password"
-msgstr "Парола на акаунта"
+msgid "Protocol"
+msgstr "Протокол"
-#: ../lib/network/connection/cellular.pm:47
+#: ../bin/drakconnect:113 ../lib/network/netconnect.pm:434
#, c-format
-msgid "Access Point Name"
-msgstr ""
+msgid "Driver"
+msgstr "Драйвер"
-#: ../lib/network/connection/cellular_bluetooth.pm:10
+#: ../bin/drakconnect:113
#, c-format
-msgid "Bluetooth"
-msgstr ""
+msgid "State"
+msgstr "Състояние"
-#: ../lib/network/connection/cellular_bluetooth.pm:11
+#: ../bin/drakconnect:130
#, c-format
-msgid "Bluetooth Dial Up Networking"
-msgstr ""
+msgid "Hostname: "
+msgstr "Име на хост: "
-#: ../lib/network/connection/cellular_card.pm:8
+#: ../bin/drakconnect:132
#, c-format
-msgid "GPRS/Edge/3G"
-msgstr ""
+msgid "Configure hostname..."
+msgstr "Настройка на име на хост..."
-#: ../lib/network/connection/cellular_card.pm:67
-#: ../lib/network/vpn/openvpn.pm:391
+#: ../bin/drakconnect:146 ../bin/drakconnect:851
#, c-format
-msgid "PIN number"
-msgstr ""
-
-#: ../lib/network/connection/cellular_card.pm:130
-#, fuzzy, c-format
-msgid "Unable to open device %s"
-msgstr "Не мога да направя 'fork': %s"
-
-#: ../lib/network/connection/cellular_card.pm:155
-#, fuzzy, c-format
-msgid "Please check that your SIM card is inserted."
-msgstr "Моля, изберете порт към който свързан принтера ви."
+msgid "LAN configuration"
+msgstr "Настройка на LAN"
-#: ../lib/network/connection/cellular_card.pm:161
+#: ../bin/drakconnect:151
#, c-format
-msgid ""
-"You entered a wrong PIN code.\n"
-"Entering the wrong PIN code multiple times may lock your SIM card!"
-msgstr ""
+msgid "Configure Local Area Network..."
+msgstr "Настойка на локална мрежа ..."
-#: ../lib/network/connection/dvb.pm:12
+#: ../bin/drakconnect:157 ../bin/drakconnect:240 ../bin/draknfs:183
+#: ../bin/net_applet:138
#, c-format
-msgid "DVB"
-msgstr ""
+msgid "Help"
+msgstr "Помощ"
-#: ../lib/network/connection/dvb.pm:13
+#: ../bin/drakconnect:159 ../bin/drakconnect:241 ../bin/drakconnect:245
+#: ../bin/drakinvictus:140
#, c-format
-msgid "Satellite (DVB)"
-msgstr ""
+msgid "Apply"
+msgstr "Приложи"
-#: ../lib/network/connection/dvb.pm:56
+#: ../bin/drakconnect:161 ../bin/drakconnect:943 ../bin/drakconnect:1034
+#: ../bin/draknetprofile:106 ../bin/net_monitor:341
#, c-format
-msgid "Adapter card"
-msgstr ""
+msgid "Cancel"
+msgstr "Отказ"
-#: ../lib/network/connection/dvb.pm:57
+#: ../bin/drakconnect:162 ../bin/drakconnect:858 ../bin/drakconnect:945
+#: ../bin/drakconnect:1035 ../bin/draknetprofile:108 ../bin/net_monitor:342
#, c-format
-msgid "Net demux"
-msgstr ""
+msgid "Ok"
+msgstr "Ok"
-#: ../lib/network/connection/dvb.pm:58
+#: ../bin/drakconnect:164 ../bin/drakconnect:636 ../bin/drakgw:359
+#: ../bin/draksambashare:208 ../lib/network/drakroam.pm:200
+#: ../lib/network/drakroam.pm:250
#, c-format
-msgid "PID"
-msgstr "Процес"
+msgid "Please wait"
+msgstr "Моля изчакайте"
-#: ../lib/network/connection/ethernet.pm:10
+#: ../bin/drakconnect:166 ../bin/drakconnect:638
#, c-format
-msgid "Ethernet"
-msgstr ""
+msgid "Please Wait... Applying the configuration"
+msgstr "Моля, почакайте ... Прилагане на настройките"
-#: ../lib/network/connection/ethernet.pm:53
+#: ../bin/drakconnect:192
#, c-format
-msgid "Unable to find network interface for selected device (using %s driver)."
-msgstr ""
+msgid "Manage connections"
+msgstr "Настройка на връзките"
-#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#: ../bin/drakconnect:219 ../lib/network/drakroam.pm:346
#, c-format
-msgid "Manual configuration"
-msgstr "Ръчна настройка"
-
-#: ../lib/network/connection/ethernet.pm:62
-#, fuzzy, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "Автоматичен IP адрес"
+msgid "Device: "
+msgstr "Устройство: "
-#: ../lib/network/connection/ethernet.pm:116
+#: ../bin/drakconnect:302
#, fuzzy, c-format
-msgid "IP settings"
-msgstr "PLL настройки:"
-
-#: ../lib/network/connection/ethernet.pm:125 ../lib/network/netconnect.pm:604
-#: ../lib/network/vpn/openvpn.pm:221 ../tools/drakconnect:113
-#: ../tools/drakconnect:321 ../tools/drakconnect:887 ../tools/drakhosts:196
-#, c-format
-msgid "IP address"
-msgstr "IP адрес"
-
-#: ../lib/network/connection/ethernet.pm:129
-#, 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)."
-msgstr ""
-"Моля, въведете IP настройките за тази машина.\n"
-"Всяко устройство трябва да бъде въведено като IP адрес\n"
-"с точково-десетично означение (например, 1.2.3.4)."
+msgid "IP configuration"
+msgstr "CUPS конфигурация"
-#: ../lib/network/connection/ethernet.pm:132 ../tools/drakconnect:326
-#: ../tools/drakconnect:888 ../tools/drakgw:177
+#: ../bin/drakconnect:326 ../bin/drakconnect:889 ../bin/drakgw:177
+#: ../lib/network/connection/ethernet.pm:132
#, c-format
msgid "Netmask"
msgstr "Мрежова маска"
-#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:636
-#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
-#: ../tools/drakconnect:332
+#: ../bin/drakconnect:332 ../lib/network/connection/ethernet.pm:133
+#: ../lib/network/netconnect.pm:636 ../lib/network/vpn/openvpn.pm:212
+#: ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "Gateway"
-#: ../lib/network/connection/ethernet.pm:136 ../tools/drakconnect:382
-#, fuzzy, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DNS сървър IP"
-
-#: ../lib/network/connection/ethernet.pm:138
+#: ../bin/drakconnect:337
#, fuzzy, c-format
-msgid "DNS server 1"
-msgstr "DNS сървър"
-
-#: ../lib/network/connection/ethernet.pm:139
-#, fuzzy, c-format
-msgid "DNS server 2"
+msgid "DNS servers"
msgstr "DNS сървър"
-#: ../lib/network/connection/ethernet.pm:140
+#: ../bin/drakconnect:343
#, fuzzy, c-format
-msgid "Search domain"
+msgid "Search Domain"
msgstr "NIS домейн"
-#: ../lib/network/connection/ethernet.pm:141
-#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:143 ../tools/drakconnect:369
-#: ../tools/drakconnect:891
+#: ../bin/drakconnect:351 ../bin/drakvpn-old:837
#, c-format
-msgid "DHCP client"
-msgstr "DHCP клиент"
-
-#: ../lib/network/connection/ethernet.pm:144 ../tools/drakconnect:379
-#, fuzzy, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "Timeout на връзката (в сек)"
-
-#: ../lib/network/connection/ethernet.pm:145 ../tools/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:146 ../tools/drakconnect:384
-#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:147 ../tools/drakconnect:375
-#, c-format
-msgid "DHCP host name"
-msgstr "Име на DHCP хост"
-
-#: ../lib/network/connection/ethernet.pm:149
-#, c-format
-msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:160 ../tools/drakconnect:676
-#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+msgid "none"
+msgstr "няма"
-#: ../lib/network/connection/ethernet.pm:165 ../tools/drakconnect:680
+#: ../bin/drakconnect:351
#, fuzzy, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
+msgid "static"
+msgstr "Автоматичен IP адрес"
-#: ../lib/network/connection/ethernet.pm:170
+#: ../bin/drakconnect:351
#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr ""
+msgid "DHCP"
+msgstr "DHCP"
-#: ../lib/network/connection/ethernet.pm:176
+#: ../bin/drakconnect:369 ../bin/drakconnect:892
+#: ../lib/network/connection/ethernet.pm:143
#, c-format
-msgid "%s already in use\n"
-msgstr ""
+msgid "DHCP client"
+msgstr "DHCP клиент"
-#: ../lib/network/connection/ethernet.pm:200 ../tools/drakconnect:373
+#: ../bin/drakconnect:373 ../lib/network/connection/ethernet.pm:200
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Получаване на име от DHCP адрес"
-#: ../lib/network/connection/ethernet.pm:202 ../tools/drakhosts:196
-#, c-format
-msgid "Host name"
-msgstr "Име на хост:"
-
-#: ../lib/network/connection/ethernet.pm:220 ../tools/drakconnect:440
-#, c-format
-msgid "Network Hotplugging"
-msgstr "Мрежов Hotplugging"
-
-#: ../lib/network/connection/ethernet.pm:224
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:277
-#, c-format
-msgid "Link beat detected on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:280
-#, c-format
-msgid "Requesting a network address on interface %s (%s protocol)..."
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:281
-#, c-format
-msgid "Got a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:282
-#, c-format
-msgid "Failed to get a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:8
-#, c-format
-msgid "ISDN"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
-#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
-#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
-#: ../lib/network/netconnect.pm:562
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "Не знам"
-
-#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "PCI"
-
-#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "USB"
-
-#. -PO: POTS means "Plain old telephone service"
-#: ../lib/network/connection/pots.pm:10
-#, c-format
-msgid "POTS"
-msgstr ""
-
-#. -PO: POTS means "Plain old telephone service"
-#. -PO: remove it if it doesn't have an equivalent in your language
-#. -PO: for example, in French, it can be translated as "RTC"
-#: ../lib/network/connection/pots.pm:16
-#, c-format
-msgid "Analog telephone modem (POTS)"
-msgstr ""
-
-#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:74
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Script-based"
-msgstr "Базирана на скрипт"
-
-#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:75
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:76
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Terminal-based"
-msgstr "Базирана на терминал"
-
-#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:77
-#: ../tools/drakconnect:499
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:78
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: ../lib/network/connection/providers/cellular.pm:13
-#: ../lib/network/connection/providers/cellular.pm:18
-#: ../lib/network/connection/providers/cellular.pm:23
-#: ../lib/network/connection/providers/xdsl.pm:492
-#: ../lib/network/connection/providers/xdsl.pm:504
-#: ../lib/network/connection/providers/xdsl.pm:516
-#: ../lib/network/connection/providers/xdsl.pm:528
-#: ../lib/network/connection/providers/xdsl.pm:539
-#: ../lib/network/connection/providers/xdsl.pm:551
-#: ../lib/network/connection/providers/xdsl.pm:563
-#: ../lib/network/connection/providers/xdsl.pm:575
-#: ../lib/network/connection/providers/xdsl.pm:588
-#: ../lib/network/connection/providers/xdsl.pm:599
-#: ../lib/network/connection/providers/xdsl.pm:610
-#: ../lib/network/netconnect.pm:33
-#, c-format
-msgid "France"
-msgstr "Франция"
-
-#: ../lib/network/connection/providers/xdsl.pm:47
-#: ../lib/network/connection/providers/xdsl.pm:57
-#, c-format
-msgid "Algeria"
-msgstr "Алжир"
-
-#: ../lib/network/connection/providers/xdsl.pm:67
-#: ../lib/network/connection/providers/xdsl.pm:77
-#, c-format
-msgid "Argentina"
-msgstr "Аржентина"
-
-#: ../lib/network/connection/providers/xdsl.pm:87
-#: ../lib/network/connection/providers/xdsl.pm:96
-#: ../lib/network/connection/providers/xdsl.pm:105
-#, c-format
-msgid "Austria"
-msgstr "Австрия"
-
-#: ../lib/network/connection/providers/xdsl.pm:114
-#: ../lib/network/connection/providers/xdsl.pm:124
-#: ../lib/network/connection/providers/xdsl.pm:134
-#, c-format
-msgid "Australia"
-msgstr "Австралия"
-
-#: ../lib/network/connection/providers/xdsl.pm:144
-#: ../lib/network/connection/providers/xdsl.pm:153
-#: ../lib/network/connection/providers/xdsl.pm:164
-#: ../lib/network/connection/providers/xdsl.pm:173
-#: ../lib/network/connection/providers/xdsl.pm:182
-#: ../lib/network/netconnect.pm:36
-#, c-format
-msgid "Belgium"
-msgstr "Белгия"
-
-#: ../lib/network/connection/providers/xdsl.pm:191
-#: ../lib/network/connection/providers/xdsl.pm:201
-#: ../lib/network/connection/providers/xdsl.pm:210
-#: ../lib/network/connection/providers/xdsl.pm:219
-#, c-format
-msgid "Brazil"
-msgstr "Бразилия"
-
-#: ../lib/network/connection/providers/xdsl.pm:228
-#: ../lib/network/connection/providers/xdsl.pm:237
-#, c-format
-msgid "Bulgaria"
-msgstr "България"
-
-#: ../lib/network/connection/providers/xdsl.pm:246
-#: ../lib/network/connection/providers/xdsl.pm:255
-#: ../lib/network/connection/providers/xdsl.pm:264
-#: ../lib/network/connection/providers/xdsl.pm:273
-#: ../lib/network/connection/providers/xdsl.pm:282
-#: ../lib/network/connection/providers/xdsl.pm:291
-#: ../lib/network/connection/providers/xdsl.pm:300
-#: ../lib/network/connection/providers/xdsl.pm:309
-#: ../lib/network/connection/providers/xdsl.pm:318
-#: ../lib/network/connection/providers/xdsl.pm:327
-#: ../lib/network/connection/providers/xdsl.pm:336
-#: ../lib/network/connection/providers/xdsl.pm:345
-#: ../lib/network/connection/providers/xdsl.pm:354
-#: ../lib/network/connection/providers/xdsl.pm:363
-#: ../lib/network/connection/providers/xdsl.pm:372
-#: ../lib/network/connection/providers/xdsl.pm:381
-#: ../lib/network/connection/providers/xdsl.pm:390
-#: ../lib/network/connection/providers/xdsl.pm:399
-#: ../lib/network/connection/providers/xdsl.pm:408
-#: ../lib/network/connection/providers/xdsl.pm:417
-#, c-format
-msgid "China"
-msgstr "Китай"
-
-#: ../lib/network/connection/providers/xdsl.pm:426
-#: ../lib/network/connection/providers/xdsl.pm:436
-#, c-format
-msgid "Czech Republic"
-msgstr "Чешка Република"
-
-#: ../lib/network/connection/providers/xdsl.pm:446
-#: ../lib/network/connection/providers/xdsl.pm:455
-#: ../lib/network/connection/providers/xdsl.pm:464
-#, c-format
-msgid "Denmark"
-msgstr "Дания"
-
-#: ../lib/network/connection/providers/xdsl.pm:473
-#, c-format
-msgid "Egypt"
-msgstr "Египет"
-
-#: ../lib/network/connection/providers/xdsl.pm:483
-#, c-format
-msgid "Finland"
-msgstr "Финландия"
-
-#: ../lib/network/connection/providers/xdsl.pm:621
-#: ../lib/network/connection/providers/xdsl.pm:630
-#: ../lib/network/connection/providers/xdsl.pm:640
-#, c-format
-msgid "Germany"
-msgstr "Германия"
-
-#: ../lib/network/connection/providers/xdsl.pm:650
-#, c-format
-msgid "Greece"
-msgstr "Гърция"
-
-#: ../lib/network/connection/providers/xdsl.pm:659
-#, c-format
-msgid "Hungary"
-msgstr "Унгария"
-
-#: ../lib/network/connection/providers/xdsl.pm:668
-#, c-format
-msgid "Ireland"
-msgstr "Ирландия"
-
-#: ../lib/network/connection/providers/xdsl.pm:677
-#, c-format
-msgid "Israel"
-msgstr "Израел"
-
-#: ../lib/network/connection/providers/xdsl.pm:687
-#, c-format
-msgid "India"
-msgstr "Индия"
-
-#: ../lib/network/connection/providers/xdsl.pm:696
-#: ../lib/network/connection/providers/xdsl.pm:705
-#, c-format
-msgid "Iceland"
-msgstr "Исландия"
-
-#: ../lib/network/connection/providers/xdsl.pm:714
-#: ../lib/network/connection/providers/xdsl.pm:725
-#: ../lib/network/connection/providers/xdsl.pm:735
-#: ../lib/network/connection/providers/xdsl.pm:746
-#: ../lib/network/netconnect.pm:35
-#, c-format
-msgid "Italy"
-msgstr "Италия"
-
-#: ../lib/network/connection/providers/xdsl.pm:758
-#, c-format
-msgid "Sri Lanka"
-msgstr "Шри Ланка"
-
-#: ../lib/network/connection/providers/xdsl.pm:770
-#, c-format
-msgid "Lithuania"
-msgstr "Литва"
-
-#: ../lib/network/connection/providers/xdsl.pm:779
-#: ../lib/network/connection/providers/xdsl.pm:789
-#, c-format
-msgid "Mauritius"
-msgstr "Мавриций"
-
-#: ../lib/network/connection/providers/xdsl.pm:800
-#, c-format
-msgid "Morocco"
-msgstr "Мароко"
-
-#: ../lib/network/connection/providers/xdsl.pm:810
-#: ../lib/network/connection/providers/xdsl.pm:819
-#: ../lib/network/connection/providers/xdsl.pm:828
-#: ../lib/network/connection/providers/xdsl.pm:837
-#: ../lib/network/netconnect.pm:34
-#, c-format
-msgid "Netherlands"
-msgstr "Холандия"
-
-#: ../lib/network/connection/providers/xdsl.pm:846
-#: ../lib/network/connection/providers/xdsl.pm:852
-#: ../lib/network/connection/providers/xdsl.pm:858
-#: ../lib/network/connection/providers/xdsl.pm:864
-#: ../lib/network/connection/providers/xdsl.pm:870
-#: ../lib/network/connection/providers/xdsl.pm:876
-#: ../lib/network/connection/providers/xdsl.pm:882
-#, c-format
-msgid "Norway"
-msgstr "Норвегия"
-
-#: ../lib/network/connection/providers/xdsl.pm:890
-#, c-format
-msgid "Pakistan"
-msgstr "Пакистан"
-
-#: ../lib/network/connection/providers/xdsl.pm:901
-#: ../lib/network/connection/providers/xdsl.pm:911
-#, c-format
-msgid "Poland"
-msgstr "Полша"
-
-#: ../lib/network/connection/providers/xdsl.pm:922
-#, c-format
-msgid "Portugal"
-msgstr "Португалия"
-
-#: ../lib/network/connection/providers/xdsl.pm:931
-#, c-format
-msgid "Russia"
-msgstr "Русия"
-
-#: ../lib/network/connection/providers/xdsl.pm:942
-#, c-format
-msgid "Singapore"
-msgstr "Сингапур"
-
-#: ../lib/network/connection/providers/xdsl.pm:951
-#, c-format
-msgid "Senegal"
-msgstr "Сенегал"
-
-#: ../lib/network/connection/providers/xdsl.pm:961
-#, c-format
-msgid "Slovenia"
-msgstr "Словения"
-
-#: ../lib/network/connection/providers/xdsl.pm:972
-#: ../lib/network/connection/providers/xdsl.pm:984
-#: ../lib/network/connection/providers/xdsl.pm:996
-#: ../lib/network/connection/providers/xdsl.pm:1009
-#: ../lib/network/connection/providers/xdsl.pm:1019
-#: ../lib/network/connection/providers/xdsl.pm:1029
-#: ../lib/network/connection/providers/xdsl.pm:1040
-#: ../lib/network/connection/providers/xdsl.pm:1050
-#: ../lib/network/connection/providers/xdsl.pm:1060
-#: ../lib/network/connection/providers/xdsl.pm:1070
-#: ../lib/network/connection/providers/xdsl.pm:1080
-#: ../lib/network/connection/providers/xdsl.pm:1090
-#: ../lib/network/connection/providers/xdsl.pm:1101
-#: ../lib/network/connection/providers/xdsl.pm:1112
-#: ../lib/network/connection/providers/xdsl.pm:1124
-#: ../lib/network/connection/providers/xdsl.pm:1136
-#, c-format
-msgid "Spain"
-msgstr "Испания"
-
-#: ../lib/network/connection/providers/xdsl.pm:1149
-#, c-format
-msgid "Sweden"
-msgstr "Швеция"
-
-#: ../lib/network/connection/providers/xdsl.pm:1158
-#: ../lib/network/connection/providers/xdsl.pm:1167
-#: ../lib/network/connection/providers/xdsl.pm:1177
-#, c-format
-msgid "Switzerland"
-msgstr "Швейцария"
-
-#: ../lib/network/connection/providers/xdsl.pm:1186
+#: ../bin/drakconnect:375 ../lib/network/connection/ethernet.pm:147
#, c-format
-msgid "Thailand"
-msgstr "Тайланд"
-
-#: ../lib/network/connection/providers/xdsl.pm:1196
-#, c-format
-msgid "Tunisia"
-msgstr "Тунис"
-
-#: ../lib/network/connection/providers/xdsl.pm:1207
-#, c-format
-msgid "Turkey"
-msgstr "Турция"
-
-#: ../lib/network/connection/providers/xdsl.pm:1220
-#, c-format
-msgid "United Arab Emirates"
-msgstr "Обединени Арабски Емирства"
-
-#: ../lib/network/connection/providers/xdsl.pm:1230
-#: ../lib/network/connection/providers/xdsl.pm:1240
-#: ../lib/network/netconnect.pm:38
-#, c-format
-msgid "United Kingdom"
-msgstr "Англия"
-
-#: ../lib/network/connection/wireless.pm:11
-#, c-format
-msgid "Wireless"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:21
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:38
-#, c-format
-msgid "Open WEP"
-msgstr ""
+msgid "DHCP host name"
+msgstr "Име на DHCP хост"
-#: ../lib/network/connection/wireless.pm:39
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
+#: ../bin/drakconnect:379 ../lib/network/connection/ethernet.pm:144
+#, fuzzy, c-format
+msgid "DHCP timeout (in seconds)"
+msgstr "Timeout на връзката (в сек)"
-#: ../lib/network/connection/wireless.pm:40
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
+#: ../bin/drakconnect:382 ../lib/network/connection/ethernet.pm:136
+#, fuzzy, c-format
+msgid "Get DNS servers from DHCP"
+msgstr "DNS сървър IP"
-#: ../lib/network/connection/wireless.pm:181 ../lib/network/thirdparty.pm:174
+#: ../bin/drakconnect:383 ../lib/network/connection/ethernet.pm:145
#, c-format
-msgid "Firmware files are required for this device."
+msgid "Get YP servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:209
+#: ../bin/drakconnect:384 ../lib/network/connection/ethernet.pm:146
#, c-format
-msgid ""
-"Your wireless card is disabled, please enable the wireless switch (RF kill "
-"switch) first."
+msgid "Get NTPD servers from DHCP"
msgstr ""
-#: ../lib/network/connection/wireless.pm:270
-#, fuzzy, c-format
-msgid "Wireless settings"
-msgstr "Безжична връзка"
-
-#: ../lib/network/connection/wireless.pm:275 ../tools/drakconnect:406
-#: ../tools/drakroam:119
+#: ../bin/drakconnect:406 ../lib/network/connection/wireless.pm:312
+#: ../lib/network/drakroam.pm:282
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "Разширени функиции"
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Ad-hoc"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Managed"
-msgstr "Управляем"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Master"
-msgstr "Главен"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Repeater"
-msgstr "Повтаряем"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Secondary"
-msgstr "Вторичен"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Auto"
-msgstr "Автоматично"
-
-#: ../lib/network/connection/wireless.pm:279 ../tools/drakconnect:407
+#: ../bin/drakconnect:407 ../lib/network/connection/wireless.pm:316
#, c-format
msgid "Network name (ESSID)"
msgstr ""
-#: ../lib/network/connection/wireless.pm:281
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:283 ../tools/drakconnect:421
-#, c-format
-msgid "Encryption key"
-msgstr "Ключ за криптиране"
-
-#: ../lib/network/connection/wireless.pm:285 ../tools/drakconnect:408
+#: ../bin/drakconnect:408 ../lib/network/connection/wireless.pm:322
#, fuzzy, c-format
msgid "Network ID"
msgstr "Мрежа"
-#: ../lib/network/connection/wireless.pm:286 ../tools/drakconnect:409
+#: ../bin/drakconnect:409 ../lib/network/connection/wireless.pm:323
#, c-format
msgid "Operating frequency"
msgstr ""
-#: ../lib/network/connection/wireless.pm:287 ../tools/drakconnect:410
+#: ../bin/drakconnect:410 ../lib/network/connection/wireless.pm:324
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: ../lib/network/connection/wireless.pm:288 ../tools/drakconnect:411
+#: ../bin/drakconnect:411 ../lib/network/connection/wireless.pm:325
#, c-format
msgid "Bitrate (in b/s)"
msgstr ""
-#: ../lib/network/connection/wireless.pm:289 ../tools/drakconnect:422
+#: ../bin/drakconnect:421 ../lib/network/connection/wireless.pm:320
#, c-format
-msgid "RTS/CTS"
-msgstr ""
+msgid "Encryption key"
+msgstr "Ключ за криптиране"
-#: ../lib/network/connection/wireless.pm:290
+#: ../bin/drakconnect:422 ../lib/network/connection/wireless.pm:326
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
+msgid "RTS/CTS"
msgstr ""
-#: ../lib/network/connection/wireless.pm:297 ../tools/drakconnect:423
+#: ../bin/drakconnect:423 ../lib/network/connection/wireless.pm:334
#, fuzzy, c-format
msgid "Fragmentation"
msgstr "Игрална станция"
-#: ../lib/network/connection/wireless.pm:298 ../tools/drakconnect:424
+#: ../bin/drakconnect:424 ../lib/network/connection/wireless.pm:335
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:299
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: ../lib/network/connection/wireless.pm:306 ../tools/drakconnect:425
+#: ../bin/drakconnect:425 ../lib/network/connection/wireless.pm:343
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:307
-#, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:315 ../tools/drakconnect:426
+#: ../bin/drakconnect:426 ../lib/network/connection/wireless.pm:352
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: ../lib/network/connection/wireless.pm:317
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:335
-#, c-format
-msgid "An encryption key is required."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:341
-#, 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 ""
-
-#: ../lib/network/connection/wireless.pm:347
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:359
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:460
-#, c-format
-msgid "Associated to wireless network \"%s\" on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:461
-#, c-format
-msgid "Lost association to wireless network on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:8
-#, fuzzy, c-format
-msgid "DSL"
-msgstr "SSL"
-
-#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
-#, fuzzy, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch USB"
-
-#: ../lib/network/connection/xdsl.pm:104
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:176
-#, c-format
-msgid "DSL over CAPI"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:179
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:180
-#, fuzzy, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "Ръчна настройка"
-
-#: ../lib/network/connection/xdsl.pm:181
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:182
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:183
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:223
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:224
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:27
-#: ../lib/network/ndiswrapper.pm:42 ../lib/network/ndiswrapper.pm:86
-#: ../lib/network/ndiswrapper.pm:102 ../lib/network/netconnect.pm:131
-#: ../lib/network/netconnect.pm:179 ../lib/network/netconnect.pm:268
-#: ../lib/network/netconnect.pm:813 ../lib/network/thirdparty.pm:114
-#: ../lib/network/thirdparty.pm:131 ../lib/network/thirdparty.pm:214
-#: ../lib/network/thirdparty.pm:216 ../lib/network/thirdparty.pm:237
-#: ../tools/drakconnect:676 ../tools/drakconnect:680 ../tools/drakconnect:689
-#: ../tools/drakconnect:705 ../tools/drakgw:184 ../tools/drakhosts:100
-#: ../tools/drakhosts:245 ../tools/drakhosts:252 ../tools/drakhosts:259
-#: ../tools/drakinvictus:72 ../tools/draknetprofile:113 ../tools/draknfs:85
-#: ../tools/draknfs:106 ../tools/draknfs:273 ../tools/draknfs:400
-#: ../tools/draknfs:402 ../tools/draknfs:405 ../tools/draknfs:497
-#: ../tools/draknfs:504 ../tools/draknfs:567 ../tools/draknfs:574
-#: ../tools/draknfs:581 ../tools/drakroam:79 ../tools/drakroam:92
-#: ../tools/draksambashare:372 ../tools/draksambashare:379
-#: ../tools/draksambashare:382 ../tools/draksambashare:428
-#: ../tools/draksambashare:452 ../tools/draksambashare:518
-#: ../tools/draksambashare:533 ../tools/draksambashare:611
-#: ../tools/draksambashare:678 ../tools/draksambashare:778
-#: ../tools/draksambashare:785 ../tools/draksambashare:916
-#: ../tools/draksambashare:1109 ../tools/draksambashare:1118
-#: ../tools/draksambashare:1140 ../tools/draksambashare:1149
-#: ../tools/draksambashare:1168 ../tools/draksambashare:1177
-#: ../tools/draksambashare:1189
-#, c-format
-msgid "Error"
-msgstr "Грешка"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/netconnect.pm:131 ../lib/network/thirdparty.pm:114
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "Инсталиране на пакета %s"
-
-#: ../lib/network/drakfirewall.pm:12
-#, c-format
-msgid "Web Server"
-msgstr "Web Сървър"
-
-#: ../lib/network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "Domain Name Server"
-
-#: ../lib/network/drakfirewall.pm:22
-#, fuzzy, c-format
-msgid "SSH server"
-msgstr "SSH Сървър"
-
-#: ../lib/network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP сървър"
-
-#: ../lib/network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "Пощенски сървър"
-
-#: ../lib/network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP и IMAP сървър"
-
-#: ../lib/network/drakfirewall.pm:42
-#, fuzzy, c-format
-msgid "Telnet server"
-msgstr "X сървър"
-
-#: ../lib/network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:54
-#, fuzzy, c-format
-msgid "CUPS server"
-msgstr "DNS сървър"
-
-#: ../lib/network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:65
+#: ../bin/drakconnect:434
#, c-format
-msgid "BitTorrent"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
-#, fuzzy, c-format
-msgid "Firewall configuration"
-msgstr "Ръчна настройка"
-
-#: ../lib/network/drakfirewall.pm:166
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"Настройчик за малка защитна стена\n"
-"\n"
-"Това настройва персонална защитна стена за тази Mandriva Linux машина.\n"
-"За мощно постветено на защитата решение, моле, погледнете специализираната\n"
-"Mandriva Security Firewall дистрибуция."
-
-#: ../lib/network/drakfirewall.pm:172
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"drakfirewall конфигурация\n"
-"\n"
-"Убедете се, че вие имате конфигуриран Интернет/Интранет достъп с\n"
-"drakconnect преди да правите други неща по-нататък."
-
-#: ../lib/network/drakfirewall.pm:189
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
-#, c-format
-msgid "Firewall"
-msgstr "Защитна стена"
-
-#: ../lib/network/drakfirewall.pm:192
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"Вие може да въведете други портове. \n"
-"Валидни са например: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Погледнете в /etc/services за информация"
-
-#: ../lib/network/drakfirewall.pm:198
-#, fuzzy, 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.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"Зададен е грешен порт: %s.\n"
-"Форматът е \"port/tcp\" или \"port/udp\", \n"
-"където порт е между 1 и 65535."
-
-#: ../lib/network/drakfirewall.pm:208
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "Всичко (без firewall)"
-
-#: ../lib/network/drakfirewall.pm:210
-#, c-format
-msgid "Other ports"
-msgstr "Други портовете"
-
-#: ../lib/network/drakfirewall.pm:211
-#, c-format
-msgid "Log firewall messages in system logs"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:255 ../lib/network/drakfirewall.pm:258
-#: ../tools/drakids:40 ../tools/drakids:65 ../tools/drakids:181
-#: ../tools/drakids:190 ../tools/drakids:215 ../tools/drakids:224
-#: ../tools/drakids:234 ../tools/drakids:326 ../tools/net_applet:77
-#: ../tools/net_applet:238 ../tools/net_applet:514 ../tools/net_applet:541
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "Защитна стена"
-
-#: ../lib/network/drakfirewall.pm:256
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activities should be watched."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:261
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:30
-#, fuzzy, c-format
-msgid "VPN configuration"
-msgstr "CUPS конфигурация"
-
-#: ../lib/network/drakvpn.pm:34
-#, fuzzy, c-format
-msgid "Choose the VPN type"
-msgstr "Изберете нова големина"
-
-#: ../lib/network/drakvpn.pm:49
-#, c-format
-msgid "Initializing tools and detecting devices for %s..."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:52
-#, fuzzy, c-format
-msgid "Unable to initialize %s connection type!"
-msgstr "Неизвестен тип връзка"
-
-#: ../lib/network/drakvpn.pm:60
-#, c-format
-msgid "Please select an existing VPN connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:64
-#, fuzzy, c-format
-msgid "Configure a new connection..."
-msgstr "Изпробване на връзката..."
-
-#: ../lib/network/drakvpn.pm:66
-#, fuzzy, c-format
-msgid "New name"
-msgstr "Истинско име"
-
-#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
-#: ../lib/network/ndiswrapper.pm:92 ../lib/network/netconnect.pm:471
-#: ../tools/drakconnect:978 ../tools/draknetprofile:129
-#: ../tools/draknetprofile:131 ../tools/drakproxy:36
-#, c-format
-msgid "Warning"
-msgstr "Предупреждение"
-
-#: ../lib/network/drakvpn.pm:70
-#, c-format
-msgid "You must select an existing connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:81
-#, fuzzy, c-format
-msgid "Please enter the required key(s)"
-msgstr "Моля въведете WebDAV сървър URL"
-
-#: ../lib/network/drakvpn.pm:86
-#, fuzzy, c-format
-msgid "Please enter the settings of your VPN connection"
-msgstr "Не мога да се свръжа с огледален сървър' %s"
-
-#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
-#, c-format
-msgid "Do you want to start the connection now?"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:100
-#, fuzzy, c-format
-msgid "Connection failed."
-msgstr "Име на връзката"
-
-#: ../lib/network/drakvpn.pm:108
-#, c-format
-msgid ""
-"The VPN connection is now configured.\n"
-"\n"
-"This VPN connection can be automatically started together with a network "
-"connection.\n"
-"It can be done by reconfiguring the network connection and selecting this "
-"VPN connection.\n"
-msgstr ""
-
-#: ../lib/network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "Не поделя"
-
-#: ../lib/network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "_Тип услуга:"
-
-#: ../lib/network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "Парола (отново)"
-
-#: ../lib/network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-#: ../lib/network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:135
-#, fuzzy, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "Това събитие е било променено."
-
-#: ../lib/network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr ""
-
-#: ../lib/network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "Това събитие е било променено."
-
-#: ../lib/network/ifw.pm:146
-#, c-format
-msgid ""
-"The \"%s\" application is trying to make a service (%s) available to the "
-"network."
-msgstr ""
-
-#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
-#: ../lib/network/ifw.pm:150
-#, fuzzy, c-format
-msgid "port %d"
-msgstr "Рапорт"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#, c-format
-msgid "Manual"
-msgstr "Ръчно"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
-#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
-#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
-#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#: ../lib/network/netconnect.pm:638
-#, c-format
-msgid "Automatic"
-msgstr "Автоматично"
-
-#: ../lib/network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:86
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:92
-#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:102
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:115
-#, fuzzy, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "Избор на случаен драйвер"
-
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:118
-#, fuzzy, c-format
-msgid "Install a new driver"
-msgstr "Инсталиране на системата"
-
-#: ../lib/network/ndiswrapper.pm:129
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:37
-#, c-format
-msgid "United States"
-msgstr "САЩ"
-
-#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
-#: ../lib/network/netconnect.pm:507
-#, fuzzy, c-format
-msgid "Manual choice"
-msgstr "ръчно"
-
-#: ../lib/network/netconnect.pm:60
-#, c-format
-msgid "Internal ISDN card"
-msgstr "Вътрешна ISDN карта"
-
-#: ../lib/network/netconnect.pm:65
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "Протокол за останалия свят"
-
-#: ../lib/network/netconnect.pm:67 ../tools/drakconnect:564
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "Протокол Европа (EDSS1)"
-
-#: ../lib/network/netconnect.pm:68 ../tools/drakconnect:565
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"Протокол за останалия свят\n"
-" без D-Канал (наета линия)"
-
-#: ../lib/network/netconnect.pm:118 ../tools/drakconnect:61
-#, fuzzy, c-format
-msgid "Network & Internet Configuration"
-msgstr "Настройка на мрежата"
-
-#: ../lib/network/netconnect.pm:123
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "Изберете връзката, който искате да използвате"
-
-#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
-#: ../lib/network/netconnect.pm:788
-#, fuzzy, c-format
-msgid "Select the network interface to configure:"
-msgstr "Изберете мрежов интерфейс"
-
-#: ../lib/network/netconnect.pm:164
-#, c-format
-msgid "No device can be found for this connection type."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:173
-#, fuzzy, c-format
-msgid "Hardware Configuration"
-msgstr "Настройка на мрежата"
-
-#: ../lib/network/netconnect.pm:177 ../tools/drakroam:90
-#, fuzzy, c-format
-msgid "Configuring device..."
-msgstr "Настройка ..."
-
-#: ../lib/network/netconnect.pm:194
-#, c-format
-msgid "Please select your provider:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:209 ../tools/drakroam:170
-#, fuzzy, c-format
-msgid "Scanning for networks..."
-msgstr "Стартиране мрежата...."
-
-#: ../lib/network/netconnect.pm:212
-#, c-format
-msgid "Please select your network:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:241
-#, c-format
-msgid ""
-"Please select your connection protocol.\n"
-"If you do not know it, keep the preselected protocol."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
-#, c-format
-msgid "Connection control"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Connection Configuration"
-msgstr "Настройка на връзката"
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "Моля, попълнете или проверете полето по-долу"
-
-#: ../lib/network/netconnect.pm:318
-#, c-format
-msgid "Your personal phone number"
-msgstr "Личния ви телефонен номер"
-
-#: ../lib/network/netconnect.pm:319
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "Име на доставчика (напр. provider.net)"
+msgid "Start at boot"
+msgstr "Изпълнение при стартиране"
-#: ../lib/network/netconnect.pm:320 ../tools/drakconnect:494
+#: ../bin/drakconnect:440 ../lib/network/connection/ethernet.pm:220
#, c-format
-msgid "Provider phone number"
-msgstr "Телефонен номер на доставчика"
-
-#: ../lib/network/netconnect.pm:321
-#, fuzzy, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "1-ви DNS на доставчика (по желание)"
-
-#: ../lib/network/netconnect.pm:322
-#, fuzzy, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "2-ри DNS на доставчика (по желание)"
+msgid "Network Hotplugging"
+msgstr "Мрежов Hotplugging"
-#: ../lib/network/netconnect.pm:323 ../tools/drakconnect:446
+#: ../bin/drakconnect:446 ../lib/network/netconnect.pm:323
#, c-format
msgid "Dialing mode"
msgstr "Режим на набиране"
-#: ../lib/network/netconnect.pm:324 ../tools/drakconnect:451
-#: ../tools/drakconnect:518
+#: ../bin/drakconnect:451 ../bin/drakconnect:518
+#: ../lib/network/netconnect.pm:324
#, c-format
msgid "Connection speed"
msgstr "Скорост на връзката"
-#: ../lib/network/netconnect.pm:325 ../tools/drakconnect:456
+#: ../bin/drakconnect:456 ../lib/network/netconnect.pm:325
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Timeout на връзката (в сек)"
-#: ../lib/network/netconnect.pm:328 ../tools/drakconnect:555
-#, c-format
-msgid "Card IRQ"
-msgstr "IRQ на картата"
-
-#: ../lib/network/netconnect.pm:329 ../tools/drakconnect:556
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "Памет (DMA) на картата"
-
-#: ../lib/network/netconnect.pm:330 ../tools/drakconnect:557
-#, c-format
-msgid "Card IO"
-msgstr "IO на картата"
-
-#: ../lib/network/netconnect.pm:331 ../tools/drakconnect:558
-#, c-format
-msgid "Card IO_0"
-msgstr "IO_0 на картата"
-
-#: ../lib/network/netconnect.pm:332
-#, c-format
-msgid "Card IO_1"
-msgstr "IO_1 на картата"
-
-#: ../lib/network/netconnect.pm:350 ../lib/network/netconnect.pm:385
-#: ../tools/drakconnect:719 ../tools/drakgw:123
-#, c-format
-msgid "Net Device"
-msgstr "Мрежово у-во"
-
-#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "Външен ISDN модем"
-
-#: ../lib/network/netconnect.pm:384
-#, c-format
-msgid "Select a device!"
-msgstr "Изберете устройство !"
-
-#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
-#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "Настройка на IDSN"
-
-#: ../lib/network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "Какъв тип карта имате ?"
-
-#: ../lib/network/netconnect.pm:404
-#, 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 карта, стойностите на следващия екран трябва да са верни.\n"
-"\n"
-"Ако имате PCMCIA карта, ще трябва да знаете IRC и IO на картата си.\n"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "Нататък"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "Отказ"
-
-#: ../lib/network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "Коя от следните ISDN картати е вашата ?"
-
-#: ../lib/network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:434 ../tools/drakconnect:113
-#, c-format
-msgid "Driver"
-msgstr "Драйвер"
-
-#: ../lib/network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "Какъв протокол желаете да промените ?"
-
-#: ../lib/network/netconnect.pm:448 ../tools/drakconnect:113
-#: ../tools/drakconnect:305 ../tools/drakconnect:563 ../tools/drakids:252
-#: ../tools/drakvpn-old:839
-#, c-format
-msgid "Protocol"
-msgstr "Протокол"
-
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"Посочете доставчика си.\n"
-" Ако не е в списъка, изберете Unlisted"
-
-#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
-#, fuzzy, c-format
-msgid "Provider:"
-msgstr "Профил: "
-
-#: ../lib/network/netconnect.pm:471
+#: ../bin/drakconnect:462 ../lib/network/connection.pm:165
#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"Вашият модем не се поддържа от системата.\n"
-"Погледнете в http://www.linmodems.org"
-
-#: ../lib/network/netconnect.pm:490
-#, fuzzy, c-format
-msgid "Select the modem to configure:"
-msgstr "Изберете мрежов интерфейс"
-
-#: ../lib/network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr "Модем"
-
-#: ../lib/network/netconnect.pm:527
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Моля, изберете сериен порт към който свързан модемът ви."
-
-#: ../lib/network/netconnect.pm:556
-#, fuzzy, c-format
-msgid "Select your provider:"
-msgstr "Изберете принтерен spooler"
-
-#: ../lib/network/netconnect.pm:580
-#, fuzzy, c-format
-msgid "Dialup: account options"
-msgstr "Опции за избиране по телефон"
-
-#: ../lib/network/netconnect.pm:583
-#, c-format
-msgid "Connection name"
-msgstr "Име на връзката"
-
-#: ../lib/network/netconnect.pm:584
-#, c-format
-msgid "Phone number"
-msgstr "Телефонен номер"
-
-#: ../lib/network/netconnect.pm:585
-#, c-format
-msgid "Login ID"
-msgstr "Потребителско име"
-
-#: ../lib/network/netconnect.pm:586 ../lib/network/vpn/vpnc.pm:56
-#: ../tools/drakinvictus:110
-#, c-format
-msgid "Password"
-msgstr "Парола"
-
-#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
-#, fuzzy, c-format
-msgid "Dialup: IP parameters"
-msgstr "Параметри"
-
-#: ../lib/network/netconnect.pm:603
-#, fuzzy, c-format
-msgid "IP parameters"
-msgstr "Параметри"
-
-#: ../lib/network/netconnect.pm:605
-#, fuzzy, c-format
-msgid "Subnet mask"
-msgstr "Маска на подмрежа:"
-
-#: ../lib/network/netconnect.pm:617
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:620
-#, c-format
-msgid "DNS"
-msgstr "Домейн"
-
-#: ../lib/network/netconnect.pm:621
-#, c-format
-msgid "Domain name"
-msgstr "Име на домейна"
-
-#: ../lib/network/netconnect.pm:622 ../tools/drakconnect:996
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "Първи DNS сървър (по избор)"
-
-#: ../lib/network/netconnect.pm:623 ../tools/drakconnect:997
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "Втори DNS сървър (по избор)"
-
-#: ../lib/network/netconnect.pm:624
-#, fuzzy, c-format
-msgid "Set hostname from IP"
-msgstr "Име на хост за принтера или IP"
-
-#: ../lib/network/netconnect.pm:637
-#, fuzzy, c-format
-msgid "Gateway IP address"
-msgstr "IP адрес"
-
-#: ../lib/network/netconnect.pm:670
-#, fuzzy, c-format
-msgid "Automatically at boot"
-msgstr "Изпълнение при стартиране"
-
-#: ../lib/network/netconnect.pm:672
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:674
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:683
-#, fuzzy, c-format
-msgid "How do you want to dial this connection?"
-msgstr "Искате ли да стартирате връзката си при зареждане ?"
-
-#: ../lib/network/netconnect.pm:696
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "Искате ли сега да опитате връзка към Интернет ?"
-
-#: ../lib/network/netconnect.pm:704 ../tools/drakconnect:1027
-#, c-format
-msgid "Testing your connection..."
-msgstr "Изпробване на връзката..."
-
-#: ../lib/network/netconnect.pm:723
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "Системата в момента е свързана към Интернет."
-
-#: ../lib/network/netconnect.pm:724
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "За ваша сигурност, сега тя ще бъдете отвързана."
-
-#: ../lib/network/netconnect.pm:725
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"Системата не изглежда свързана към Интернет.\n"
-"Опитайте се да пренастроите връзката."
-
-#: ../lib/network/netconnect.pm:740
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"Поздравления, мрежовата и интернет настройката е завършена.\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:743
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"След като стане това, препоръчваме ви да рестартирате X\n"
-"средата си, за да избегнете проблеми със смяната името на хоста."
-
-#: ../lib/network/netconnect.pm:744
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"Появи се проблем при конфигурацията.\n"
-"Проверете вашата връзка през net_monitor или mcc. Ако вашата връзка не "
-"работи , вие трябва да преконфигурирате."
-
-#: ../lib/network/netconnect.pm:756
-#, fuzzy, c-format
-msgid "Sagem USB modem"
-msgstr "Системен режим"
-
-#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
-#, c-format
-msgid "Bewan modem"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:759
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:760
-#, c-format
-msgid "LAN connection"
-msgstr "LAN връзка"
-
-#: ../lib/network/netconnect.pm:761 ../tools/drakroam:29
-#, c-format
-msgid "Wireless connection"
-msgstr "Безжична връзка"
-
-#: ../lib/network/netconnect.pm:762
-#, c-format
-msgid "ADSL connection"
-msgstr "ADSL връзка"
-
-#: ../lib/network/netconnect.pm:763
-#, c-format
-msgid "Cable connection"
-msgstr "Кабелна връзка"
-
-#: ../lib/network/netconnect.pm:764
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN връзка"
-
-#: ../lib/network/netconnect.pm:765
-#, c-format
-msgid "Modem connection"
-msgstr "Модем"
-
-#: ../lib/network/netconnect.pm:766
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:768
-#, fuzzy, c-format
-msgid "(detected on port %s)"
-msgstr "засечен на порт %s"
-
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../lib/network/netconnect.pm:770
-#, fuzzy, c-format
-msgid "(detected %s)"
-msgstr "засечена %s"
-
-#: ../lib/network/netconnect.pm:770
-#, fuzzy, c-format
-msgid "(detected)"
-msgstr "засечена "
-
-#: ../lib/network/netconnect.pm:771
-#, c-format
-msgid "Network Configuration"
-msgstr "Настройка на мрежата"
-
-#: ../lib/network/netconnect.pm:772
-#, fuzzy, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Име на Zeroconf хост:"
-
-#: ../lib/network/netconnect.pm:773
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:777
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Име на Zeroconf хост:"
-
-#: ../lib/network/netconnect.pm:778
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:779
-#, 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"
-
-#: ../lib/network/netconnect.pm:782
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "Мрежата се нуждае от престартиране. Искате ли да я престартирам?"
-
-#: ../lib/network/netconnect.pm:783
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"Изникна проблем при рестартирането на мрежата:\n"
-"\n"
-"%s"
-
-#: ../lib/network/netconnect.pm:784
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"Сега ще настроим %s връзката.\n"
-"\n"
-"\n"
-"\n"
-"Натиснете \"%s\", за да продължите."
-
-#: ../lib/network/netconnect.pm:785
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "Настройката завърши,желаете ли да я приложите ?"
-
-#: ../lib/network/netconnect.pm:786
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"Настроили сте няколко начина за връзка към Интернет.\n"
-"Изберете този, който искате да използвате.\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:787
-#, c-format
-msgid "Internet connection"
-msgstr "Интернет връзка"
-
-#: ../lib/network/netconnect.pm:789
-#, fuzzy, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "Настройка на мрежовото устройство %s"
-
-#: ../lib/network/netconnect.pm:790
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:791
-#, 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 ""
-"Моля, въведете host name за машината.\n"
-"Host името трябва да буде напълно квалифицирано име,\n"
-"като ``mybox.mylab.myco.com''.\n"
-"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
-
-#: ../lib/network/netconnect.pm:796
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:797
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS сървъра трябва да бъде във формат 1.2.3.4"
-
-#: ../lib/network/netconnect.pm:798 ../tools/drakconnect:689
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
-
-#: ../lib/network/netconnect.pm:799
-#, c-format
-msgid "Gateway device"
-msgstr "Gateway устройство"
-
-#: ../lib/network/netconnect.pm:813
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/network.pm:429
-#, c-format
-msgid "Proxies configuration"
-msgstr "Настройка на proxy"
-
-#: ../lib/network/network.pm:430
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: ../lib/network/network.pm:431
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../lib/network/network.pm:432
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: ../lib/network/network.pm:433
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: ../lib/network/network.pm:434
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../lib/network/network.pm:435
-#, fuzzy, c-format
-msgid "No proxy for (comma separated list):"
-msgstr "%d със запетая разделен низ"
-
-#: ../lib/network/network.pm:440
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "Proxy-сървъра трябва да е http://..."
-
-#: ../lib/network/network.pm:441
-#, fuzzy, c-format
-msgid "Proxy should be http://... or https://..."
-msgstr "Proxy-сървъра трябва да е http://..."
-
-#: ../lib/network/network.pm:442
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL трябва да е започва с 'ftp:' или 'http:'"
-
-#: ../lib/network/shorewall.pm:61
-#, c-format
-msgid ""
-"Please select the interfaces that will be protected by the firewall.\n"
-"\n"
-"All interfaces directly connected to Internet should be selected,\n"
-"while interfaces connected to a local network may be unselected.\n"
-"\n"
-"Which interfaces should be protected?\n"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:136
-#, c-format
-msgid "Keep custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:137
-#, c-format
-msgid "Drop custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:142
-#, c-format
-msgid ""
-"Your firewall configuration has been manually edited and contains\n"
-"rules that may conflict with the configuration that has just been set up.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:134
-#, c-format
-msgid "Some components (%s) are required but aren't available for %s hardware."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:135
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:137
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:138
-#, c-format
-msgid "The following component is missing: %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:140
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:177 ../lib/network/thirdparty.pm:182
-#, fuzzy, c-format
-msgid "Use a floppy"
-msgstr "Запази на дискета"
-
-#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:185
-#, fuzzy, c-format
-msgid "Use my Windows partition"
-msgstr "Изчислявам границите на Windows файловата система"
-
-#: ../lib/network/thirdparty.pm:179
-#, c-format
-msgid "Select file"
-msgstr "Изберете файл"
-
-#: ../lib/network/thirdparty.pm:190
-#, c-format
-msgid "Please select the firmware file (for example: %s)"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:214
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "Изтрива шрифтове от вашата система"
-
-#: ../lib/network/thirdparty.pm:216
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:226
-#, c-format
-msgid "Insert floppy"
-msgstr "Сложете дискета във флопито"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"Сложете FAT форматирана дискета в устройство %s с %s в главната директория и "
-"натиснете %s"
-
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid "Next"
-msgstr "Следващ"
-
-#: ../lib/network/thirdparty.pm:237
-#, fuzzy, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "Къде искате да монтирате устройство %s ?"
-
-#: ../lib/network/thirdparty.pm:319
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:330
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "Моля, изберете ниво на сигурност..."
-
-#: ../lib/network/vpn/openvpn.pm:107
-#, c-format
-msgid "X509 Public Key Infrastructure"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:108
-#, c-format
-msgid "Static Key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:115
-#, c-format
-msgid "Type"
-msgstr "Вид"
-
-#. -PO: please don't translate the CA acronym
-#: ../lib/network/vpn/openvpn.pm:142
-#, c-format
-msgid "Certificate Authority (CA)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:148
-#, c-format
-msgid "Certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:154
-#, fuzzy, c-format
-msgid "Key"
-msgstr "Кения"
-
-#: ../lib/network/vpn/openvpn.pm:160
-#, fuzzy, c-format
-msgid "TLS control channel key"
-msgstr "Ляв клавиш Ctrl"
-
-#: ../lib/network/vpn/openvpn.pm:167
-#, c-format
-msgid "Key direction"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:175
-#, fuzzy, c-format
-msgid "Authenticate using username and password"
-msgstr "Не мога да вляза като използвам име %s (грешна парола?)"
-
-#: ../lib/network/vpn/openvpn.pm:181
-#, c-format
-msgid "Check server certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:187
-#, fuzzy, c-format
-msgid "Cipher algorithm"
-msgstr "идентификация"
-
-#: ../lib/network/vpn/openvpn.pm:191
-#, c-format
-msgid "Default"
-msgstr "По подразбиране"
-
-#: ../lib/network/vpn/openvpn.pm:195
-#, c-format
-msgid "Size of cipher key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:206
-#, fuzzy, c-format
-msgid "Get from server"
-msgstr "X сървър"
-
-#: ../lib/network/vpn/openvpn.pm:216
-#, fuzzy, c-format
-msgid "Gateway port"
-msgstr "Gateway"
-
-#: ../lib/network/vpn/openvpn.pm:227 ../tools/drakgw:176
-#, fuzzy, c-format
-msgid "Local IP address"
-msgstr "IP адрес"
-
-#: ../lib/network/vpn/openvpn.pm:232
-#, fuzzy, c-format
-msgid "Remote IP address"
-msgstr "IP адрес"
-
-#: ../lib/network/vpn/openvpn.pm:237
-#, fuzzy, c-format
-msgid "Use TCP protocol"
-msgstr "Протокол"
-
-#: ../lib/network/vpn/openvpn.pm:243
-#, c-format
-msgid "Virtual network device type"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:250
-#, c-format
-msgid "Virtual network device number (optional)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:365
-#, c-format
-msgid "Starting connection.."
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:380
-#, c-format
-msgid "Please insert your token"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:9
-#, c-format
-msgid "Cisco VPN Concentrator"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:43
-#, fuzzy, c-format
-msgid "Group name"
-msgstr "Номер на група"
-
-#: ../lib/network/vpn/vpnc.pm:47
-#, c-format
-msgid "Group secret"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:52
-#, c-format
-msgid "Username"
-msgstr "Потребителско име"
-
-#: ../lib/network/vpn/vpnc.pm:61
-#, c-format
-msgid "Use Cisco-UDP encapsulation"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:67
-#, c-format
-msgid "Use specific UDP port"
-msgstr ""
-
-#: ../tools/drakconnect:81
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Настройка на мрежата (%d адаптера)"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Interface:"
-msgstr "Интерфейс:"
-
-#: ../tools/drakconnect:97 ../tools/net_monitor:119
-#, c-format
-msgid "Wait please"
-msgstr ""
-
-#: ../tools/drakconnect:113 ../tools/drakinvictus:105
-#, c-format
-msgid "Interface"
-msgstr "Интерфейс"
-
-#: ../tools/drakconnect:113
-#, c-format
-msgid "State"
-msgstr "Състояние"
-
-#: ../tools/drakconnect:130
-#, c-format
-msgid "Hostname: "
-msgstr "Име на хост: "
-
-#: ../tools/drakconnect:132
-#, c-format
-msgid "Configure hostname..."
-msgstr "Настройка на име на хост..."
-
-#: ../tools/drakconnect:146 ../tools/drakconnect:850
-#, c-format
-msgid "LAN configuration"
-msgstr "Настройка на LAN"
-
-#: ../tools/drakconnect:151
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "Настойка на локална мрежа ..."
-
-#: ../tools/drakconnect:157 ../tools/drakconnect:240 ../tools/draknfs:181
-#, c-format
-msgid "Help"
-msgstr "Помощ"
-
-#: ../tools/drakconnect:159 ../tools/drakconnect:241 ../tools/drakconnect:245
-#: ../tools/drakinvictus:140
-#, c-format
-msgid "Apply"
-msgstr "Приложи"
+msgid "Metric"
+msgstr "Метрика"
-#: ../tools/drakconnect:161 ../tools/drakconnect:942 ../tools/drakconnect:1033
-#: ../tools/draknetprofile:106 ../tools/net_monitor:341
+#: ../bin/drakconnect:482 ../lib/network/connection/cable.pm:48
+#: ../lib/network/netconnect.pm:587
#, c-format
-msgid "Cancel"
-msgstr "Отказ"
+msgid "Authentication"
+msgstr "Идентификация"
-#: ../tools/drakconnect:162 ../tools/drakconnect:857 ../tools/drakconnect:944
-#: ../tools/drakconnect:1034 ../tools/draknetprofile:108
-#: ../tools/net_monitor:342
+#: ../bin/drakconnect:492 ../lib/network/connection/cable.pm:50
+#: ../lib/network/connection/ppp.pm:22 ../lib/network/netconnect.pm:326
+#: ../lib/network/vpn/openvpn.pm:393
#, c-format
-msgid "Ok"
-msgstr "Ok"
+msgid "Account Login (user name)"
+msgstr "Име на акаунта (потебителско име)"
-#: ../tools/drakconnect:164 ../tools/drakconnect:636 ../tools/drakgw:359
-#: ../tools/drakroam:251 ../tools/drakroam:289 ../tools/draksambashare:208
+#: ../bin/drakconnect:493 ../lib/network/connection/cable.pm:52
+#: ../lib/network/connection/ppp.pm:23 ../lib/network/netconnect.pm:327
+#: ../lib/network/vpn/openvpn.pm:394
#, c-format
-msgid "Please wait"
-msgstr "Моля изчакайте"
+msgid "Account Password"
+msgstr "Парола на акаунта"
-#: ../tools/drakconnect:166 ../tools/drakconnect:638
+#: ../bin/drakconnect:494 ../lib/network/netconnect.pm:320
#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "Моля, почакайте ... Прилагане на настройките"
+msgid "Provider phone number"
+msgstr "Телефонен номер на доставчика"
-#: ../tools/drakconnect:192
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:10
+#: ../lib/network/netconnect.pm:75
#, c-format
-msgid "Manage connections"
-msgstr "Настройка на връзките"
+msgid "PAP"
+msgstr "PAP"
-#: ../tools/drakconnect:219 ../tools/drakroam:302
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:11
+#: ../lib/network/netconnect.pm:76
#, c-format
-msgid "Device: "
-msgstr "Устройство: "
-
-#: ../tools/drakconnect:302
-#, fuzzy, c-format
-msgid "IP configuration"
-msgstr "CUPS конфигурация"
-
-#: ../tools/drakconnect:337
-#, fuzzy, c-format
-msgid "DNS servers"
-msgstr "DNS сървър"
-
-#: ../tools/drakconnect:343
-#, fuzzy, c-format
-msgid "Search Domain"
-msgstr "NIS домейн"
+msgid "Terminal-based"
+msgstr "Базирана на терминал"
-#: ../tools/drakconnect:351 ../tools/drakvpn-old:837
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:9
+#: ../lib/network/netconnect.pm:74
#, c-format
-msgid "none"
-msgstr "няма"
-
-#: ../tools/drakconnect:351
-#, fuzzy, c-format
-msgid "static"
-msgstr "Автоматичен IP адрес"
+msgid "Script-based"
+msgstr "Базирана на скрипт"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:12
+#: ../lib/network/netconnect.pm:77
#, c-format
-msgid "DHCP"
-msgstr "DHCP"
+msgid "CHAP"
+msgstr "CHAP"
-#: ../tools/drakconnect:434
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:13
+#: ../lib/network/netconnect.pm:78
#, c-format
-msgid "Start at boot"
-msgstr "Изпълнение при стартиране"
+msgid "PAP/CHAP"
+msgstr "PAP/CHAP"
-#: ../tools/drakconnect:516
+#: ../bin/drakconnect:516
#, c-format
msgid "Flow control"
msgstr "Контрол на трансфера"
-#: ../tools/drakconnect:517
+#: ../bin/drakconnect:517
#, fuzzy, c-format
msgid "Line termination"
msgstr "Интернет станция"
-#: ../tools/drakconnect:528
+#: ../bin/drakconnect:528
#, fuzzy, c-format
msgid "Modem timeout"
msgstr "Шел време за достъп"
-#: ../tools/drakconnect:532
+#: ../bin/drakconnect:532
#, fuzzy, c-format
msgid "Use lock file"
msgstr "Изберете файл"
-#: ../tools/drakconnect:534
+#: ../bin/drakconnect:534
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr ""
-#: ../tools/drakconnect:537
+#: ../bin/drakconnect:537
#, fuzzy, c-format
msgid "Busy wait"
msgstr "Кувейт"
-#: ../tools/drakconnect:542
+#: ../bin/drakconnect:542
#, fuzzy, c-format
msgid "Modem sound"
msgstr "Модем"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "Включване"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "Изключване"
-#: ../tools/drakconnect:592
+#: ../bin/drakconnect:555 ../lib/network/netconnect.pm:328
+#, c-format
+msgid "Card IRQ"
+msgstr "IRQ на картата"
+
+#: ../bin/drakconnect:556 ../lib/network/netconnect.pm:329
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Памет (DMA) на картата"
+
+#: ../bin/drakconnect:557 ../lib/network/netconnect.pm:330
+#, c-format
+msgid "Card IO"
+msgstr "IO на картата"
+
+#: ../bin/drakconnect:558 ../lib/network/netconnect.pm:331
+#, c-format
+msgid "Card IO_0"
+msgstr "IO_0 на картата"
+
+#: ../bin/drakconnect:564 ../lib/network/netconnect.pm:67
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "Протокол Европа (EDSS1)"
+
+#: ../bin/drakconnect:565 ../lib/network/netconnect.pm:68
+#, c-format
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"Протокол за останалия свят\n"
+" без D-Канал (наета линия)"
+
+#: ../bin/drakconnect:592
#, c-format
msgid "Vendor"
msgstr "Производител"
-#: ../tools/drakconnect:593
+#: ../bin/drakconnect:593
#, c-format
msgid "Description"
msgstr "Описание"
-#: ../tools/drakconnect:594
+#: ../bin/drakconnect:594
#, c-format
msgid "Media class"
msgstr "Клас носител"
-#: ../tools/drakconnect:595
+#: ../bin/drakconnect:595
#, c-format
msgid "Module name"
msgstr "Име на модул"
-#: ../tools/drakconnect:596
+#: ../bin/drakconnect:596
#, fuzzy, c-format
msgid "Mac Address"
msgstr "Broadcast адрес:"
-#: ../tools/drakconnect:597
+#: ../bin/drakconnect:597
#, c-format
msgid "Bus"
msgstr "Шина"
-#: ../tools/drakconnect:598
+#: ../bin/drakconnect:598
#, c-format
msgid "Location on the bus"
msgstr ""
-#: ../tools/drakconnect:685 ../tools/drakconnect:766 ../tools/drakconnect:952
+#: ../bin/drakconnect:676 ../bin/drakconnect:680 ../bin/drakconnect:689
+#: ../bin/drakconnect:705 ../bin/drakgw:184 ../bin/drakhosts:100
+#: ../bin/drakhosts:245 ../bin/drakhosts:252 ../bin/drakhosts:259
+#: ../bin/drakinvictus:72 ../bin/draknetprofile:113 ../bin/draknfs:85
+#: ../bin/draknfs:106 ../bin/draknfs:276 ../bin/draknfs:409 ../bin/draknfs:411
+#: ../bin/draknfs:414 ../bin/draknfs:506 ../bin/draknfs:513 ../bin/draknfs:576
+#: ../bin/draknfs:583 ../bin/draknfs:590 ../bin/draksambashare:373
+#: ../bin/draksambashare:380 ../bin/draksambashare:383
+#: ../bin/draksambashare:429 ../bin/draksambashare:453
+#: ../bin/draksambashare:519 ../bin/draksambashare:534
+#: ../bin/draksambashare:612 ../bin/draksambashare:679
+#: ../bin/draksambashare:779 ../bin/draksambashare:786
+#: ../bin/draksambashare:917 ../bin/draksambashare:1110
+#: ../bin/draksambashare:1119 ../bin/draksambashare:1141
+#: ../bin/draksambashare:1150 ../bin/draksambashare:1169
+#: ../bin/draksambashare:1178 ../bin/draksambashare:1190
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakroam.pm:56 ../lib/network/drakroam.pm:69
+#: ../lib/network/drakvpn.pm:45 ../lib/network/drakvpn.pm:52
+#: ../lib/network/ndiswrapper.pm:27 ../lib/network/ndiswrapper.pm:42
+#: ../lib/network/ndiswrapper.pm:86 ../lib/network/ndiswrapper.pm:102
+#: ../lib/network/netconnect.pm:131 ../lib/network/netconnect.pm:179
+#: ../lib/network/netconnect.pm:268 ../lib/network/netconnect.pm:813
+#: ../lib/network/thirdparty.pm:115 ../lib/network/thirdparty.pm:132
+#: ../lib/network/thirdparty.pm:215 ../lib/network/thirdparty.pm:217
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Error"
+msgstr "Грешка"
+
+#: ../bin/drakconnect:676 ../lib/network/connection/ethernet.pm:160
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
+
+#: ../bin/drakconnect:680 ../lib/network/connection/ethernet.pm:165
+#, fuzzy, c-format
+msgid "Netmask should be in format 255.255.224.0"
+msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
+
+#: ../bin/drakconnect:685 ../bin/drakconnect:767 ../bin/drakconnect:953
#, c-format
msgid "No IP"
msgstr ""
-#: ../tools/drakconnect:686 ../tools/drakconnect:767
+#: ../bin/drakconnect:686 ../bin/drakconnect:768
#, c-format
msgid "No Mask"
msgstr "Лоша маска"
-#: ../tools/drakconnect:705 ../tools/drakgw:307
+#: ../bin/drakconnect:689 ../lib/network/netconnect.pm:798
+#, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
+
+#: ../bin/drakconnect:705 ../bin/drakgw:307
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
@@ -2618,17 +542,23 @@ msgstr ""
"В системата не е открит ethernet мрежов адаптер. Моля, стартирайте "
"инструмента за настройка на хардуер."
-#: ../tools/drakconnect:714
+#: ../bin/drakconnect:714
#, fuzzy, c-format
msgid "Remove a network interface"
msgstr "Изберете мрежов интерфейс"
-#: ../tools/drakconnect:718
+#: ../bin/drakconnect:718
#, fuzzy, c-format
msgid "Select the network interface to remove:"
msgstr "Изберете мрежов интерфейс"
-#: ../tools/drakconnect:750
+#: ../bin/drakconnect:719 ../bin/drakgw:123 ../lib/network/netconnect.pm:350
+#: ../lib/network/netconnect.pm:385
+#, c-format
+msgid "Net Device"
+msgstr "Мрежово у-во"
+
+#: ../bin/drakconnect:751
#, fuzzy, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
@@ -2639,53 +569,53 @@ msgstr ""
"\n"
"%s"
-#: ../tools/drakconnect:751
+#: ../bin/drakconnect:752
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr ""
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "up"
msgstr ""
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, fuzzy, c-format
msgid "down"
msgstr "готово"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Connected"
msgstr "Свързан"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Not connected"
msgstr "Не свързан"
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Disconnect..."
msgstr "Отвързване ..."
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Connect..."
msgstr "Свързване ..."
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, fuzzy, c-format
msgid "Deactivate now"
msgstr "деактивирай сега"
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, fuzzy, c-format
msgid "Activate now"
msgstr "активирай сега"
-#: ../tools/drakconnect:854
+#: ../bin/drakconnect:855
#, c-format
msgid ""
"You do not have any configured interface.\n"
@@ -2694,39 +624,47 @@ msgstr ""
"Нямате настроен интерфейс.\n"
"Настройте ги преди това, като цъкнете на 'Настройка'"
-#: ../tools/drakconnect:868
+#: ../bin/drakconnect:869
#, c-format
msgid "LAN Configuration"
msgstr "Настройка на локална мрежа"
-#: ../tools/drakconnect:880
+#: ../bin/drakconnect:881
#, c-format
msgid "Adapter %s: %s"
msgstr "Адаптер %s: %s"
-#: ../tools/drakconnect:889
+#: ../bin/drakconnect:890
#, c-format
msgid "Boot Protocol"
msgstr "Стартиращ протокол"
-#: ../tools/drakconnect:890
+#: ../bin/drakconnect:891
#, c-format
msgid "Started on boot"
msgstr "Пуснат при стартиране"
-#: ../tools/drakconnect:926
+#: ../bin/drakconnect:927
#, c-format
msgid ""
"This interface has not been configured yet.\n"
"Run the \"Add an interface\" assistant from the Mandriva Linux Control Center"
msgstr ""
-#: ../tools/drakconnect:974
+#: ../bin/drakconnect:975
#, c-format
msgid "Internet connection configuration"
msgstr "Настройка на Интернет връзка"
-#: ../tools/drakconnect:980 ../tools/net_applet:68
+#: ../bin/drakconnect:979 ../bin/draknetprofile:129 ../bin/draknetprofile:131
+#: ../bin/drakproxy:36 ../lib/network/drakvpn.pm:70
+#: ../lib/network/drakvpn.pm:100 ../lib/network/ndiswrapper.pm:92
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid "Warning"
+msgstr "Предупреждение"
+
+#: ../bin/drakconnect:981 ../bin/net_applet:69
#, fuzzy, c-format
msgid ""
"You do not have any configured Internet connection.\n"
@@ -2736,52 +674,67 @@ msgstr ""
"Създайте такава, като цъкнете на 'Настрой'"
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: ../tools/drakconnect:981 ../tools/net_applet:69
+#: ../bin/drakconnect:982 ../bin/net_applet:70
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Настройване на мрежов интервейс (LAN, ISDN, ADSL, ...)"
-#: ../tools/drakconnect:995
+#: ../bin/drakconnect:996
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "Първи DNS сървър (по избор)"
-#: ../tools/drakconnect:998
+#: ../bin/drakconnect:997 ../lib/network/netconnect.pm:622
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "Първи DNS сървър (по избор)"
+
+#: ../bin/drakconnect:998 ../lib/network/netconnect.pm:623
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "Втори DNS сървър (по избор)"
+
+#: ../bin/drakconnect:999
#, fuzzy, c-format
msgid "Third DNS server (optional)"
msgstr "Първи DNS сървър (по избор)"
-#: ../tools/drakconnect:1020
+#: ../bin/drakconnect:1021
#, c-format
msgid "Internet Connection Configuration"
msgstr "Настройка на Интернет връзка"
-#: ../tools/drakconnect:1021
+#: ../bin/drakconnect:1022
#, c-format
msgid "Internet access"
msgstr "Интернет достъп"
-#: ../tools/drakconnect:1023 ../tools/net_monitor:98
+#: ../bin/drakconnect:1024 ../bin/net_monitor:98
#, c-format
msgid "Connection type: "
msgstr "Тип на връзката: "
-#: ../tools/drakconnect:1026
+#: ../bin/drakconnect:1027
#, c-format
msgid "Status:"
msgstr "Състояние:"
-#: ../tools/drakconnect:1031
+#: ../bin/drakconnect:1028 ../lib/network/netconnect.pm:704
+#, c-format
+msgid "Testing your connection..."
+msgstr "Изпробване на връзката..."
+
+#: ../bin/drakconnect:1032
#, c-format
msgid "Parameters"
msgstr "Параметри"
-#: ../tools/drakgw:71
+#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "Споделяне на връзката с Интернет"
-#: ../tools/drakgw:75
+#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -2804,7 +757,7 @@ msgstr ""
"Отбележете: трябва ви отделен за това мрежов адаптер, за да установите "
"вътрешната си мрежа (LAN)."
-#: ../tools/drakgw:91
+#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
@@ -2817,7 +770,7 @@ msgstr ""
"\n"
"Какво искате да направите ?"
-#: ../tools/drakgw:95
+#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -2830,17 +783,17 @@ msgstr ""
"\n"
"Какво искате да направите ?"
-#: ../tools/drakgw:101
+#: ../bin/drakgw:101
#, c-format
msgid "Reconfigure"
msgstr "Преконфигуриране"
-#: ../tools/drakgw:122
+#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""
-#: ../tools/drakgw:141
+#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -2855,7 +808,7 @@ msgstr ""
"\n"
"Смятам да установя локалната ви мрежа на този адаптер."
-#: ../tools/drakgw:152
+#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
@@ -2863,37 +816,42 @@ msgid ""
msgstr ""
"Моля изберете кой мрежов адаптер да бъде включен към локалната ви мрежа."
-#: ../tools/drakgw:173
+#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "Адрес на Локална мрежа"
-#: ../tools/drakgw:178
+#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
+#, fuzzy, c-format
+msgid "Local IP address"
+msgstr "IP адрес"
+
+#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr "Вътрешно име на домейн"
-#: ../tools/drakgw:184
+#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Възможен конфликт с адресите в LAN с настройката на %s!\n"
-#: ../tools/drakgw:200
+#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "Конфигурация на Терминален Сървър в Mandriva Linux"
-#: ../tools/drakgw:204
+#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""
-#: ../tools/drakgw:205
+#: ../bin/drakgw:205
#, c-format
msgid "The DNS Server IP"
msgstr "DNS сървър IP"
-#: ../tools/drakgw:232
+#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
@@ -2902,77 +860,77 @@ msgid ""
"If you do not know the meaning of an option, simply leave it as it is."
msgstr ""
-#: ../tools/drakgw:239
+#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "Автоматична реконфигурация"
-#: ../tools/drakgw:240
+#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr ""
-#: ../tools/drakgw:241
+#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr ""
-#: ../tools/drakgw:242
+#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr ""
-#: ../tools/drakgw:243
+#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../tools/drakgw:266
+#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""
-#: ../tools/drakgw:270
+#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""
-#: ../tools/drakgw:271
+#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""
-#: ../tools/drakgw:272
+#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "Име на отдалечен хост"
-#: ../tools/drakgw:273
+#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "Собственост"
-#: ../tools/drakgw:274
+#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "Размер на кеш"
-#: ../tools/drakgw:296
+#: ../bin/drakgw:296
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "Информацията за твърдия диск"
-#: ../tools/drakgw:313
+#: ../bin/drakgw:313
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "Споделянето на Интернет в момента е включено."
-#: ../tools/drakgw:319
+#: ../bin/drakgw:319
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "Споделянето на Интернет връзката в момента е изключено."
-#: ../tools/drakgw:325
+#: ../bin/drakgw:325
#, fuzzy, c-format
msgid ""
"Everything has been configured.\n"
@@ -2984,17 +942,17 @@ msgstr ""
"Сега можете да споделите Интернет връзката си с други компютри в локалната "
"ви мрежа използвайки автоматична мрежова настройка (DHCP)."
-#: ../tools/drakgw:359
+#: ../bin/drakgw:359
#, c-format
msgid "Disabling servers..."
msgstr "Изключване на сървъри ..."
-#: ../tools/drakgw:373
+#: ../bin/drakgw:373
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Открита е настройка на Защитна Стена !"
-#: ../tools/drakgw:374
+#: ../bin/drakgw:374
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
@@ -3003,460 +961,479 @@ msgstr ""
"Внимание ! Открита е настройка на Защитна Стена. Може да се наложи някаква "
"ръчна поправка след инсталацията."
-#: ../tools/drakgw:379
+#: ../bin/drakgw:379
#, c-format
msgid "Configuring..."
msgstr "Настройка ..."
-#: ../tools/drakgw:380
+#: ../bin/drakgw:380
#, c-format
msgid "Configuring firewall..."
msgstr ""
-#: ../tools/drakhosts:100
+#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""
-#: ../tools/drakhosts:110
+#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "Подробна информация"
-#: ../tools/drakhosts:111
+#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "Подробна информация"
-#: ../tools/drakhosts:112
+#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "Подробна информация"
-#: ../tools/drakhosts:116
+#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "Адрес IP:"
-#: ../tools/drakhosts:117
+#: ../bin/drakhosts:117
#, c-format
msgid "Host name:"
msgstr "Хост:"
-#: ../tools/drakhosts:118
+#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "Име на хост:"
-#: ../tools/drakhosts:122 ../tools/drakhosts:128 ../tools/draksambashare:209
-#: ../tools/draksambashare:230 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:209
+#: ../bin/draksambashare:230 ../bin/draksambashare:377
+#: ../bin/draksambashare:608 ../bin/draksambashare:775
#, c-format
msgid "Error!"
msgstr "Грешка !"
-#: ../tools/drakhosts:122
+#: ../bin/drakhosts:122
#, c-format
msgid "Please enter a valid IP address."
msgstr "Моля въведете валиден IP адрес."
-#: ../tools/drakhosts:128
+#: ../bin/drakhosts:128
#, c-format
msgid "Same IP is already in %s file."
msgstr ""
-#: ../tools/drakhosts:196
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:202
+#, c-format
+msgid "Host name"
+msgstr "Име на хост:"
+
+#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "Име на хост:"
-#: ../tools/drakhosts:206 ../tools/drakhosts:236
+#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, fuzzy, c-format
msgid "Manage hosts definitions"
msgstr "Настройка на връзките"
-#: ../tools/drakhosts:222 ../tools/drakhosts:249
+#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""
-#: ../tools/drakhosts:241 ../tools/draknfs:563 ../tools/draksambashare:1102
-#: ../tools/draksambashare:1133 ../tools/draksambashare:1164
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakhosts:241 ../bin/draknfs:572 ../bin/draksambashare:1103
+#: ../bin/draksambashare:1134 ../bin/draksambashare:1165
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "Добавя"
-#: ../tools/drakhosts:242
+#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "Добавяне принтер"
-#: ../tools/drakhosts:245
+#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""
-#: ../tools/drakhosts:248 ../tools/draknfs:570 ../tools/draksambashare:1059
-#: ../tools/draksambashare:1104 ../tools/draksambashare:1135
-#: ../tools/draksambashare:1172
+#: ../bin/drakhosts:248 ../bin/draknfs:579 ../bin/draksambashare:1060
+#: ../bin/draksambashare:1105 ../bin/draksambashare:1136
+#: ../bin/draksambashare:1173
#, c-format
msgid "Modify"
msgstr "Модифицира"
-#: ../tools/drakhosts:252
+#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""
-#: ../tools/drakhosts:255 ../tools/drakids:87 ../tools/drakids:96
-#: ../tools/draknfs:577 ../tools/draksambashare:1060
-#: ../tools/draksambashare:1112 ../tools/draksambashare:1143
-#: ../tools/draksambashare:1180 ../tools/drakvpn-old:253
-#: ../tools/drakvpn-old:391
+#: ../bin/drakhosts:255 ../bin/drakids:87 ../bin/drakids:96 ../bin/draknfs:586
+#: ../bin/draksambashare:1061 ../bin/draksambashare:1113
+#: ../bin/draksambashare:1144 ../bin/draksambashare:1181
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "Премахва"
-#: ../tools/drakhosts:259
+#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""
-#: ../tools/drakhosts:262 ../tools/drakinvictus:141
-#: ../tools/draknetprofile:147 ../tools/drakroam:309 ../tools/net_applet:138
+#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:147
+#: ../bin/net_applet:139 ../lib/network/drakroam.pm:353
#, c-format
msgid "Quit"
msgstr "Изход"
-#: ../tools/drakids:28
+#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "Позволява на потребители"
-#: ../tools/drakids:65 ../tools/drakids:181 ../tools/drakids:190
-#: ../tools/drakids:215 ../tools/drakids:224 ../tools/drakids:234
-#: ../tools/drakids:326 ../tools/net_applet:238 ../tools/net_applet:514
+#: ../bin/drakids:40 ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190
+#: ../bin/drakids:215 ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:78 ../bin/net_applet:239 ../bin/net_applet:519
+#: ../bin/net_applet:546 ../lib/network/drakfirewall.pm:255
+#: ../lib/network/drakfirewall.pm:258
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "Защитна стена"
+
+#: ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190 ../bin/drakids:215
+#: ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:239 ../bin/net_applet:519
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "Не мога да се свръжа с огледален сървър' %s"
-#: ../tools/drakids:74 ../tools/drakids:102
+#: ../bin/drakids:74 ../bin/drakids:102
#, c-format
msgid "Log"
msgstr "Журнал"
-#: ../tools/drakids:78 ../tools/drakids:97 ../tools/net_applet:659
+#: ../bin/drakids:78 ../bin/drakids:97 ../bin/net_applet:663
#, fuzzy, c-format
msgid "Allow"
msgstr "Всички"
-#: ../tools/drakids:79 ../tools/drakids:88 ../tools/net_applet:660
+#: ../bin/drakids:79 ../bin/drakids:88 ../bin/net_applet:664
#, c-format
msgid "Block"
msgstr ""
-#: ../tools/drakids:80 ../tools/drakids:89 ../tools/drakids:98
-#: ../tools/drakids:109 ../tools/drakids:122 ../tools/drakids:130
-#: ../tools/draknfs:186 ../tools/net_monitor:120
+#: ../bin/drakids:80 ../bin/drakids:89 ../bin/drakids:98 ../bin/drakids:109
+#: ../bin/drakids:122 ../bin/drakids:130 ../bin/draknfs:188
+#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "Затвори"
-#: ../tools/drakids:83
+#: ../bin/drakids:83
#, fuzzy, c-format
msgid "Allowed services"
msgstr "Позволява на потребители"
-#: ../tools/drakids:92
+#: ../bin/drakids:92
#, fuzzy, c-format
msgid "Blocked services"
msgstr "Резервно копие на потребителски файлове"
-#: ../tools/drakids:106
+#: ../bin/drakids:106
#, fuzzy, c-format
msgid "Clear logs"
msgstr "Изчисти всичко"
-#: ../tools/drakids:107 ../tools/drakids:112 ../tools/net_applet:602
+#: ../bin/drakids:107 ../bin/drakids:112 ../bin/net_applet:607
#, c-format
msgid "Blacklist"
msgstr ""
-#: ../tools/drakids:108 ../tools/drakids:125 ../tools/net_applet:607
+#: ../bin/drakids:108 ../bin/drakids:125 ../bin/net_applet:612
#, c-format
msgid "Whitelist"
msgstr ""
-#: ../tools/drakids:116
+#: ../bin/drakids:116
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "Премахни от LVM"
-#: ../tools/drakids:117
+#: ../bin/drakids:117
#, c-format
msgid "Move to whitelist"
msgstr ""
-#: ../tools/drakids:129
+#: ../bin/drakids:129
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "Премахни от LVM"
-#: ../tools/drakids:247
+#: ../bin/drakids:247
#, c-format
msgid "Date"
msgstr "Дата"
-#: ../tools/drakids:248
+#: ../bin/drakids:248
#, fuzzy, c-format
msgid "Attacker"
msgstr "Без подробности"
-#: ../tools/drakids:249
+#: ../bin/drakids:249
#, fuzzy, c-format
msgid "Attack type"
msgstr "тип: %s"
-#: ../tools/drakids:250 ../tools/drakids:283
+#: ../bin/drakids:250 ../bin/drakids:283
#, c-format
msgid "Service"
msgstr "Услуга"
-#: ../tools/drakids:251
+#: ../bin/drakids:251
#, c-format
msgid "Network interface"
msgstr "Мрежов интерфейс"
-#: ../tools/drakids:282
+#: ../bin/drakids:282
#, c-format
msgid "Application"
msgstr "Приложение"
-#: ../tools/drakids:284
+#: ../bin/drakids:284
#, c-format
msgid "Status"
msgstr "Състояние"
-#: ../tools/drakids:286
+#: ../bin/drakids:286
#, fuzzy, c-format
msgid "Allowed"
msgstr "Всички"
-#: ../tools/drakids:287
+#: ../bin/drakids:287
#, c-format
msgid "Blocked"
msgstr ""
-#: ../tools/drakinvictus:36
+#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr ""
-#: ../tools/drakinvictus:53
+#: ../bin/drakinvictus:53
#, fuzzy, c-format
msgid "Start as master"
msgstr "Пуснат при стартиране"
-#: ../tools/drakinvictus:72
+#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "Изисква парола"
-#: ../tools/drakinvictus:100
+#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
-#: ../tools/drakinvictus:102
+#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "Broadcast адрес:"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual shared address"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""
-#: ../tools/drakinvictus:114
+#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:586
+#: ../lib/network/vpn/vpnc.pm:56
+#, c-format
+msgid "Password"
+msgstr "Парола"
+
+#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "Избор на файл"
-#: ../tools/drakinvictus:116
+#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""
-#: ../tools/drakinvictus:123
+#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "Изберете мрежов интерфейс"
-#: ../tools/drakinvictus:132
+#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "Връзка"
-#: ../tools/draknetprofile:36
+#: ../bin/draknetprofile:36
#, fuzzy, c-format
msgid "Network profiles"
msgstr "Мрежови опции"
-#: ../tools/draknetprofile:67
+#: ../bin/draknetprofile:67
#, fuzzy, c-format
msgid "Profile"
msgstr "Профили"
-#: ../tools/draknetprofile:99
+#: ../bin/draknetprofile:99
#, c-format
msgid "New profile..."
msgstr "Нов профил..."
-#: ../tools/draknetprofile:102
+#: ../bin/draknetprofile:102
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one):"
msgstr "Име на новия профил (ще бъде създаден, като копие на текущият):"
-#: ../tools/draknetprofile:113
+#: ../bin/draknetprofile:113
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr "Профилът \"%s\" вече съществува!"
-#: ../tools/draknetprofile:129
+#: ../bin/draknetprofile:129
#, c-format
msgid "You can not delete the default profile"
msgstr ""
-#: ../tools/draknetprofile:131
+#: ../bin/draknetprofile:131
#, c-format
msgid "You can not delete the current profile"
msgstr "Не може да изтриете профила, който ползвате в момента"
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""
-#: ../tools/draknetprofile:144
+#: ../bin/draknetprofile:144
#, c-format
msgid "Activate"
msgstr "Активира"
-#: ../tools/draknetprofile:145
+#: ../bin/draknetprofile:145
#, fuzzy, c-format
msgid "Clone"
msgstr "Връзка"
-#: ../tools/draknetprofile:146
+#: ../bin/draknetprofile:146
#, c-format
msgid "Delete"
msgstr "Изтрий"
-#: ../tools/draknfs:41
+#: ../bin/draknfs:41
#, c-format
msgid "map root user as anonymous"
msgstr ""
-#: ../tools/draknfs:42
+#: ../bin/draknfs:42
#, c-format
msgid "map all users to anonymous user"
msgstr ""
-#: ../tools/draknfs:43
+#: ../bin/draknfs:43
#, c-format
msgid "No user UID mapping"
msgstr ""
-#: ../tools/draknfs:44
+#: ../bin/draknfs:44
#, c-format
msgid "allow real remote root access"
msgstr ""
-#: ../tools/draknfs:58 ../tools/draknfs:59 ../tools/draknfs:60
-#: ../tools/draksambashare:161 ../tools/draksambashare:162
-#: ../tools/draksambashare:163
+#: ../bin/draknfs:58 ../bin/draknfs:59 ../bin/draknfs:60
+#: ../bin/draksambashare:161 ../bin/draksambashare:162
+#: ../bin/draksambashare:163
#, c-format
msgid "/_File"
msgstr "/_Файл"
-#: ../tools/draknfs:59 ../tools/draksambashare:162
+#: ../bin/draknfs:59 ../bin/draksambashare:162
#, c-format
msgid "/_Write conf"
msgstr ""
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "/_Quit"
msgstr "/_Излиза"
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
-#: ../tools/draknfs:63 ../tools/draknfs:64 ../tools/draknfs:65
+#: ../bin/draknfs:63 ../bin/draknfs:64 ../bin/draknfs:65
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "DNS сървър"
-#: ../tools/draknfs:64 ../tools/draksambashare:166
+#: ../bin/draknfs:64 ../bin/draksambashare:166
#, c-format
msgid "/_Restart"
msgstr ""
-#: ../tools/draknfs:65 ../tools/draksambashare:167
+#: ../bin/draknfs:65 ../bin/draksambashare:167
#, c-format
msgid "/R_eload"
msgstr ""
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, fuzzy, c-format
msgid "NFS server"
msgstr "DNS сървър"
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""
-#: ../tools/draknfs:85
+#: ../bin/draknfs:85
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""
-#: ../tools/draknfs:101 ../tools/draksambashare:225
+#: ../bin/draknfs:101 ../bin/draksambashare:225
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "Посока"
-#: ../tools/draknfs:106 ../tools/draksambashare:230
+#: ../bin/draknfs:106 ../bin/draksambashare:230
#, c-format
msgid "Should be a directory."
msgstr "Трябва да е директория"
-#: ../tools/draknfs:137
+#: ../bin/draknfs:137
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
@@ -3483,7 +1460,7 @@ msgid ""
"result.\n"
msgstr ""
-#: ../tools/draknfs:152
+#: ../bin/draknfs:152
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
@@ -3509,27 +1486,32 @@ msgid ""
"the uid and gid of the anonymous account.\n"
msgstr ""
-#: ../tools/draknfs:168
+#: ../bin/draknfs:168
#, c-format
msgid "Synchronous access:"
msgstr ""
-#: ../tools/draknfs:169
+#: ../bin/draknfs:169
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "Интернет връзка"
-#: ../tools/draknfs:170
+#: ../bin/draknfs:170
#, c-format
msgid "Read-Only share:"
msgstr ""
-#: ../tools/draknfs:172
+#: ../bin/draknfs:171
+#, c-format
+msgid "Subtree checking:"
+msgstr ""
+
+#: ../bin/draknfs:173
#, c-format
msgid "Advanced Options"
msgstr ""
-#: ../tools/draknfs:173
+#: ../bin/draknfs:174
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
@@ -3537,7 +1519,7 @@ msgid ""
"is on by default."
msgstr ""
-#: ../tools/draknfs:174
+#: ../bin/draknfs:175
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
@@ -3546,7 +1528,7 @@ msgid ""
"using this option."
msgstr ""
-#: ../tools/draknfs:175
+#: ../bin/draknfs:176
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
@@ -3554,746 +1536,693 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: ../tools/draknfs:180 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draknfs:177
+#, c-format
+msgid ""
+"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "Информация"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "Директория"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "Директория:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "Име на хост:"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr "Достъп:"
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr "Номер (UID):"
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "Моля, въведете име на хост или IP."
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr "Общи настройки"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: ../tools/drakroam:61
-#, c-format
-msgid "No device found"
-msgstr "Не беше открито устройство"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "Подробна информация"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "Криптиране"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, fuzzy, c-format
-msgid "Connecting..."
-msgstr "Свързване ..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Disconnect"
-msgstr "Разкачване"
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "Връзка"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "Отвързване ..."
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "Настрока"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "Опресни"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "Потребителско име"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "Общо име"
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "Не е директория"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, c-format
msgid "Comment"
msgstr "Коментар"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "Преглед"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr "Публичен"
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, c-format
msgid "Writable"
msgstr "Запис"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "Създай"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "Сървър с директории"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "Четене"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "Запис"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "Добави потребител"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "Добави потребител"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "Права"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "Скрий файловете"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, c-format
msgid "Hide files"
msgstr "Скрий файловете"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "Настройки"
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, fuzzy, c-format
msgid "Force create mode"
msgstr "Вашият модел принтер"
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "Работна група"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "Потребител по подразбиране"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "Име на принтера"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "Път"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, fuzzy, c-format
msgid "Printable"
msgstr "Включване"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "Команда"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "Команда"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "Права"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "Печатане"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "Модел на карта:"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"
msgstr "X сървър"
-#: ../tools/draksambashare:142
+#: ../bin/draksambashare:142
#, fuzzy, c-format
msgid "Read List"
msgstr "Изтрива списък"
-#: ../tools/draksambashare:143
+#: ../bin/draksambashare:143
#, fuzzy, c-format
msgid "Write List"
msgstr "Запис"
-#: ../tools/draksambashare:148
+#: ../bin/draksambashare:148
#, fuzzy, c-format
msgid "Force Group"
msgstr "Група"
-#: ../tools/draksambashare:149
+#: ../bin/draksambashare:149
#, c-format
msgid "Force create group"
msgstr ""
-#: ../tools/draksambashare:165 ../tools/draksambashare:166
-#: ../tools/draksambashare:167
+#: ../bin/draksambashare:165 ../bin/draksambashare:166
+#: ../bin/draksambashare:167
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "Web Сървър"
-#: ../tools/draksambashare:169 ../tools/draksambashare:170
+#: ../bin/draksambashare:169 ../bin/draksambashare:170
#, c-format
msgid "/_About"
msgstr "/_Относно"
-#: ../tools/draksambashare:169
+#: ../bin/draksambashare:169
#, c-format
msgid "/_Report Bug"
msgstr "/_Информирай за бъг"
-#: ../tools/draksambashare:170
+#: ../bin/draksambashare:170
#, c-format
msgid "/About..."
msgstr ""
-#: ../tools/draksambashare:173
+#: ../bin/draksambashare:173
#, fuzzy, c-format
msgid "Draksambashare"
msgstr "Samba Сървър"
-#: ../tools/draksambashare:175
+#: ../bin/draksambashare:175
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""
-#: ../tools/draksambashare:177
+#: ../bin/draksambashare:177
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""
-#: ../tools/draksambashare:179
+#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "Mandriva Online"
#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
-#: ../tools/draksambashare:184
+#: ../bin/draksambashare:184
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "Boyan Ivanov <boyan17@bulgaria.com>\n"
-#: ../tools/draksambashare:208
+#: ../bin/draksambashare:208
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""
-#: ../tools/draksambashare:209
+#: ../bin/draksambashare:209
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""
-#: ../tools/draksambashare:349 ../tools/draksambashare:549
-#: ../tools/draksambashare:670
+#: ../bin/draksambashare:349 ../bin/draksambashare:550
+#: ../bin/draksambashare:671
#, c-format
msgid "Open"
msgstr "Отвори"
-#: ../tools/draksambashare:352
+#: ../bin/draksambashare:352
#, fuzzy, c-format
msgid "DrakSamba add entry"
msgstr "Samba Сървър"
-#: ../tools/draksambashare:356
+#: ../bin/draksambashare:356
#, fuzzy, c-format
msgid "Add a share"
msgstr "Samba Сървър"
-#: ../tools/draksambashare:359
+#: ../bin/draksambashare:359
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "Име на принтер"
-#: ../tools/draksambashare:360 ../tools/draksambashare:569
-#: ../tools/draksambashare:750
+#: ../bin/draksambashare:360 ../bin/draksambashare:570
+#: ../bin/draksambashare:751
#, c-format
msgid "Comment:"
msgstr "Коментар:"
-#: ../tools/draksambashare:372
+#: ../bin/draksambashare:373
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""
-#: ../tools/draksambashare:379
+#: ../bin/draksambashare:380
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""
-#: ../tools/draksambashare:382 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draksambashare:383 ../bin/draksambashare:606
+#: ../bin/draksambashare:773
#, fuzzy, c-format
msgid "Please enter a Comment for this share."
msgstr "Моля, въведете име на хост или IP."
-#: ../tools/draksambashare:413
+#: ../bin/draksambashare:414
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""
-#: ../tools/draksambashare:414
+#: ../bin/draksambashare:415
#, c-format
msgid "printers - all printers available"
msgstr ""
-#: ../tools/draksambashare:418
+#: ../bin/draksambashare:419
#, c-format
msgid "Add Special Printer share"
msgstr ""
-#: ../tools/draksambashare:421
+#: ../bin/draksambashare:422
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""
-#: ../tools/draksambashare:428
+#: ../bin/draksambashare:429
#, fuzzy, c-format
msgid "A PDF generator already exists."
msgstr "Профилът \"%s\" вече съществува!"
-#: ../tools/draksambashare:452
+#: ../bin/draksambashare:453
#, fuzzy, c-format
msgid "Printers and print$ already exist."
msgstr "Профилът \"%s\" вече съществува!"
-#: ../tools/draksambashare:502
+#: ../bin/draksambashare:503
#, c-format
msgid "Congratulations"
msgstr "Поздравления"
-#: ../tools/draksambashare:503
+#: ../bin/draksambashare:504
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""
-#: ../tools/draksambashare:518
+#: ../bin/draksambashare:519
#, c-format
msgid "Failed to add printers."
msgstr ""
-#: ../tools/draksambashare:533
+#: ../bin/draksambashare:534
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:552
+#: ../bin/draksambashare:553
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""
-#: ../tools/draksambashare:565
+#: ../bin/draksambashare:566
#, c-format
msgid "Printer share"
msgstr ""
-#: ../tools/draksambashare:568
+#: ../bin/draksambashare:569
#, c-format
msgid "Printer name:"
msgstr "Име на принтер:"
-#: ../tools/draksambashare:574 ../tools/draksambashare:755
+#: ../bin/draksambashare:575 ../bin/draksambashare:756
#, fuzzy, c-format
msgid "Writable:"
msgstr "Запис"
-#: ../tools/draksambashare:575 ../tools/draksambashare:756
+#: ../bin/draksambashare:576 ../bin/draksambashare:757
#, fuzzy, c-format
msgid "Browseable:"
msgstr "Преглед"
-#: ../tools/draksambashare:580
+#: ../bin/draksambashare:581
#, c-format
msgid "Advanced options"
msgstr "Допълнителни настройки"
-#: ../tools/draksambashare:582
+#: ../bin/draksambashare:583
#, fuzzy, c-format
msgid "Printer access"
msgstr "Интернет достъп"
-#: ../tools/draksambashare:586
+#: ../bin/draksambashare:587
#, c-format
msgid "Guest ok:"
msgstr ""
-#: ../tools/draksambashare:587
+#: ../bin/draksambashare:588
#, fuzzy, c-format
msgid "Create mode:"
msgstr "Модел на карта:"
-#: ../tools/draksambashare:591
+#: ../bin/draksambashare:592
#, c-format
msgid "Printer command"
msgstr ""
-#: ../tools/draksambashare:593
+#: ../bin/draksambashare:594
#, c-format
msgid "Print command:"
msgstr ""
-#: ../tools/draksambashare:594
+#: ../bin/draksambashare:595
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "Команда"
-#: ../tools/draksambashare:595
+#: ../bin/draksambashare:596
#, fuzzy, c-format
msgid "Printing:"
msgstr "Предупреждение"
-#: ../tools/draksambashare:611
+#: ../bin/draksambashare:612
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:673
+#: ../bin/draksambashare:674
#, c-format
msgid "DrakSamba entry"
msgstr ""
-#: ../tools/draksambashare:678
+#: ../bin/draksambashare:679
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""
-#: ../tools/draksambashare:701
+#: ../bin/draksambashare:702
#, fuzzy, c-format
msgid "Samba user access"
msgstr "Samba Сървър"
-#: ../tools/draksambashare:709
+#: ../bin/draksambashare:710
#, fuzzy, c-format
msgid "Mask options"
msgstr "Основни настройки"
-#: ../tools/draksambashare:723
+#: ../bin/draksambashare:724
#, fuzzy, c-format
msgid "Display options"
msgstr "Задай опции"
-#: ../tools/draksambashare:745
+#: ../bin/draksambashare:746
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "Не е директория"
-#: ../tools/draksambashare:748
+#: ../bin/draksambashare:749
#, fuzzy, c-format
msgid "Share name:"
msgstr "Общо име"
-#: ../tools/draksambashare:754
+#: ../bin/draksambashare:755
#, c-format
msgid "Public:"
msgstr ""
-#: ../tools/draksambashare:778
+#: ../bin/draksambashare:779
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""
-#: ../tools/draksambashare:785
+#: ../bin/draksambashare:786
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""
-#: ../tools/draksambashare:889
+#: ../bin/draksambashare:890
#, c-format
msgid "Add Samba user"
msgstr ""
-#: ../tools/draksambashare:904
+#: ../bin/draksambashare:905
#, fuzzy, c-format
msgid "User information"
msgstr "Изчислявам границите на Windows файловата система"
-#: ../tools/draksambashare:906
+#: ../bin/draksambashare:907
#, c-format
msgid "User name:"
msgstr "Потребител:"
-#: ../tools/draksambashare:907
+#: ../bin/draksambashare:908
#, c-format
msgid "Password:"
msgstr "Парола:"
-#: ../tools/draksambashare:1021
+#: ../bin/draksambashare:1022
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "Конфигурация за подредба на поща"
-#: ../tools/draksambashare:1109
+#: ../bin/draksambashare:1110
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""
-#: ../tools/draksambashare:1118
+#: ../bin/draksambashare:1119
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""
-#: ../tools/draksambashare:1125
+#: ../bin/draksambashare:1126
#, c-format
msgid "File share"
msgstr ""
-#: ../tools/draksambashare:1140
+#: ../bin/draksambashare:1141
#, c-format
msgid "Failed to Modify."
msgstr ""
-#: ../tools/draksambashare:1149
+#: ../bin/draksambashare:1150
#, c-format
msgid "Failed to remove."
msgstr ""
-#: ../tools/draksambashare:1156
+#: ../bin/draksambashare:1157
#, c-format
msgid "Printers"
msgstr "Принтери"
-#: ../tools/draksambashare:1168
+#: ../bin/draksambashare:1169
#, c-format
msgid "Failed to add user."
msgstr ""
-#: ../tools/draksambashare:1177
+#: ../bin/draksambashare:1178
#, c-format
msgid "Failed to change user password."
msgstr ""
-#: ../tools/draksambashare:1189
+#: ../bin/draksambashare:1190
#, c-format
msgid "Failed to delete user."
msgstr ""
-#: ../tools/draksambashare:1194
+#: ../bin/draksambashare:1195
#, c-format
msgid "Userdrake"
msgstr "Userdrake"
-#: ../tools/draksambashare:1202
+#: ../bin/draksambashare:1203
#, c-format
msgid "Samba Users"
msgstr ""
-#: ../tools/draksambashare:1211
+#: ../bin/draksambashare:1212
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""
-#: ../tools/drakvpn-old:65
+#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr ""
-#: ../tools/drakvpn-old:87
+#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr ""
-#: ../tools/drakvpn-old:88
+#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4303,37 +2232,37 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:93
+#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr "изключи"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr "пренастройка"
-#: ../tools/drakvpn-old:93 ../tools/drakvpn-old:119 ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr "остави"
-#: ../tools/drakvpn-old:97
+#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr ""
-#: ../tools/drakvpn-old:106
+#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr ""
-#: ../tools/drakvpn-old:113
+#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr ""
-#: ../tools/drakvpn-old:114
+#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
@@ -4343,27 +2272,27 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../tools/drakvpn-old:119
+#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr "включи"
-#: ../tools/drakvpn-old:127
+#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr ""
-#: ../tools/drakvpn-old:133
+#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr ""
-#: ../tools/drakvpn-old:147 ../tools/drakvpn-old:164
+#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr ""
-#: ../tools/drakvpn-old:148
+#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
@@ -4379,7 +2308,7 @@ msgid ""
"drakconnect before going any further."
msgstr ""
-#: ../tools/drakvpn-old:165
+#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
@@ -4395,27 +2324,27 @@ msgid ""
"before going any further."
msgstr ""
-#: ../tools/drakvpn-old:208
+#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr "Проблеми с инсталирането на пакета %s"
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr ""
-#: ../tools/drakvpn-old:222
+#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr ""
-#: ../tools/drakvpn-old:224
+#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr ""
-#: ../tools/drakvpn-old:225
+#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
@@ -4427,12 +2356,12 @@ msgid ""
"What would you like to configure?\n"
msgstr ""
-#: ../tools/drakvpn-old:245 ../tools/drakvpn-old:382
+#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr ""
-#: ../tools/drakvpn-old:246
+#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
@@ -4446,32 +2375,32 @@ msgid ""
"What would you like to do?\n"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr ""
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "Редакция"
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr ""
-#: ../tools/drakvpn-old:267 ../tools/drakvpn-old:271 ../tools/drakvpn-old:406
-#: ../tools/drakvpn-old:410
+#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
+#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr ""
-#: ../tools/drakvpn-old:272
+#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
@@ -4481,7 +2410,7 @@ msgid ""
"You'll have to go back and choose 'add'.\n"
msgstr ""
-#: ../tools/drakvpn-old:301
+#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
@@ -4491,12 +2420,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:333 ../tools/drakvpn-old:523
+#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr ""
-#: ../tools/drakvpn-old:334
+#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4505,13 +2434,13 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:337 ../tools/drakvpn-old:357 ../tools/drakvpn-old:528
-#: ../tools/drakvpn-old:574
+#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
+#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr ""
-#: ../tools/drakvpn-old:344
+#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
@@ -4521,12 +2450,12 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:353 ../tools/drakvpn-old:570
+#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr ""
-#: ../tools/drakvpn-old:354 ../tools/drakvpn-old:571
+#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4535,7 +2464,7 @@ msgid ""
"and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:383
+#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
@@ -4549,7 +2478,7 @@ msgid ""
" - commit \t\t (writes the changes to the real file)"
msgstr ""
-#: ../tools/drakvpn-old:411
+#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
@@ -4559,12 +2488,12 @@ msgid ""
"You'll have to go back and choose configure.\n"
msgstr ""
-#: ../tools/drakvpn-old:425
+#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr ""
-#: ../tools/drakvpn-old:426
+#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
@@ -4577,22 +2506,22 @@ msgid ""
"Choose the section you would like to add.\n"
msgstr ""
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr "път"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr "отдалечен"
-#: ../tools/drakvpn-old:432
+#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr ""
-#: ../tools/drakvpn-old:440
+#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
@@ -4602,12 +2531,12 @@ msgid ""
"Put your mouse over the certificate entry to obtain online help."
msgstr ""
-#: ../tools/drakvpn-old:443
+#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr ""
-#: ../tools/drakvpn-old:447
+#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
@@ -4631,12 +2560,12 @@ msgid ""
"Pre-shared key authentication method in phase 1."
msgstr ""
-#: ../tools/drakvpn-old:467 ../tools/drakvpn-old:560
+#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr ""
-#: ../tools/drakvpn-old:490
+#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4646,7 +2575,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:507
+#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
@@ -4656,7 +2585,7 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:524
+#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
@@ -4665,7 +2594,7 @@ msgid ""
"to edit and then click on next.\n"
msgstr ""
-#: ../tools/drakvpn-old:535
+#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4676,7 +2605,7 @@ msgid ""
"Choose continue when you are done to write the data.\n"
msgstr ""
-#: ../tools/drakvpn-old:544
+#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
@@ -4686,7 +2615,7 @@ msgid ""
"Choose continue when you are done to write the data."
msgstr ""
-#: ../tools/drakvpn-old:552
+#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
@@ -4700,17 +2629,17 @@ msgid ""
"Choose continue or previous when you are done.\n"
msgstr ""
-#: ../tools/drakvpn-old:559
+#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr ""
-#: ../tools/drakvpn-old:599
+#: ../bin/drakvpn-old:599
#, c-format
msgid "Congratulations!"
msgstr "Поздравления !"
-#: ../tools/drakvpn-old:600
+#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -4722,12 +2651,12 @@ msgid ""
"section is configured."
msgstr ""
-#: ../tools/drakvpn-old:620
+#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""
-#: ../tools/drakvpn-old:621
+#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4750,12 +2679,12 @@ msgid ""
"\t172.16.1.0/24 is the source address"
msgstr ""
-#: ../tools/drakvpn-old:638
+#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr ""
-#: ../tools/drakvpn-old:639
+#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4775,12 +2704,12 @@ msgid ""
"\tthe first 'any' allows any protocol for the source"
msgstr ""
-#: ../tools/drakvpn-old:653
+#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr ""
-#: ../tools/drakvpn-old:654
+#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4803,12 +2732,12 @@ msgid ""
"\t172.16.2.0/24 is the destination address"
msgstr ""
-#: ../tools/drakvpn-old:671
+#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr ""
-#: ../tools/drakvpn-old:672
+#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
@@ -4828,12 +2757,12 @@ msgid ""
"\tthe last 'any' allows any protocol for the destination"
msgstr ""
-#: ../tools/drakvpn-old:686
+#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr ""
-#: ../tools/drakvpn-old:688
+#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
@@ -4843,12 +2772,12 @@ msgid ""
"Or you can define 1, 2, or 5 as the DH group number."
msgstr ""
-#: ../tools/drakvpn-old:693
+#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr ""
-#: ../tools/drakvpn-old:694
+#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4869,12 +2798,12 @@ msgid ""
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
msgstr ""
-#: ../tools/drakvpn-old:710
+#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr ""
-#: ../tools/drakvpn-old:712
+#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
@@ -4896,32 +2825,32 @@ msgid ""
"'hour'.\n"
msgstr ""
-#: ../tools/drakvpn-old:728 ../tools/drakvpn-old:813
+#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "идентификация"
-#: ../tools/drakvpn-old:730
+#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr ""
-#: ../tools/drakvpn-old:732
+#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr ""
-#: ../tools/drakvpn-old:733
+#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr ""
-#: ../tools/drakvpn-old:740
+#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr "Отдалечен"
-#: ../tools/drakvpn-old:741
+#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
@@ -4936,12 +2865,12 @@ msgid ""
"remote ::1 [8000]"
msgstr ""
-#: ../tools/drakvpn-old:749
+#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr ""
-#: ../tools/drakvpn-old:751
+#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
@@ -4952,22 +2881,22 @@ msgid ""
"racoon uses when it is the initiator.\n"
msgstr ""
-#: ../tools/drakvpn-old:757
+#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr ""
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr "изключено"
-#: ../tools/drakvpn-old:758 ../tools/drakvpn-old:774 ../tools/drakvpn-old:787
+#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "включено"
-#: ../tools/drakvpn-old:759
+#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder. Therefore you\n"
@@ -4986,12 +2915,12 @@ msgid ""
"the initiator case. The default value is off."
msgstr ""
-#: ../tools/drakvpn-old:773
+#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr "Страдателен залог"
-#: ../tools/drakvpn-old:775
+#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
@@ -4999,59 +2928,59 @@ msgid ""
"server."
msgstr ""
-#: ../tools/drakvpn-old:778
+#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr ""
-#: ../tools/drakvpn-old:780
+#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr ""
-#: ../tools/drakvpn-old:781
+#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr ""
-#: ../tools/drakvpn-old:782
+#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr ""
-#: ../tools/drakvpn-old:783
+#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr ""
-#: ../tools/drakvpn-old:784
+#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr ""
-#: ../tools/drakvpn-old:785
+#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr ""
-#: ../tools/drakvpn-old:786
+#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr ""
-#: ../tools/drakvpn-old:788
+#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
"some reason, set this to off. The default is on."
msgstr ""
-#: ../tools/drakvpn-old:790
+#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr ""
-#: ../tools/drakvpn-old:791
+#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
@@ -5078,17 +3007,17 @@ msgid ""
"my_identifier user_fqdn \"myemail@mydomain.com\""
msgstr ""
-#: ../tools/drakvpn-old:811
+#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr ""
-#: ../tools/drakvpn-old:812
+#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr ""
-#: ../tools/drakvpn-old:814
+#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
@@ -5100,393 +3029,395 @@ msgid ""
"For other transforms, this statement should not be used."
msgstr ""
-#: ../tools/drakvpn-old:821
+#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr ""
-#: ../tools/drakvpn-old:822
+#: ../bin/drakvpn-old:822
#, fuzzy, c-format
msgid "Authentication method"
msgstr "идентификация"
-#: ../tools/drakvpn-old:823
+#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr ""
-#: ../tools/drakvpn-old:830
+#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "Команда"
-#: ../tools/drakvpn-old:831
+#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr ""
-#: ../tools/drakvpn-old:832
+#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr ""
-#: ../tools/drakvpn-old:833
+#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr ""
-#: ../tools/drakvpn-old:833 ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr ""
-#: ../tools/drakvpn-old:835
+#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "Flag"
-#: ../tools/drakvpn-old:836
+#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "Посока"
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr ""
-#: ../tools/drakvpn-old:837
+#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "Режим"
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr ""
-#: ../tools/drakvpn-old:840
+#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr ""
-#: ../tools/drakvpn-old:842
+#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "Ниво"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "по подрабиране"
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr ""
-#: ../tools/drakvpn-old:843
+#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr ""
-#: ../tools/net_applet:61
+#: ../bin/net_applet:62
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "Мрежов интерфейс"
-#: ../tools/net_applet:62
+#: ../bin/net_applet:63
#, fuzzy, c-format
msgid "IP address: %s"
msgstr "Адрес IP:"
-#: ../tools/net_applet:63
+#: ../bin/net_applet:64
#, fuzzy, c-format
msgid "Gateway: %s"
msgstr "Gateway:"
-#: ../tools/net_applet:64
+#: ../bin/net_applet:65
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""
-#: ../tools/net_applet:66
+#: ../bin/net_applet:67
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "Мрежов интерфейс"
-#: ../tools/net_applet:74 ../tools/net_monitor:468
+#: ../bin/net_applet:75 ../bin/net_monitor:468
#, c-format
msgid "Connect %s"
msgstr "Свързва %s"
-#: ../tools/net_applet:75 ../tools/net_monitor:468
+#: ../bin/net_applet:76 ../bin/net_monitor:468
#, c-format
msgid "Disconnect %s"
msgstr "Разкачва %s"
-#: ../tools/net_applet:76
+#: ../bin/net_applet:77
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "Възстановява през мрежа"
-#: ../tools/net_applet:78
+#: ../bin/net_applet:79
#, c-format
msgid "Manage wireless networks"
msgstr ""
-#: ../tools/net_applet:80
+#: ../bin/net_applet:81
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "Настройка на връзките"
-#: ../tools/net_applet:84
+#: ../bin/net_applet:85
#, c-format
msgid "Configure Network"
msgstr "Конфигуриране на мрежа"
-#: ../tools/net_applet:86
+#: ../bin/net_applet:87
#, fuzzy, c-format
msgid "Watched interface"
msgstr "Интерфейс"
-#: ../tools/net_applet:87 ../tools/net_applet:88 ../tools/net_applet:90
+#: ../bin/net_applet:88 ../bin/net_applet:89 ../bin/net_applet:91
#, c-format
msgid "Auto-detect"
msgstr "Автоматично засичане"
-#: ../tools/net_applet:95
+#: ../bin/net_applet:96
#, c-format
msgid "Active interfaces"
msgstr ""
-#: ../tools/net_applet:119
+#: ../bin/net_applet:120
#, c-format
msgid "Profiles"
msgstr "Профили"
-#: ../tools/net_applet:137
-#, c-format
-msgid "Get Online Help"
-msgstr ""
+#: ../bin/net_applet:130 ../lib/network/connection.pm:149
+#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
+#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
+#, fuzzy, c-format
+msgid "VPN connection"
+msgstr "LAN връзка"
-#: ../tools/net_applet:318
+#: ../bin/net_applet:319
#, fuzzy, c-format
msgid "Network connection"
msgstr "Мрежови опции"
-#: ../tools/net_applet:438
+#: ../bin/net_applet:443
#, c-format
msgid "More networks"
msgstr ""
-#: ../tools/net_applet:465
+#: ../bin/net_applet:470
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""
-#: ../tools/net_applet:470
+#: ../bin/net_applet:475
#, c-format
msgid "Always launch on startup"
msgstr "Винаги зареждай при стартиране"
-#: ../tools/net_applet:475
+#: ../bin/net_applet:480
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "Безжична връзка"
-#: ../tools/net_applet:482 ../tools/net_monitor:96
+#: ../bin/net_applet:487 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "Настройки"
-#: ../tools/net_applet:557
+#: ../bin/net_applet:562
#, fuzzy, c-format
msgid "Interactive Firewall: intrusion detected"
msgstr "Открита е настройка на Защитна Стена !"
-#: ../tools/net_applet:574
+#: ../bin/net_applet:579
#, fuzzy, c-format
msgid "What do you want to do with this attacker?"
msgstr "Искате ли да завършите играта?"
-#: ../tools/net_applet:577
+#: ../bin/net_applet:582
#, fuzzy, c-format
msgid "Attack details"
msgstr "Без подробности"
-#: ../tools/net_applet:581
+#: ../bin/net_applet:586
#, fuzzy, c-format
msgid "Attack time: %s"
msgstr "Действие:%s"
-#: ../tools/net_applet:582
+#: ../bin/net_applet:587
#, c-format
msgid "Network interface: %s"
msgstr "Мрежов интерфейс: %s"
-#: ../tools/net_applet:583
+#: ../bin/net_applet:588
#, fuzzy, c-format
msgid "Attack type: %s"
msgstr "тип: %s"
-#: ../tools/net_applet:584
+#: ../bin/net_applet:589
#, c-format
msgid "Protocol: %s"
msgstr "Протокол: %s"
-#: ../tools/net_applet:585
+#: ../bin/net_applet:590
#, fuzzy, c-format
msgid "Attacker IP address: %s"
msgstr "Статичен IP адрес"
-#: ../tools/net_applet:586
+#: ../bin/net_applet:591
#, fuzzy, c-format
msgid "Attacker hostname: %s"
msgstr "Установявам име на хост %s: "
-#: ../tools/net_applet:589
+#: ../bin/net_applet:594
#, fuzzy, c-format
msgid "Service attacked: %s"
msgstr "_Тип услуга:"
-#: ../tools/net_applet:590
+#: ../bin/net_applet:595
#, fuzzy, c-format
msgid "Port attacked: %s"
msgstr "Порт: %s"
-#: ../tools/net_applet:592
+#: ../bin/net_applet:597
#, c-format
msgid "Type of ICMP attack: %s"
msgstr ""
-#: ../tools/net_applet:597
+#: ../bin/net_applet:602
#, c-format
msgid "Always blacklist (do not ask again)"
msgstr ""
-#: ../tools/net_applet:612
+#: ../bin/net_applet:617
#, c-format
msgid "Ignore"
msgstr "Игнориране"
-#: ../tools/net_applet:630 ../tools/net_applet:643
+#: ../bin/net_applet:635 ../bin/net_applet:648
#, fuzzy, c-format
msgid "Interactive Firewall: new service"
msgstr "Открита е настройка на Защитна Стена !"
-#: ../tools/net_applet:654
+#: ../bin/net_applet:658
#, fuzzy, c-format
msgid "Do you want to open this service?"
msgstr "Искате ли да тествате настройките?"
-#: ../tools/net_applet:657
+#: ../bin/net_applet:661
#, fuzzy, c-format
msgid "Remember this answer"
msgstr "Запомня тази парола"
-#: ../tools/net_monitor:60 ../tools/net_monitor:65
+#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, c-format
msgid "Network Monitoring"
msgstr "Мониторинг на мрежата"
-#: ../tools/net_monitor:101
+#: ../bin/net_monitor:101
#, fuzzy, c-format
msgid "Global statistics"
msgstr "Статистики"
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr ""
-#: ../tools/net_monitor:104
+#: ../bin/net_monitor:104
#, c-format
msgid "Average"
msgstr "Средно"
-#: ../tools/net_monitor:105
+#: ../bin/net_monitor:105
#, fuzzy, c-format
msgid ""
"Sending\n"
"speed:"
msgstr "Скорост на изпращане:"
-#: ../tools/net_monitor:105 ../tools/net_monitor:106 ../tools/net_monitor:111
+#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "неизвестен"
-#: ../tools/net_monitor:106
+#: ../bin/net_monitor:106
#, fuzzy, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr "Скорост на получаване:"
-#: ../tools/net_monitor:110
+#: ../bin/net_monitor:110
#, fuzzy, c-format
msgid ""
"Connection\n"
"time: "
msgstr "Време на връзката: "
-#: ../tools/net_monitor:117
+#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""
-#: ../tools/net_monitor:136
+#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr "Почакайте, пробвам вашата връзка..."
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Disconnecting from Internet "
msgstr "Разкачвам от Интернет "
-#: ../tools/net_monitor:185 ../tools/net_monitor:198
+#: ../bin/net_monitor:185 ../bin/net_monitor:198
#, c-format
msgid "Connecting to Internet "
msgstr "Свързвам към Интернет"
-#: ../tools/net_monitor:229
+#: ../bin/net_monitor:229
#, c-format
msgid "Disconnection from Internet failed."
msgstr "Разкачването от Интернет е неуспешно"
-#: ../tools/net_monitor:230
+#: ../bin/net_monitor:230
#, c-format
msgid "Disconnection from Internet complete."
msgstr "Разкачването от Интернет е завършено"
-#: ../tools/net_monitor:232
+#: ../bin/net_monitor:232
#, c-format
msgid "Connection complete."
msgstr "Връзката е установена."
-#: ../tools/net_monitor:233
+#: ../bin/net_monitor:233
#, c-format
msgid ""
"Connection failed.\n"
@@ -5495,39 +3426,2120 @@ msgstr ""
"Връзката пропадна.\n"
"Проверете си конфигурацията в Контролен център на Mandriva Linux."
-#: ../tools/net_monitor:338
+#: ../bin/net_monitor:338
#, c-format
msgid "Color configuration"
msgstr "Конфигурация на цвят"
-#: ../tools/net_monitor:395 ../tools/net_monitor:407
+#: ../bin/net_monitor:395 ../bin/net_monitor:407
#, c-format
msgid "sent: "
msgstr "изпраща: "
-#: ../tools/net_monitor:398 ../tools/net_monitor:411
+#: ../bin/net_monitor:398 ../bin/net_monitor:411
#, c-format
msgid "received: "
msgstr "получено: "
-#: ../tools/net_monitor:401
+#: ../bin/net_monitor:401
#, c-format
msgid "average"
msgstr "средно"
-#: ../tools/net_monitor:404
+#: ../bin/net_monitor:404
#, c-format
msgid "Local measure"
msgstr "Локално измерване"
-#: ../tools/net_monitor:461
+#: ../bin/net_monitor:461
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../tools/net_monitor:472
+#: ../bin/net_monitor:472
#, fuzzy, c-format
msgid "No internet connection configured"
msgstr "Настройка на Интернет връзка"
+
+#: ../lib/network/connection.pm:16
+#, c-format
+msgid "Unknown connection type"
+msgstr "Неизвестен тип връзка"
+
+#: ../lib/network/connection.pm:115
+#, c-format
+msgid "Network access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:116
+#, c-format
+msgid "Access settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:117
+#, c-format
+msgid "Address settings"
+msgstr ""
+
+#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
+#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
+#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
+#, c-format
+msgid "None"
+msgstr "Без"
+
+#: ../lib/network/connection.pm:163
+#, c-format
+msgid "Allow users to manage the connection"
+msgstr ""
+
+#: ../lib/network/connection.pm:164
+#, c-format
+msgid "Start the connection at boot"
+msgstr ""
+
+#: ../lib/network/connection.pm:230
+#, fuzzy, c-format
+msgid "Link detected on interface %s"
+msgstr "засечен на порт %s"
+
+#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:273
+#, c-format
+msgid "Link beat lost on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:13
+#, c-format
+msgid "Cable"
+msgstr ""
+
+#: ../lib/network/connection/cable.pm:14
+#, fuzzy, c-format
+msgid "Cable modem"
+msgstr "Модел на карта:"
+
+#: ../lib/network/connection/cable.pm:45
+#, c-format
+msgid "Use BPALogin (needed for Telstra)"
+msgstr ""
+
+#: ../lib/network/connection/cellular.pm:47
+#, c-format
+msgid "Access Point Name"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:10
+#, c-format
+msgid "Bluetooth"
+msgstr ""
+
+#: ../lib/network/connection/cellular_bluetooth.pm:11
+#, c-format
+msgid "Bluetooth Dial Up Networking"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:8
+#, c-format
+msgid "GPRS/Edge/3G"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:67
+#: ../lib/network/vpn/openvpn.pm:391
+#, c-format
+msgid "PIN number"
+msgstr ""
+
+#: ../lib/network/connection/cellular_card.pm:130
+#, fuzzy, c-format
+msgid "Unable to open device %s"
+msgstr "Не мога да направя 'fork': %s"
+
+#: ../lib/network/connection/cellular_card.pm:155
+#, fuzzy, c-format
+msgid "Please check that your SIM card is inserted."
+msgstr "Моля, изберете порт към който свързан принтера ви."
+
+#: ../lib/network/connection/cellular_card.pm:161
+#, c-format
+msgid ""
+"You entered a wrong PIN code.\n"
+"Entering the wrong PIN code multiple times may lock your SIM card!"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:12
+#, c-format
+msgid "DVB"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:13
+#, c-format
+msgid "Satellite (DVB)"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:56
+#, c-format
+msgid "Adapter card"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:57
+#, c-format
+msgid "Net demux"
+msgstr ""
+
+#: ../lib/network/connection/dvb.pm:58
+#, c-format
+msgid "PID"
+msgstr "Процес"
+
+#: ../lib/network/connection/ethernet.pm:10
+#, c-format
+msgid "Ethernet"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:53
+#, c-format
+msgid "Unable to find network interface for selected device (using %s driver)."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#, c-format
+msgid "Manual configuration"
+msgstr "Ръчна настройка"
+
+#: ../lib/network/connection/ethernet.pm:62
+#, fuzzy, c-format
+msgid "Automatic IP (BOOTP/DHCP)"
+msgstr "Автоматичен IP адрес"
+
+#: ../lib/network/connection/ethernet.pm:116
+#, fuzzy, c-format
+msgid "IP settings"
+msgstr "PLL настройки:"
+
+#: ../lib/network/connection/ethernet.pm:129
+#, 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)."
+msgstr ""
+"Моля, въведете IP настройките за тази машина.\n"
+"Всяко устройство трябва да бъде въведено като IP адрес\n"
+"с точково-десетично означение (например, 1.2.3.4)."
+
+#: ../lib/network/connection/ethernet.pm:138
+#, fuzzy, c-format
+msgid "DNS server 1"
+msgstr "DNS сървър"
+
+#: ../lib/network/connection/ethernet.pm:139
+#, fuzzy, c-format
+msgid "DNS server 2"
+msgstr "DNS сървър"
+
+#: ../lib/network/connection/ethernet.pm:140
+#, fuzzy, c-format
+msgid "Search domain"
+msgstr "NIS домейн"
+
+#: ../lib/network/connection/ethernet.pm:141
+#, c-format
+msgid "By default search domain will be set from the fully-qualified host name"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:149
+#, c-format
+msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:170
+#, c-format
+msgid "Warning: IP address %s is usually reserved!"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:176
+#, c-format
+msgid "%s already in use\n"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:224
+#, c-format
+msgid "Enable IPv6 to IPv4 tunnel"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:272
+#, c-format
+msgid "Link beat detected on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:275
+#, c-format
+msgid "Requesting a network address on interface %s (%s protocol)..."
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:276
+#, c-format
+msgid "Got a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/ethernet.pm:277
+#, c-format
+msgid "Failed to get a network address on interface %s (%s protocol)"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:8
+#, c-format
+msgid "ISDN"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
+#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
+#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
+#: ../lib/network/netconnect.pm:562
+#, c-format
+msgid "Unlisted - edit manually"
+msgstr ""
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "I do not know"
+msgstr "Не знам"
+
+#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "PCI"
+msgstr "PCI"
+
+#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
+#, c-format
+msgid "USB"
+msgstr "USB"
+
+#. -PO: POTS means "Plain old telephone service"
+#: ../lib/network/connection/pots.pm:10
+#, c-format
+msgid "POTS"
+msgstr ""
+
+#. -PO: POTS means "Plain old telephone service"
+#. -PO: remove it if it doesn't have an equivalent in your language
+#. -PO: for example, in French, it can be translated as "RTC"
+#: ../lib/network/connection/pots.pm:16
+#, c-format
+msgid "Analog telephone modem (POTS)"
+msgstr ""
+
+#: ../lib/network/connection/providers/cellular.pm:13
+#: ../lib/network/connection/providers/cellular.pm:18
+#: ../lib/network/connection/providers/cellular.pm:23
+#: ../lib/network/connection/providers/xdsl.pm:492
+#: ../lib/network/connection/providers/xdsl.pm:504
+#: ../lib/network/connection/providers/xdsl.pm:516
+#: ../lib/network/connection/providers/xdsl.pm:528
+#: ../lib/network/connection/providers/xdsl.pm:539
+#: ../lib/network/connection/providers/xdsl.pm:551
+#: ../lib/network/connection/providers/xdsl.pm:563
+#: ../lib/network/connection/providers/xdsl.pm:575
+#: ../lib/network/connection/providers/xdsl.pm:588
+#: ../lib/network/connection/providers/xdsl.pm:599
+#: ../lib/network/connection/providers/xdsl.pm:610
+#: ../lib/network/netconnect.pm:33
+#, c-format
+msgid "France"
+msgstr "Франция"
+
+#: ../lib/network/connection/providers/xdsl.pm:47
+#: ../lib/network/connection/providers/xdsl.pm:57
+#, c-format
+msgid "Algeria"
+msgstr "Алжир"
+
+#: ../lib/network/connection/providers/xdsl.pm:67
+#: ../lib/network/connection/providers/xdsl.pm:77
+#, c-format
+msgid "Argentina"
+msgstr "Аржентина"
+
+#: ../lib/network/connection/providers/xdsl.pm:87
+#: ../lib/network/connection/providers/xdsl.pm:96
+#: ../lib/network/connection/providers/xdsl.pm:105
+#, c-format
+msgid "Austria"
+msgstr "Австрия"
+
+#: ../lib/network/connection/providers/xdsl.pm:114
+#: ../lib/network/connection/providers/xdsl.pm:124
+#: ../lib/network/connection/providers/xdsl.pm:134
+#, c-format
+msgid "Australia"
+msgstr "Австралия"
+
+#: ../lib/network/connection/providers/xdsl.pm:144
+#: ../lib/network/connection/providers/xdsl.pm:153
+#: ../lib/network/connection/providers/xdsl.pm:164
+#: ../lib/network/connection/providers/xdsl.pm:173
+#: ../lib/network/connection/providers/xdsl.pm:182
+#: ../lib/network/netconnect.pm:36
+#, c-format
+msgid "Belgium"
+msgstr "Белгия"
+
+#: ../lib/network/connection/providers/xdsl.pm:191
+#: ../lib/network/connection/providers/xdsl.pm:201
+#: ../lib/network/connection/providers/xdsl.pm:210
+#: ../lib/network/connection/providers/xdsl.pm:219
+#, c-format
+msgid "Brazil"
+msgstr "Бразилия"
+
+#: ../lib/network/connection/providers/xdsl.pm:228
+#: ../lib/network/connection/providers/xdsl.pm:237
+#, c-format
+msgid "Bulgaria"
+msgstr "България"
+
+#: ../lib/network/connection/providers/xdsl.pm:246
+#: ../lib/network/connection/providers/xdsl.pm:255
+#: ../lib/network/connection/providers/xdsl.pm:264
+#: ../lib/network/connection/providers/xdsl.pm:273
+#: ../lib/network/connection/providers/xdsl.pm:282
+#: ../lib/network/connection/providers/xdsl.pm:291
+#: ../lib/network/connection/providers/xdsl.pm:300
+#: ../lib/network/connection/providers/xdsl.pm:309
+#: ../lib/network/connection/providers/xdsl.pm:318
+#: ../lib/network/connection/providers/xdsl.pm:327
+#: ../lib/network/connection/providers/xdsl.pm:336
+#: ../lib/network/connection/providers/xdsl.pm:345
+#: ../lib/network/connection/providers/xdsl.pm:354
+#: ../lib/network/connection/providers/xdsl.pm:363
+#: ../lib/network/connection/providers/xdsl.pm:372
+#: ../lib/network/connection/providers/xdsl.pm:381
+#: ../lib/network/connection/providers/xdsl.pm:390
+#: ../lib/network/connection/providers/xdsl.pm:399
+#: ../lib/network/connection/providers/xdsl.pm:408
+#: ../lib/network/connection/providers/xdsl.pm:417
+#, c-format
+msgid "China"
+msgstr "Китай"
+
+#: ../lib/network/connection/providers/xdsl.pm:426
+#: ../lib/network/connection/providers/xdsl.pm:436
+#, c-format
+msgid "Czech Republic"
+msgstr "Чешка Република"
+
+#: ../lib/network/connection/providers/xdsl.pm:446
+#: ../lib/network/connection/providers/xdsl.pm:455
+#: ../lib/network/connection/providers/xdsl.pm:464
+#, c-format
+msgid "Denmark"
+msgstr "Дания"
+
+#: ../lib/network/connection/providers/xdsl.pm:473
+#, c-format
+msgid "Egypt"
+msgstr "Египет"
+
+#: ../lib/network/connection/providers/xdsl.pm:483
+#, c-format
+msgid "Finland"
+msgstr "Финландия"
+
+#: ../lib/network/connection/providers/xdsl.pm:621
+#: ../lib/network/connection/providers/xdsl.pm:630
+#: ../lib/network/connection/providers/xdsl.pm:640
+#, c-format
+msgid "Germany"
+msgstr "Германия"
+
+#: ../lib/network/connection/providers/xdsl.pm:650
+#, c-format
+msgid "Greece"
+msgstr "Гърция"
+
+#: ../lib/network/connection/providers/xdsl.pm:659
+#, c-format
+msgid "Hungary"
+msgstr "Унгария"
+
+#: ../lib/network/connection/providers/xdsl.pm:668
+#, c-format
+msgid "Ireland"
+msgstr "Ирландия"
+
+#: ../lib/network/connection/providers/xdsl.pm:677
+#, c-format
+msgid "Israel"
+msgstr "Израел"
+
+#: ../lib/network/connection/providers/xdsl.pm:687
+#, c-format
+msgid "India"
+msgstr "Индия"
+
+#: ../lib/network/connection/providers/xdsl.pm:696
+#: ../lib/network/connection/providers/xdsl.pm:705
+#, c-format
+msgid "Iceland"
+msgstr "Исландия"
+
+#: ../lib/network/connection/providers/xdsl.pm:714
+#: ../lib/network/connection/providers/xdsl.pm:725
+#: ../lib/network/connection/providers/xdsl.pm:735
+#: ../lib/network/connection/providers/xdsl.pm:746
+#: ../lib/network/netconnect.pm:35
+#, c-format
+msgid "Italy"
+msgstr "Италия"
+
+#: ../lib/network/connection/providers/xdsl.pm:758
+#, c-format
+msgid "Sri Lanka"
+msgstr "Шри Ланка"
+
+#: ../lib/network/connection/providers/xdsl.pm:770
+#, c-format
+msgid "Lithuania"
+msgstr "Литва"
+
+#: ../lib/network/connection/providers/xdsl.pm:779
+#: ../lib/network/connection/providers/xdsl.pm:789
+#, c-format
+msgid "Mauritius"
+msgstr "Мавриций"
+
+#: ../lib/network/connection/providers/xdsl.pm:800
+#, c-format
+msgid "Morocco"
+msgstr "Мароко"
+
+#: ../lib/network/connection/providers/xdsl.pm:810
+#: ../lib/network/connection/providers/xdsl.pm:819
+#: ../lib/network/connection/providers/xdsl.pm:828
+#: ../lib/network/connection/providers/xdsl.pm:837
+#: ../lib/network/netconnect.pm:34
+#, c-format
+msgid "Netherlands"
+msgstr "Холандия"
+
+#: ../lib/network/connection/providers/xdsl.pm:846
+#: ../lib/network/connection/providers/xdsl.pm:852
+#: ../lib/network/connection/providers/xdsl.pm:858
+#: ../lib/network/connection/providers/xdsl.pm:864
+#: ../lib/network/connection/providers/xdsl.pm:870
+#: ../lib/network/connection/providers/xdsl.pm:876
+#: ../lib/network/connection/providers/xdsl.pm:882
+#, c-format
+msgid "Norway"
+msgstr "Норвегия"
+
+#: ../lib/network/connection/providers/xdsl.pm:890
+#, c-format
+msgid "Pakistan"
+msgstr "Пакистан"
+
+#: ../lib/network/connection/providers/xdsl.pm:901
+#: ../lib/network/connection/providers/xdsl.pm:911
+#, c-format
+msgid "Poland"
+msgstr "Полша"
+
+#: ../lib/network/connection/providers/xdsl.pm:922
+#, c-format
+msgid "Portugal"
+msgstr "Португалия"
+
+#: ../lib/network/connection/providers/xdsl.pm:931
+#, c-format
+msgid "Russia"
+msgstr "Русия"
+
+#: ../lib/network/connection/providers/xdsl.pm:942
+#, c-format
+msgid "Singapore"
+msgstr "Сингапур"
+
+#: ../lib/network/connection/providers/xdsl.pm:951
+#, c-format
+msgid "Senegal"
+msgstr "Сенегал"
+
+#: ../lib/network/connection/providers/xdsl.pm:961
+#, c-format
+msgid "Slovenia"
+msgstr "Словения"
+
+#: ../lib/network/connection/providers/xdsl.pm:972
+#: ../lib/network/connection/providers/xdsl.pm:984
+#: ../lib/network/connection/providers/xdsl.pm:996
+#: ../lib/network/connection/providers/xdsl.pm:1009
+#: ../lib/network/connection/providers/xdsl.pm:1019
+#: ../lib/network/connection/providers/xdsl.pm:1029
+#: ../lib/network/connection/providers/xdsl.pm:1040
+#: ../lib/network/connection/providers/xdsl.pm:1050
+#: ../lib/network/connection/providers/xdsl.pm:1060
+#: ../lib/network/connection/providers/xdsl.pm:1070
+#: ../lib/network/connection/providers/xdsl.pm:1080
+#: ../lib/network/connection/providers/xdsl.pm:1090
+#: ../lib/network/connection/providers/xdsl.pm:1101
+#: ../lib/network/connection/providers/xdsl.pm:1112
+#: ../lib/network/connection/providers/xdsl.pm:1124
+#: ../lib/network/connection/providers/xdsl.pm:1136
+#, c-format
+msgid "Spain"
+msgstr "Испания"
+
+#: ../lib/network/connection/providers/xdsl.pm:1149
+#, c-format
+msgid "Sweden"
+msgstr "Швеция"
+
+#: ../lib/network/connection/providers/xdsl.pm:1158
+#: ../lib/network/connection/providers/xdsl.pm:1167
+#: ../lib/network/connection/providers/xdsl.pm:1177
+#, c-format
+msgid "Switzerland"
+msgstr "Швейцария"
+
+#: ../lib/network/connection/providers/xdsl.pm:1186
+#, c-format
+msgid "Thailand"
+msgstr "Тайланд"
+
+#: ../lib/network/connection/providers/xdsl.pm:1196
+#, c-format
+msgid "Tunisia"
+msgstr "Тунис"
+
+#: ../lib/network/connection/providers/xdsl.pm:1207
+#, c-format
+msgid "Turkey"
+msgstr "Турция"
+
+#: ../lib/network/connection/providers/xdsl.pm:1220
+#, c-format
+msgid "United Arab Emirates"
+msgstr "Обединени Арабски Емирства"
+
+#: ../lib/network/connection/providers/xdsl.pm:1230
+#: ../lib/network/connection/providers/xdsl.pm:1240
+#: ../lib/network/netconnect.pm:38
+#, c-format
+msgid "United Kingdom"
+msgstr "Англия"
+
+#: ../lib/network/connection/wireless.pm:11
+#, c-format
+msgid "Wireless"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:27
+#, c-format
+msgid "Use a Windows driver (with ndiswrapper)"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:44
+#, c-format
+msgid "Open WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:45
+#, c-format
+msgid "Restricted WEP"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:46
+#, c-format
+msgid "WPA Pre-Shared Key"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:182 ../lib/network/thirdparty.pm:175
+#, c-format
+msgid "Firmware files are required for this device."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:248
+#, c-format
+msgid ""
+"Your wireless card is disabled, please enable the wireless switch (RF kill "
+"switch) first."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:307
+#, fuzzy, c-format
+msgid "Wireless settings"
+msgstr "Безжична връзка"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Ad-hoc"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Managed"
+msgstr "Управляем"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Master"
+msgstr "Главен"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Repeater"
+msgstr "Повтаряем"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Secondary"
+msgstr "Вторичен"
+
+#: ../lib/network/connection/wireless.pm:313
+#, c-format
+msgid "Auto"
+msgstr "Автоматично"
+
+#: ../lib/network/connection/wireless.pm:318
+#, c-format
+msgid "Encryption mode"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:327
+#, c-format
+msgid ""
+"RTS/CTS adds a handshake before each packet transmission to make sure that "
+"the\n"
+"channel is clear. This adds overhead, but increase performance in case of "
+"hidden\n"
+"nodes or large number of active nodes. This parameter sets the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, "
+"fixed\n"
+"or off."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:336
+#, c-format
+msgid ""
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
+"as the hostname).\n"
+"\n"
+"See iwconfig(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:344
+#, c-format
+msgid ""
+"iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
+"\n"
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:354
+#, c-format
+msgid ""
+"iwpriv enable to set up optionals (private) parameters of a wireless "
+"network\n"
+"interface.\n"
+"\n"
+"iwpriv deals with parameters and setting specific to each driver (as opposed "
+"to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to "
+"use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:372
+#, c-format
+msgid "An encryption key is required."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:378
+#, 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 ""
+
+#: ../lib/network/connection/wireless.pm:384
+#, c-format
+msgid ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:396
+#, c-format
+msgid "Allow access point roaming"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:499
+#, c-format
+msgid "Associated to wireless network \"%s\" on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/wireless.pm:500
+#, c-format
+msgid "Lost association to wireless network on interface %s"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:8
+#, fuzzy, c-format
+msgid "DSL"
+msgstr "SSL"
+
+#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
+#, fuzzy, c-format
+msgid "Alcatel speedtouch USB modem"
+msgstr "Alcatel speedtouch USB"
+
+#: ../lib/network/connection/xdsl.pm:104
+#, c-format
+msgid ""
+"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
+"problem.\n"
+"\n"
+"You can find a driver on http://eciadsl.flashtux.org/"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:176
+#, c-format
+msgid "DSL over CAPI"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:179
+#, c-format
+msgid "Dynamic Host Configuration Protocol (DHCP)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:180
+#, fuzzy, c-format
+msgid "Manual TCP/IP configuration"
+msgstr "Ръчна настройка"
+
+#: ../lib/network/connection/xdsl.pm:181
+#, c-format
+msgid "Point to Point Tunneling Protocol (PPTP)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:182
+#, c-format
+msgid "PPP over Ethernet (PPPoE)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:183
+#, c-format
+msgid "PPP over ATM (PPPoA)"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:223
+#, c-format
+msgid "Virtual Path ID (VPI):"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:224
+#, c-format
+msgid "Virtual Circuit ID (VCI):"
+msgstr ""
+
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakvpn.pm:45 ../lib/network/netconnect.pm:131
+#: ../lib/network/thirdparty.pm:115
+#, fuzzy, c-format
+msgid "Could not install the packages (%s)!"
+msgstr "Инсталиране на пакета %s"
+
+#: ../lib/network/drakfirewall.pm:12
+#, c-format
+msgid "Web Server"
+msgstr "Web Сървър"
+
+#: ../lib/network/drakfirewall.pm:17
+#, c-format
+msgid "Domain Name Server"
+msgstr "Domain Name Server"
+
+#: ../lib/network/drakfirewall.pm:22
+#, fuzzy, c-format
+msgid "SSH server"
+msgstr "SSH Сървър"
+
+#: ../lib/network/drakfirewall.pm:27
+#, c-format
+msgid "FTP server"
+msgstr "FTP сървър"
+
+#: ../lib/network/drakfirewall.pm:32
+#, c-format
+msgid "Mail Server"
+msgstr "Пощенски сървър"
+
+#: ../lib/network/drakfirewall.pm:37
+#, c-format
+msgid "POP and IMAP Server"
+msgstr "POP и IMAP сървър"
+
+#: ../lib/network/drakfirewall.pm:42
+#, fuzzy, c-format
+msgid "Telnet server"
+msgstr "X сървър"
+
+#: ../lib/network/drakfirewall.pm:48
+#, c-format
+msgid "Windows Files Sharing (SMB)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:54
+#, fuzzy, c-format
+msgid "CUPS server"
+msgstr "DNS сървър"
+
+#: ../lib/network/drakfirewall.pm:60
+#, c-format
+msgid "Echo request (ping)"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:65
+#, c-format
+msgid "BitTorrent"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:74
+#, c-format
+msgid "Port scan detection"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
+#, fuzzy, c-format
+msgid "Firewall configuration"
+msgstr "Ръчна настройка"
+
+#: ../lib/network/drakfirewall.pm:166
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Mandriva Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized Mandriva Security Firewall distribution."
+msgstr ""
+"Настройчик за малка защитна стена\n"
+"\n"
+"Това настройва персонална защитна стена за тази Mandriva Linux машина.\n"
+"За мощно постветено на защитата решение, моле, погледнете специализираната\n"
+"Mandriva Security Firewall дистрибуция."
+
+#: ../lib/network/drakfirewall.pm:172
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
+"\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+"drakfirewall конфигурация\n"
+"\n"
+"Убедете се, че вие имате конфигуриран Интернет/Интранет достъп с\n"
+"drakconnect преди да правите други неща по-нататък."
+
+#: ../lib/network/drakfirewall.pm:189
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
+#, c-format
+msgid "Firewall"
+msgstr "Защитна стена"
+
+#: ../lib/network/drakfirewall.pm:192
+#, c-format
+msgid ""
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Have a look at /etc/services for information."
+msgstr ""
+"Вие може да въведете други портове. \n"
+"Валидни са например: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
+"Погледнете в /etc/services за информация"
+
+#: ../lib/network/drakfirewall.pm:198
+#, fuzzy, 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.\n"
+"\n"
+"You can also give a range of ports (eg: 24300:24350/udp)"
+msgstr ""
+"Зададен е грешен порт: %s.\n"
+"Форматът е \"port/tcp\" или \"port/udp\", \n"
+"където порт е между 1 и 65535."
+
+#: ../lib/network/drakfirewall.pm:208
+#, c-format
+msgid "Everything (no firewall)"
+msgstr "Всичко (без firewall)"
+
+#: ../lib/network/drakfirewall.pm:210
+#, c-format
+msgid "Other ports"
+msgstr "Други портовете"
+
+#: ../lib/network/drakfirewall.pm:211
+#, c-format
+msgid "Log firewall messages in system logs"
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:256
+#, c-format
+msgid ""
+"You can be warned when someone accesses to a service or tries to intrude "
+"into your computer.\n"
+"Please select which network activities should be watched."
+msgstr ""
+
+#: ../lib/network/drakfirewall.pm:261
+#, c-format
+msgid "Use Interactive Firewall"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:29
+#, c-format
+msgid "No device found"
+msgstr "Не беше открито устройство"
+
+#: ../lib/network/drakroam.pm:63 ../lib/network/drakroam.pm:161
+#, fuzzy, c-format
+msgid "Please enter settings for network"
+msgstr "Подробна информация"
+
+#: ../lib/network/drakroam.pm:67 ../lib/network/netconnect.pm:177
+#, fuzzy, c-format
+msgid "Configuring device..."
+msgstr "Настройка ..."
+
+#: ../lib/network/drakroam.pm:95
+#, c-format
+msgid "Hostname changed to \"%s\""
+msgstr ""
+
+#: ../lib/network/drakroam.pm:108 ../lib/network/netconnect.pm:209
+#, fuzzy, c-format
+msgid "Scanning for networks..."
+msgstr "Стартиране мрежата...."
+
+#: ../lib/network/drakroam.pm:200
+#, fuzzy, c-format
+msgid "Connecting..."
+msgstr "Свързване ..."
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Disconnect"
+msgstr "Разкачване"
+
+#: ../lib/network/drakroam.pm:227
+#, c-format
+msgid "Connect"
+msgstr "Връзка"
+
+#: ../lib/network/drakroam.pm:250
+#, fuzzy, c-format
+msgid "Disconnecting..."
+msgstr "Отвързване ..."
+
+#: ../lib/network/drakroam.pm:279
+#, c-format
+msgid "SSID"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:280
+#, c-format
+msgid "Signal strength"
+msgstr ""
+
+#: ../lib/network/drakroam.pm:281
+#, c-format
+msgid "Encryption"
+msgstr "Криптиране"
+
+#: ../lib/network/drakroam.pm:335 ../lib/network/netconnect.pm:761
+#, c-format
+msgid "Wireless connection"
+msgstr "Безжична връзка"
+
+#: ../lib/network/drakroam.pm:350
+#, c-format
+msgid "Configure"
+msgstr "Настрока"
+
+#: ../lib/network/drakroam.pm:352
+#, c-format
+msgid "Refresh"
+msgstr "Опресни"
+
+#: ../lib/network/drakvpn.pm:30
+#, fuzzy, c-format
+msgid "VPN configuration"
+msgstr "CUPS конфигурация"
+
+#: ../lib/network/drakvpn.pm:34
+#, fuzzy, c-format
+msgid "Choose the VPN type"
+msgstr "Изберете нова големина"
+
+#: ../lib/network/drakvpn.pm:49
+#, c-format
+msgid "Initializing tools and detecting devices for %s..."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:52
+#, fuzzy, c-format
+msgid "Unable to initialize %s connection type!"
+msgstr "Неизвестен тип връзка"
+
+#: ../lib/network/drakvpn.pm:60
+#, c-format
+msgid "Please select an existing VPN connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:64
+#, fuzzy, c-format
+msgid "Configure a new connection..."
+msgstr "Изпробване на връзката..."
+
+#: ../lib/network/drakvpn.pm:66
+#, fuzzy, c-format
+msgid "New name"
+msgstr "Истинско име"
+
+#: ../lib/network/drakvpn.pm:70
+#, c-format
+msgid "You must select an existing connection or enter a new name."
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:81
+#, fuzzy, c-format
+msgid "Please enter the required key(s)"
+msgstr "Моля въведете WebDAV сървър URL"
+
+#: ../lib/network/drakvpn.pm:86
+#, fuzzy, c-format
+msgid "Please enter the settings of your VPN connection"
+msgstr "Не мога да се свръжа с огледален сървър' %s"
+
+#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
+#, c-format
+msgid "Do you want to start the connection now?"
+msgstr ""
+
+#: ../lib/network/drakvpn.pm:100
+#, fuzzy, c-format
+msgid "Connection failed."
+msgstr "Име на връзката"
+
+#: ../lib/network/drakvpn.pm:108
+#, c-format
+msgid ""
+"The VPN connection is now configured.\n"
+"\n"
+"This VPN connection can be automatically started together with a network "
+"connection.\n"
+"It can be done by reconfiguring the network connection and selecting this "
+"VPN connection.\n"
+msgstr ""
+
+#: ../lib/network/ifw.pm:129
+#, fuzzy, c-format
+msgid "Port scanning"
+msgstr "Не поделя"
+
+#: ../lib/network/ifw.pm:130
+#, fuzzy, c-format
+msgid "Service attack"
+msgstr "_Тип услуга:"
+
+#: ../lib/network/ifw.pm:131
+#, fuzzy, c-format
+msgid "Password cracking"
+msgstr "Парола (отново)"
+
+#: ../lib/network/ifw.pm:132
+#, c-format
+msgid "\"%s\" attack"
+msgstr ""
+
+#: ../lib/network/ifw.pm:134
+#, c-format
+msgid "A port scanning attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:135
+#, fuzzy, c-format
+msgid "The %s service has been attacked by %s."
+msgstr "Това събитие е било променено."
+
+#: ../lib/network/ifw.pm:136
+#, c-format
+msgid "A password cracking attack has been attempted by %s."
+msgstr ""
+
+#: ../lib/network/ifw.pm:137
+#, fuzzy, c-format
+msgid "A \"%s\" attack has been attempted by %s"
+msgstr "Това събитие е било променено."
+
+#: ../lib/network/ifw.pm:146
+#, c-format
+msgid ""
+"The \"%s\" application is trying to make a service (%s) available to the "
+"network."
+msgstr ""
+
+#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
+#: ../lib/network/ifw.pm:150
+#, fuzzy, c-format
+msgid "port %d"
+msgstr "Рапорт"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#, c-format
+msgid "Manual"
+msgstr "Ръчно"
+
+#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
+#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
+#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
+#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
+#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
+#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
+#: ../lib/network/netconnect.pm:638
+#, c-format
+msgid "Automatic"
+msgstr "Автоматично"
+
+#: ../lib/network/ndiswrapper.pm:27
+#, c-format
+msgid "No device supporting the %s ndiswrapper driver is present!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:33
+#, c-format
+msgid "Please select the Windows driver (.inf file)"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:42
+#, c-format
+msgid "Unable to install the %s ndiswrapper driver!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:86
+#, c-format
+msgid "Unable to load the ndiswrapper module!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:92
+#, c-format
+msgid ""
+"The selected device has already been configured with the %s driver.\n"
+"Do you really want to use a ndiswrapper driver?"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:102
+#, c-format
+msgid "Unable to find the ndiswrapper interface!"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:115
+#, fuzzy, c-format
+msgid "Choose an ndiswrapper driver"
+msgstr "Избор на случаен драйвер"
+
+#: ../lib/network/ndiswrapper.pm:118
+#, c-format
+msgid "Use the ndiswrapper driver %s"
+msgstr ""
+
+#: ../lib/network/ndiswrapper.pm:118
+#, fuzzy, c-format
+msgid "Install a new driver"
+msgstr "Инсталиране на системата"
+
+#: ../lib/network/ndiswrapper.pm:129
+#, c-format
+msgid "Select a device:"
+msgstr ""
+
+#: ../lib/network/netcenter.pm:55
+#, fuzzy, c-format
+msgid "Network Center"
+msgstr "Мрежов интерфейс"
+
+#: ../lib/network/netconnect.pm:37
+#, c-format
+msgid "United States"
+msgstr "САЩ"
+
+#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
+#: ../lib/network/netconnect.pm:507
+#, fuzzy, c-format
+msgid "Manual choice"
+msgstr "ръчно"
+
+#: ../lib/network/netconnect.pm:60
+#, c-format
+msgid "Internal ISDN card"
+msgstr "Вътрешна ISDN карта"
+
+#: ../lib/network/netconnect.pm:65
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr "Протокол за останалия свят"
+
+#: ../lib/network/netconnect.pm:123
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "Изберете връзката, който искате да използвате"
+
+#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
+#: ../lib/network/netconnect.pm:788
+#, fuzzy, c-format
+msgid "Select the network interface to configure:"
+msgstr "Изберете мрежов интерфейс"
+
+#: ../lib/network/netconnect.pm:164
+#, c-format
+msgid "No device can be found for this connection type."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:173
+#, fuzzy, c-format
+msgid "Hardware Configuration"
+msgstr "Настройка на мрежата"
+
+#: ../lib/network/netconnect.pm:194
+#, c-format
+msgid "Please select your provider:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:212
+#, c-format
+msgid "Please select your network:"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:241
+#, c-format
+msgid ""
+"Please select your connection protocol.\n"
+"If you do not know it, keep the preselected protocol."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
+#, c-format
+msgid "Connection control"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Connection Configuration"
+msgstr "Настройка на връзката"
+
+#: ../lib/network/netconnect.pm:315
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "Моля, попълнете или проверете полето по-долу"
+
+#: ../lib/network/netconnect.pm:318
+#, c-format
+msgid "Your personal phone number"
+msgstr "Личния ви телефонен номер"
+
+#: ../lib/network/netconnect.pm:319
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "Име на доставчика (напр. provider.net)"
+
+#: ../lib/network/netconnect.pm:321
+#, fuzzy, c-format
+msgid "Provider DNS 1 (optional)"
+msgstr "1-ви DNS на доставчика (по желание)"
+
+#: ../lib/network/netconnect.pm:322
+#, fuzzy, c-format
+msgid "Provider DNS 2 (optional)"
+msgstr "2-ри DNS на доставчика (по желание)"
+
+#: ../lib/network/netconnect.pm:332
+#, c-format
+msgid "Card IO_1"
+msgstr "IO_1 на картата"
+
+#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
+#, c-format
+msgid "External ISDN modem"
+msgstr "Външен ISDN модем"
+
+#: ../lib/network/netconnect.pm:384
+#, c-format
+msgid "Select a device!"
+msgstr "Изберете устройство !"
+
+#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
+#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid "ISDN Configuration"
+msgstr "Настройка на IDSN"
+
+#: ../lib/network/netconnect.pm:394
+#, c-format
+msgid "What kind of card do you have?"
+msgstr "Какъв тип карта имате ?"
+
+#: ../lib/network/netconnect.pm:404
+#, 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 карта, стойностите на следващия екран трябва да са верни.\n"
+"\n"
+"Ако имате PCMCIA карта, ще трябва да знаете IRC и IO на картата си.\n"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Continue"
+msgstr "Нататък"
+
+#: ../lib/network/netconnect.pm:408
+#, c-format
+msgid "Abort"
+msgstr "Отказ"
+
+#: ../lib/network/netconnect.pm:414
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "Коя от следните ISDN картати е вашата ?"
+
+#: ../lib/network/netconnect.pm:432
+#, c-format
+msgid ""
+"A CAPI driver is available for this modem. This CAPI driver can offer more "
+"capabilities than the free driver (like sending faxes). Which driver do you "
+"want to use?"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:446
+#, c-format
+msgid "Which protocol do you want to use?"
+msgstr "Какъв протокол желаете да промените ?"
+
+#: ../lib/network/netconnect.pm:460
+#, c-format
+msgid ""
+"Select your provider.\n"
+"If it is not listed, choose Unlisted."
+msgstr ""
+"Посочете доставчика си.\n"
+" Ако не е в списъка, изберете Unlisted"
+
+#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
+#, fuzzy, c-format
+msgid "Provider:"
+msgstr "Профил: "
+
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid ""
+"Your modem is not supported by the system.\n"
+"Take a look at http://www.linmodems.org"
+msgstr ""
+"Вашият модем не се поддържа от системата.\n"
+"Погледнете в http://www.linmodems.org"
+
+#: ../lib/network/netconnect.pm:490
+#, fuzzy, c-format
+msgid "Select the modem to configure:"
+msgstr "Изберете мрежов интерфейс"
+
+#: ../lib/network/netconnect.pm:492
+#, c-format
+msgid "Modem"
+msgstr "Модем"
+
+#: ../lib/network/netconnect.pm:527
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Моля, изберете сериен порт към който свързан модемът ви."
+
+#: ../lib/network/netconnect.pm:556
+#, fuzzy, c-format
+msgid "Select your provider:"
+msgstr "Изберете принтерен spooler"
+
+#: ../lib/network/netconnect.pm:580
+#, fuzzy, c-format
+msgid "Dialup: account options"
+msgstr "Опции за избиране по телефон"
+
+#: ../lib/network/netconnect.pm:583
+#, c-format
+msgid "Connection name"
+msgstr "Име на връзката"
+
+#: ../lib/network/netconnect.pm:584
+#, c-format
+msgid "Phone number"
+msgstr "Телефонен номер"
+
+#: ../lib/network/netconnect.pm:585
+#, c-format
+msgid "Login ID"
+msgstr "Потребителско име"
+
+#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
+#, fuzzy, c-format
+msgid "Dialup: IP parameters"
+msgstr "Параметри"
+
+#: ../lib/network/netconnect.pm:603
+#, fuzzy, c-format
+msgid "IP parameters"
+msgstr "Параметри"
+
+#: ../lib/network/netconnect.pm:605
+#, fuzzy, c-format
+msgid "Subnet mask"
+msgstr "Маска на подмрежа:"
+
+#: ../lib/network/netconnect.pm:617
+#, c-format
+msgid "Dialup: DNS parameters"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:620
+#, c-format
+msgid "DNS"
+msgstr "Домейн"
+
+#: ../lib/network/netconnect.pm:621
+#, c-format
+msgid "Domain name"
+msgstr "Име на домейна"
+
+#: ../lib/network/netconnect.pm:624
+#, fuzzy, c-format
+msgid "Set hostname from IP"
+msgstr "Име на хост за принтера или IP"
+
+#: ../lib/network/netconnect.pm:637
+#, fuzzy, c-format
+msgid "Gateway IP address"
+msgstr "IP адрес"
+
+#: ../lib/network/netconnect.pm:670
+#, fuzzy, c-format
+msgid "Automatically at boot"
+msgstr "Изпълнение при стартиране"
+
+#: ../lib/network/netconnect.pm:672
+#, c-format
+msgid "By using Net Applet in the system tray"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:674
+#, c-format
+msgid "Manually (the interface would still be activated at boot)"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:683
+#, fuzzy, c-format
+msgid "How do you want to dial this connection?"
+msgstr "Искате ли да стартирате връзката си при зареждане ?"
+
+#: ../lib/network/netconnect.pm:696
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Искате ли сега да опитате връзка към Интернет ?"
+
+#: ../lib/network/netconnect.pm:723
+#, c-format
+msgid "The system is now connected to the Internet."
+msgstr "Системата в момента е свързана към Интернет."
+
+#: ../lib/network/netconnect.pm:724
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "За ваша сигурност, сега тя ще бъдете отвързана."
+
+#: ../lib/network/netconnect.pm:725
+#, c-format
+msgid ""
+"The system does not seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"Системата не изглежда свързана към Интернет.\n"
+"Опитайте се да пренастроите връзката."
+
+#: ../lib/network/netconnect.pm:740
+#, c-format
+msgid ""
+"Congratulations, the network and Internet configuration is finished.\n"
+"\n"
+msgstr ""
+"Поздравления, мрежовата и интернет настройката е завършена.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:743
+#, c-format
+msgid ""
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
+msgstr ""
+"След като стане това, препоръчваме ви да рестартирате X\n"
+"средата си, за да избегнете проблеми със смяната името на хоста."
+
+#: ../lib/network/netconnect.pm:744
+#, c-format
+msgid ""
+"Problems occurred during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection does not "
+"work, you might want to relaunch the configuration."
+msgstr ""
+"Появи се проблем при конфигурацията.\n"
+"Проверете вашата връзка през net_monitor или mcc. Ако вашата връзка не "
+"работи , вие трябва да преконфигурирате."
+
+#: ../lib/network/netconnect.pm:756
+#, fuzzy, c-format
+msgid "Sagem USB modem"
+msgstr "Системен режим"
+
+#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
+#, c-format
+msgid "Bewan modem"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:759
+#, c-format
+msgid "ECI Hi-Focus modem"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:760
+#, c-format
+msgid "LAN connection"
+msgstr "LAN връзка"
+
+#: ../lib/network/netconnect.pm:762
+#, c-format
+msgid "ADSL connection"
+msgstr "ADSL връзка"
+
+#: ../lib/network/netconnect.pm:763
+#, c-format
+msgid "Cable connection"
+msgstr "Кабелна връзка"
+
+#: ../lib/network/netconnect.pm:764
+#, c-format
+msgid "ISDN connection"
+msgstr "ISDN връзка"
+
+#: ../lib/network/netconnect.pm:765
+#, c-format
+msgid "Modem connection"
+msgstr "Модем"
+
+#: ../lib/network/netconnect.pm:766
+#, c-format
+msgid "DVB connection"
+msgstr ""
+
+#: ../lib/network/netconnect.pm:768
+#, fuzzy, c-format
+msgid "(detected on port %s)"
+msgstr "засечен на порт %s"
+
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: ../lib/network/netconnect.pm:770
+#, fuzzy, c-format
+msgid "(detected %s)"
+msgstr "засечена %s"
+
+#: ../lib/network/netconnect.pm:770
+#, fuzzy, c-format
+msgid "(detected)"
+msgstr "засечена "
+
+#: ../lib/network/netconnect.pm:771
+#, c-format
+msgid "Network Configuration"
+msgstr "Настройка на мрежата"
+
+#: ../lib/network/netconnect.pm:772
+#, fuzzy, c-format
+msgid "Zeroconf hostname resolution"
+msgstr "Име на Zeroconf хост:"
+
+#: ../lib/network/netconnect.pm:773
+#, c-format
+msgid ""
+"If desired, enter a Zeroconf hostname.\n"
+"This is the name your machine will use to advertise any of\n"
+"its shared resources that are not managed by the network.\n"
+"It is not necessary on most networks."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:777
+#, c-format
+msgid "Zeroconf Host name"
+msgstr "Име на Zeroconf хост:"
+
+#: ../lib/network/netconnect.pm:778
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:779
+#, 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"
+
+#: ../lib/network/netconnect.pm:782
+#, c-format
+msgid "The network needs to be restarted. Do you want to restart it?"
+msgstr "Мрежата се нуждае от престартиране. Искате ли да я престартирам?"
+
+#: ../lib/network/netconnect.pm:783
+#, c-format
+msgid ""
+"A problem occurred while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"Изникна проблем при рестартирането на мрежата:\n"
+"\n"
+"%s"
+
+#: ../lib/network/netconnect.pm:784
+#, c-format
+msgid ""
+"We are now going to configure the %s connection.\n"
+"\n"
+"\n"
+"Press \"%s\" to continue."
+msgstr ""
+"Сега ще настроим %s връзката.\n"
+"\n"
+"\n"
+"\n"
+"Натиснете \"%s\", за да продължите."
+
+#: ../lib/network/netconnect.pm:785
+#, c-format
+msgid "Configuration is complete, do you want to apply settings?"
+msgstr "Настройката завърши,желаете ли да я приложите ?"
+
+#: ../lib/network/netconnect.pm:786
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+msgstr ""
+"Настроили сте няколко начина за връзка към Интернет.\n"
+"Изберете този, който искате да използвате.\n"
+"\n"
+
+#: ../lib/network/netconnect.pm:787
+#, c-format
+msgid "Internet connection"
+msgstr "Интернет връзка"
+
+#: ../lib/network/netconnect.pm:789
+#, fuzzy, c-format
+msgid "Configuring network device %s (driver %s)"
+msgstr "Настройка на мрежовото устройство %s"
+
+#: ../lib/network/netconnect.pm:790
+#, c-format
+msgid ""
+"The following protocols can be used to configure a LAN connection. Please "
+"choose the one you want to use."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:791
+#, 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 ""
+"Моля, въведете host name за машината.\n"
+"Host името трябва да буде напълно квалифицирано име,\n"
+"като ``mybox.mylab.myco.com''.\n"
+"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
+
+#: ../lib/network/netconnect.pm:796
+#, c-format
+msgid "Last but not least you can also type in your DNS server IP addresses."
+msgstr ""
+
+#: ../lib/network/netconnect.pm:797
+#, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "DNS сървъра трябва да бъде във формат 1.2.3.4"
+
+#: ../lib/network/netconnect.pm:799
+#, c-format
+msgid "Gateway device"
+msgstr "Gateway устройство"
+
+#: ../lib/network/netconnect.pm:813
+#, c-format
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/network.pm:429
+#, c-format
+msgid "Proxies configuration"
+msgstr "Настройка на proxy"
+
+#: ../lib/network/network.pm:430
+#, c-format
+msgid ""
+"Here you can set up your proxies configuration (eg: http://"
+"my_caching_server:8080)"
+msgstr ""
+
+#: ../lib/network/network.pm:431
+#, c-format
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../lib/network/network.pm:432
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: ../lib/network/network.pm:433
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: ../lib/network/network.pm:434
+#, c-format
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../lib/network/network.pm:435
+#, fuzzy, c-format
+msgid "No proxy for (comma separated list):"
+msgstr "%d със запетая разделен низ"
+
+#: ../lib/network/network.pm:440
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "Proxy-сървъра трябва да е http://..."
+
+#: ../lib/network/network.pm:441
+#, fuzzy, c-format
+msgid "Proxy should be http://... or https://..."
+msgstr "Proxy-сървъра трябва да е http://..."
+
+#: ../lib/network/network.pm:442
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "URL трябва да е започва с 'ftp:' или 'http:'"
+
+#: ../lib/network/shorewall.pm:61
+#, c-format
+msgid ""
+"Please select the interfaces that will be protected by the firewall.\n"
+"\n"
+"All interfaces directly connected to Internet should be selected,\n"
+"while interfaces connected to a local network may be unselected.\n"
+"\n"
+"Which interfaces should be protected?\n"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:136
+#, c-format
+msgid "Keep custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:137
+#, c-format
+msgid "Drop custom rules"
+msgstr ""
+
+#: ../lib/network/shorewall.pm:142
+#, c-format
+msgid ""
+"Your firewall configuration has been manually edited and contains\n"
+"rules that may conflict with the configuration that has just been set up.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:135
+#, c-format
+msgid "Some components (%s) are required but aren't available for %s hardware."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:136
+#, c-format
+msgid "Some packages (%s) are required but aren't available."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:138
+#, c-format
+msgid ""
+"These packages can be found in Mandriva Club or in Mandriva commercial "
+"releases."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:139
+#, c-format
+msgid "The following component is missing: %s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:141
+#, c-format
+msgid ""
+"The required files can also be installed from this URL:\n"
+"%s"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:183
+#, fuzzy, c-format
+msgid "Use a floppy"
+msgstr "Запази на дискета"
+
+#: ../lib/network/thirdparty.pm:179 ../lib/network/thirdparty.pm:186
+#, fuzzy, c-format
+msgid "Use my Windows partition"
+msgstr "Изчислявам границите на Windows файловата система"
+
+#: ../lib/network/thirdparty.pm:180
+#, c-format
+msgid "Select file"
+msgstr "Изберете файл"
+
+#: ../lib/network/thirdparty.pm:191
+#, c-format
+msgid "Please select the firmware file (for example: %s)"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:215
+#, fuzzy, c-format
+msgid "Unable to find \"%s\" on your Windows system!"
+msgstr "Изтрива шрифтове от вашата система"
+
+#: ../lib/network/thirdparty.pm:217
+#, c-format
+msgid "No Windows system has been detected!"
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:227
+#, c-format
+msgid "Insert floppy"
+msgstr "Сложете дискета във флопито"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid ""
+"Insert a FAT formatted floppy in drive %s with %s in root directory and "
+"press %s"
+msgstr ""
+"Сложете FAT форматирана дискета в устройство %s с %s в главната директория и "
+"натиснете %s"
+
+#: ../lib/network/thirdparty.pm:228
+#, c-format
+msgid "Next"
+msgstr "Следващ"
+
+#: ../lib/network/thirdparty.pm:238
+#, fuzzy, c-format
+msgid "Floppy access error, unable to mount device %s"
+msgstr "Къде искате да монтирате устройство %s ?"
+
+#: ../lib/network/thirdparty.pm:327
+#, c-format
+msgid "Looking for required software and drivers..."
+msgstr ""
+
+#: ../lib/network/thirdparty.pm:338
+#, fuzzy, c-format
+msgid "Please wait, running device configuration commands..."
+msgstr "Моля, изберете ниво на сигурност..."
+
+#: ../lib/network/vpn/openvpn.pm:107
+#, c-format
+msgid "X509 Public Key Infrastructure"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:108
+#, c-format
+msgid "Static Key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:115
+#, c-format
+msgid "Type"
+msgstr "Вид"
+
+#. -PO: please don't translate the CA acronym
+#: ../lib/network/vpn/openvpn.pm:142
+#, c-format
+msgid "Certificate Authority (CA)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:148
+#, c-format
+msgid "Certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:154
+#, fuzzy, c-format
+msgid "Key"
+msgstr "Кения"
+
+#: ../lib/network/vpn/openvpn.pm:160
+#, fuzzy, c-format
+msgid "TLS control channel key"
+msgstr "Ляв клавиш Ctrl"
+
+#: ../lib/network/vpn/openvpn.pm:167
+#, c-format
+msgid "Key direction"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:175
+#, fuzzy, c-format
+msgid "Authenticate using username and password"
+msgstr "Не мога да вляза като използвам име %s (грешна парола?)"
+
+#: ../lib/network/vpn/openvpn.pm:181
+#, c-format
+msgid "Check server certificate"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:187
+#, fuzzy, c-format
+msgid "Cipher algorithm"
+msgstr "идентификация"
+
+#: ../lib/network/vpn/openvpn.pm:191
+#, c-format
+msgid "Default"
+msgstr "По подразбиране"
+
+#: ../lib/network/vpn/openvpn.pm:195
+#, c-format
+msgid "Size of cipher key"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:206
+#, fuzzy, c-format
+msgid "Get from server"
+msgstr "X сървър"
+
+#: ../lib/network/vpn/openvpn.pm:216
+#, fuzzy, c-format
+msgid "Gateway port"
+msgstr "Gateway"
+
+#: ../lib/network/vpn/openvpn.pm:232
+#, fuzzy, c-format
+msgid "Remote IP address"
+msgstr "IP адрес"
+
+#: ../lib/network/vpn/openvpn.pm:237
+#, fuzzy, c-format
+msgid "Use TCP protocol"
+msgstr "Протокол"
+
+#: ../lib/network/vpn/openvpn.pm:243
+#, c-format
+msgid "Virtual network device type"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:250
+#, c-format
+msgid "Virtual network device number (optional)"
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:365
+#, c-format
+msgid "Starting connection.."
+msgstr ""
+
+#: ../lib/network/vpn/openvpn.pm:380
+#, c-format
+msgid "Please insert your token"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:9
+#, c-format
+msgid "Cisco VPN Concentrator"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:43
+#, fuzzy, c-format
+msgid "Group name"
+msgstr "Номер на група"
+
+#: ../lib/network/vpn/vpnc.pm:47
+#, c-format
+msgid "Group secret"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:52
+#, c-format
+msgid "Username"
+msgstr "Потребителско име"
+
+#: ../lib/network/vpn/vpnc.pm:61
+#, c-format
+msgid "Use Cisco-UDP encapsulation"
+msgstr ""
+
+#: ../lib/network/vpn/vpnc.pm:67
+#, c-format
+msgid "Use specific UDP port"
+msgstr ""
diff --git a/po/bn.po b/po/bn.po
index 792df83..12facd4 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net HEAD\n"
-"POT-Creation-Date: 2007-01-10 15:18+0100\n"
+"POT-Creation-Date: 2007-08-09 11:47+0200\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -16,2662 +16,528 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../lib/network/connection.pm:16
-#, c-format
-msgid "Unknown connection type"
-msgstr "সংযোগের ধরণ অজানা"
-
-#: ../lib/network/connection.pm:115
-#, c-format
-msgid "Network access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:116
-#, c-format
-msgid "Access settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:117
-#, c-format
-msgid "Address settings"
-msgstr ""
-
-#: ../lib/network/connection.pm:149 ../lib/network/drakvpn.pm:62
-#: ../lib/network/vpn/openvpn.pm:365 ../lib/network/vpn/openvpn.pm:379
-#: ../lib/network/vpn/openvpn.pm:390 ../tools/net_applet:129
-#, fuzzy, c-format
-msgid "VPN connection"
-msgstr "LAN সংযোগ"
-
-#: ../lib/network/connection.pm:151 ../lib/network/connection/cable.pm:44
-#: ../lib/network/connection/wireless.pm:37 ../lib/network/vpn/openvpn.pm:127
-#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
-#, c-format
-msgid "None"
-msgstr "একটিও না"
-
-#: ../lib/network/connection.pm:163
-#, c-format
-msgid "Allow users to manage the connection"
-msgstr ""
-
-#: ../lib/network/connection.pm:164
+#: ../bin/drakconnect:61 ../lib/network/netconnect.pm:118
#, c-format
-msgid "Start the connection at boot"
-msgstr ""
+msgid "Network & Internet Configuration"
+msgstr "নেটওয়ার্ক এবং ইন্টারনেট কনফিগারেশন"
-# সাম: পরিমাপক বা মেট্রিক (as in metric system)
-#: ../lib/network/connection.pm:165 ../tools/drakconnect:462
+#: ../bin/drakconnect:81
#, c-format
-msgid "Metric"
-msgstr "মেট্রিক"
-
-#: ../lib/network/connection.pm:230
-#, fuzzy, c-format
-msgid "Link detected on interface %s"
-msgstr "(%s পোর্টে সনাক্ত হয়েছে)"
+msgid "Network configuration (%d adapters)"
+msgstr "নেটওয়ার্ক কনফিগারেশন (%d অ্যাডাপ্টার)"
-#: ../lib/network/connection.pm:231 ../lib/network/connection/ethernet.pm:278
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Link beat lost on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:13
-#, c-format
-msgid "Cable"
-msgstr ""
-
-#: ../lib/network/connection/cable.pm:14
-#, fuzzy, c-format
-msgid "Cable modem"
-msgstr "কার্ড মডেল:"
+msgid "Gateway:"
+msgstr "গেটওয়ে:"
-# সাম
-#: ../lib/network/connection/cable.pm:45
+#: ../bin/drakconnect:93 ../bin/drakconnect:813
#, c-format
-msgid "Use BPALogin (needed for Telstra)"
-msgstr "BPALogin ব্যবহার করুন (Telstra এর জন্য প্রয়োজন)"
+msgid "Interface:"
+msgstr "ইন্টারফেস:"
-#: ../lib/network/connection/cable.pm:48 ../lib/network/netconnect.pm:587
-#: ../tools/drakconnect:482
+#: ../bin/drakconnect:97 ../bin/net_monitor:119
#, c-format
-msgid "Authentication"
-msgstr "অনুমোদন"
+msgid "Wait please"
+msgstr "অনুগ্রহপূর্বক অপেক্ষা করুন"
-#: ../lib/network/connection/cable.pm:50 ../lib/network/connection/ppp.pm:22
-#: ../lib/network/netconnect.pm:326 ../lib/network/vpn/openvpn.pm:393
-#: ../tools/drakconnect:492
+#: ../bin/drakconnect:113 ../bin/drakinvictus:105
#, c-format
-msgid "Account Login (user name)"
-msgstr "একাউন্ট লগইন (ইউজারনেম)"
+msgid "Interface"
+msgstr "ইন্টারফেস"
-#: ../lib/network/connection/cable.pm:52 ../lib/network/connection/ppp.pm:23
-#: ../lib/network/netconnect.pm:327 ../lib/network/vpn/openvpn.pm:394
-#: ../tools/drakconnect:493
+#: ../bin/drakconnect:113 ../bin/drakconnect:321 ../bin/drakconnect:888
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:125
+#: ../lib/network/netconnect.pm:604 ../lib/network/vpn/openvpn.pm:221
#, c-format
-msgid "Account Password"
-msgstr "একাউন্ট পাসওয়ার্ড"
+msgid "IP address"
+msgstr "IP ঠিকানাসমূহ"
-#: ../lib/network/connection/cellular.pm:47
+#: ../bin/drakconnect:113 ../bin/drakconnect:305 ../bin/drakconnect:563
+#: ../bin/drakids:252 ../bin/drakvpn-old:839 ../lib/network/netconnect.pm:448
#, c-format
-msgid "Access Point Name"
-msgstr ""
+msgid "Protocol"
+msgstr "প্রটোকল"
-#: ../lib/network/connection/cellular_bluetooth.pm:10
+#: ../bin/drakconnect:113 ../lib/network/netconnect.pm:434
#, c-format
-msgid "Bluetooth"
-msgstr ""
+msgid "Driver"
+msgstr "ড্রাইভার"
-#: ../lib/network/connection/cellular_bluetooth.pm:11
+#: ../bin/drakconnect:113
#, c-format
-msgid "Bluetooth Dial Up Networking"
-msgstr ""
+msgid "State"
+msgstr "অবস্থা"
-#: ../lib/network/connection/cellular_card.pm:8
+#: ../bin/drakconnect:130
#, c-format
-msgid "GPRS/Edge/3G"
-msgstr ""
+msgid "Hostname: "
+msgstr "হোস্টনাম: "
-#: ../lib/network/connection/cellular_card.pm:67
-#: ../lib/network/vpn/openvpn.pm:391
+#: ../bin/drakconnect:132
#, c-format
-msgid "PIN number"
-msgstr ""
-
-#: ../lib/network/connection/cellular_card.pm:130
-#, fuzzy, c-format
-msgid "Unable to open device %s"
-msgstr "ফর্ক করতে ব্যর্থ: %s"
-
-#: ../lib/network/connection/cellular_card.pm:155
-#, fuzzy, c-format
-msgid "Please check that your SIM card is inserted."
-msgstr ""
-"\n"
-"অনুগ্রহপূর্বক আপনার প্রয়োজনীয় সকল অপশন পরীক্ষা করুন।\n"
+msgid "Configure hostname..."
+msgstr "হোস্টনাম কনফিগার করো..."
-#: ../lib/network/connection/cellular_card.pm:161
+#: ../bin/drakconnect:146 ../bin/drakconnect:851
#, c-format
-msgid ""
-"You entered a wrong PIN code.\n"
-"Entering the wrong PIN code multiple times may lock your SIM card!"
-msgstr ""
+msgid "LAN configuration"
+msgstr "ল্যান কনফিগারেশন"
-#: ../lib/network/connection/dvb.pm:12
+#: ../bin/drakconnect:151
#, c-format
-msgid "DVB"
-msgstr ""
+msgid "Configure Local Area Network..."
+msgstr "স্থানীয় নেটওয়ার্ক কনফিগার করো..."
-#: ../lib/network/connection/dvb.pm:13
+#: ../bin/drakconnect:157 ../bin/drakconnect:240 ../bin/draknfs:183
+#: ../bin/net_applet:138
#, c-format
-msgid "Satellite (DVB)"
-msgstr ""
+msgid "Help"
+msgstr "সাহায্য"
-#: ../lib/network/connection/dvb.pm:56
+#: ../bin/drakconnect:159 ../bin/drakconnect:241 ../bin/drakconnect:245
+#: ../bin/drakinvictus:140
#, c-format
-msgid "Adapter card"
-msgstr ""
-
-#: ../lib/network/connection/dvb.pm:57
-#, c-format
-msgid "Net demux"
-msgstr ""
+msgid "Apply"
+msgstr "প্রয়োগ"
-#: ../lib/network/connection/dvb.pm:58
+#: ../bin/drakconnect:161 ../bin/drakconnect:943 ../bin/drakconnect:1034
+#: ../bin/draknetprofile:106 ../bin/net_monitor:341
#, c-format
-msgid "PID"
-msgstr ""
+msgid "Cancel"
+msgstr "বাতিল"
-#: ../lib/network/connection/ethernet.pm:10
+#: ../bin/drakconnect:162 ../bin/drakconnect:858 ../bin/drakconnect:945
+#: ../bin/drakconnect:1035 ../bin/draknetprofile:108 ../bin/net_monitor:342
#, c-format
-msgid "Ethernet"
-msgstr ""
+msgid "Ok"
+msgstr "ঠিক আছে"
-#: ../lib/network/connection/ethernet.pm:53
+#: ../bin/drakconnect:164 ../bin/drakconnect:636 ../bin/drakgw:359
+#: ../bin/draksambashare:208 ../lib/network/drakroam.pm:200
+#: ../lib/network/drakroam.pm:250
#, c-format
-msgid "Unable to find network interface for selected device (using %s driver)."
-msgstr ""
+msgid "Please wait"
+msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-#: ../lib/network/connection/ethernet.pm:61 ../lib/network/vpn/openvpn.pm:207
+#: ../bin/drakconnect:166 ../bin/drakconnect:638
#, c-format
-msgid "Manual configuration"
-msgstr "স্বনির্বাচিত কনফিগারেশন"
+msgid "Please Wait... Applying the configuration"
+msgstr "অনুগ্রহ করে অপেক্ষা করুন.... কনফিগারেশন প্রস্তাব করা হচ্ছে"
-#: ../lib/network/connection/ethernet.pm:62
+#: ../bin/drakconnect:192
#, c-format
-msgid "Automatic IP (BOOTP/DHCP)"
-msgstr "সয়ংক্রিয় IP (BOOTP/DHCP)"
-
-#: ../lib/network/connection/ethernet.pm:116
-#, fuzzy, c-format
-msgid "IP settings"
-msgstr "PLL সেটিং:"
+msgid "Manage connections"
+msgstr "সংযোগ ব্যবস্থাপনা"
-#: ../lib/network/connection/ethernet.pm:125 ../lib/network/netconnect.pm:604
-#: ../lib/network/vpn/openvpn.pm:221 ../tools/drakconnect:113
-#: ../tools/drakconnect:321 ../tools/drakconnect:887 ../tools/drakhosts:196
+#: ../bin/drakconnect:219 ../lib/network/drakroam.pm:346
#, c-format
-msgid "IP address"
-msgstr "IP ঠিকানাসমূহ"
+msgid "Device: "
+msgstr "ডিভাইস:"
-#: ../lib/network/connection/ethernet.pm:129
+#: ../bin/drakconnect:302
#, 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)."
-msgstr ""
-"অনুগ্রহ করে এই মেশিনের আই-পি কন্‌ফিগারেশন দিন।\n"
-"প্রত্যেক আইটেম একটি আই-পি অ্যাড্রেস হিসেবে dotted-decimal নোটেশনে দিতে \n"
-"হবে (উদাহরণস্বরুপ, 1.2.3.4)"
+msgid "IP configuration"
+msgstr "আই.পি. কনফিগারেশন"
-#: ../lib/network/connection/ethernet.pm:132 ../tools/drakconnect:326
-#: ../tools/drakconnect:888 ../tools/drakgw:177
+#: ../bin/drakconnect:326 ../bin/drakconnect:889 ../bin/drakgw:177
+#: ../lib/network/connection/ethernet.pm:132
#, c-format
msgid "Netmask"
msgstr "নেটমাস্ক"
-#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:636
-#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
-#: ../tools/drakconnect:332
+#: ../bin/drakconnect:332 ../lib/network/connection/ethernet.pm:133
+#: ../lib/network/netconnect.pm:636 ../lib/network/vpn/openvpn.pm:212
+#: ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "গেটওয়ে"
-#: ../lib/network/connection/ethernet.pm:136 ../tools/drakconnect:382
+#: ../bin/drakconnect:337
#, c-format
-msgid "Get DNS servers from DHCP"
-msgstr "DHCP থেকে DNS সার্ভারগুলো দেখাও "
+msgid "DNS servers"
+msgstr "ডি.এন.এস. সার্ভার"
-#: ../lib/network/connection/ethernet.pm:138
+#: ../bin/drakconnect:343
#, c-format
-msgid "DNS server 1"
-msgstr "DNS সার্ভার ১"
+msgid "Search Domain"
+msgstr "অনুসন্ধান ক্ষেত্র (Domain)"
-#: ../lib/network/connection/ethernet.pm:139
+#: ../bin/drakconnect:351 ../bin/drakvpn-old:837
#, c-format
-msgid "DNS server 2"
-msgstr "DNS সার্ভার ২"
+msgid "none"
+msgstr "না"
-#: ../lib/network/connection/ethernet.pm:140
+#: ../bin/drakconnect:351
#, c-format
-msgid "Search domain"
-msgstr "ডোমেইনের খোঁজ"
+msgid "static"
+msgstr "স্থির"
-#: ../lib/network/connection/ethernet.pm:141
+#: ../bin/drakconnect:351
#, c-format
-msgid "By default search domain will be set from the fully-qualified host name"
-msgstr "ডিফল্টভাবে ডোমেইন সন্ধান যোগ্যতা-সম্পন্ন হোস্ট-নেম থেকে নির্দিষ্ত হবে"
+msgid "DHCP"
+msgstr "ডি.এইচ.সি.পি."
-#: ../lib/network/connection/ethernet.pm:143 ../tools/drakconnect:369
-#: ../tools/drakconnect:891
+#: ../bin/drakconnect:369 ../bin/drakconnect:892
+#: ../lib/network/connection/ethernet.pm:143
#, c-format
msgid "DHCP client"
msgstr "DHCP ক্লায়েন্ট"
-# sam
-#: ../lib/network/connection/ethernet.pm:144 ../tools/drakconnect:379
-#, c-format
-msgid "DHCP timeout (in seconds)"
-msgstr "DHCP টাইমআউট (সেকেন্ডে)"
-
-# সাম
-#: ../lib/network/connection/ethernet.pm:145 ../tools/drakconnect:383
-#, c-format
-msgid "Get YP servers from DHCP"
-msgstr "DHCP থেকে YP সার্ভারগুলো দেখাও "
-
-# সাম
-#: ../lib/network/connection/ethernet.pm:146 ../tools/drakconnect:384
+#: ../bin/drakconnect:373 ../lib/network/connection/ethernet.pm:200
#, c-format
-msgid "Get NTPD servers from DHCP"
-msgstr "DHCP থেকে NTPD সার্ভারগুলো দেখাও "
+msgid "Assign host name from DHCP address"
+msgstr "DHCP ঠিকানা থেকে পাওয়া হোস্টের নাম"
-#: ../lib/network/connection/ethernet.pm:147 ../tools/drakconnect:375
+#: ../bin/drakconnect:375 ../lib/network/connection/ethernet.pm:147
#, c-format
msgid "DHCP host name"
msgstr "DHCP হোস্টের নাম"
-#: ../lib/network/connection/ethernet.pm:149
+# sam
+#: ../bin/drakconnect:379 ../lib/network/connection/ethernet.pm:144
#, c-format
-msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
-msgstr ""
+msgid "DHCP timeout (in seconds)"
+msgstr "DHCP টাইমআউট (সেকেন্ডে)"
-#: ../lib/network/connection/ethernet.pm:160 ../tools/drakconnect:676
+#: ../bin/drakconnect:382 ../lib/network/connection/ethernet.pm:136
#, c-format
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ঠিকানা 1.2.3.4-এর মত হতে হবে"
+msgid "Get DNS servers from DHCP"
+msgstr "DHCP থেকে DNS সার্ভারগুলো দেখাও "
# সাম
-#: ../lib/network/connection/ethernet.pm:165 ../tools/drakconnect:680
-#, c-format
-msgid "Netmask should be in format 255.255.224.0"
-msgstr "নেটমাস্ক 255.255.224.0 এই ফরম্যাটে হতে হবে"
-
-#: ../lib/network/connection/ethernet.pm:170
-#, c-format
-msgid "Warning: IP address %s is usually reserved!"
-msgstr "নির্দেশ : সাধারনত %s IP ঠিকানাগুলি রিজার্ভ থাকে !"
-
-#: ../lib/network/connection/ethernet.pm:176
-#, c-format
-msgid "%s already in use\n"
-msgstr "%s ইতিমধ্যেই ব্যবহৃত হচ্ছে\n"
-
-#: ../lib/network/connection/ethernet.pm:200 ../tools/drakconnect:373
-#, c-format
-msgid "Assign host name from DHCP address"
-msgstr "DHCP ঠিকানা থেকে পাওয়া হোস্টের নাম"
-
-#: ../lib/network/connection/ethernet.pm:202 ../tools/drakhosts:196
-#, c-format
-msgid "Host name"
-msgstr "হোস্টের নাম"
-
-#: ../lib/network/connection/ethernet.pm:220 ../tools/drakconnect:440
-#, c-format
-msgid "Network Hotplugging"
-msgstr "নেটওয়ার্ক Hotplugging"
-
-#: ../lib/network/connection/ethernet.pm:224
-#, c-format
-msgid "Enable IPv6 to IPv4 tunnel"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:277
-#, c-format
-msgid "Link beat detected on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:280
-#, c-format
-msgid "Requesting a network address on interface %s (%s protocol)..."
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:281
-#, c-format
-msgid "Got a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/ethernet.pm:282
-#, c-format
-msgid "Failed to get a network address on interface %s (%s protocol)"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:8
-#, c-format
-msgid "ISDN"
-msgstr ""
-
-#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:197
-#: ../lib/network/netconnect.pm:200 ../lib/network/netconnect.pm:218
-#: ../lib/network/netconnect.pm:463 ../lib/network/netconnect.pm:559
-#: ../lib/network/netconnect.pm:562
-#, c-format
-msgid "Unlisted - edit manually"
-msgstr "তালিকায় অন্তর্ভুক্ত নেই - নিজে নিজেই সম্পাদন করুন"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "I do not know"
-msgstr "আমি জানি না"
-
-#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "PCI"
-msgstr "পি-সি-আই"
-
-#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:395
-#, c-format
-msgid "USB"
-msgstr "ইউএসবি"
-
-#. -PO: POTS means "Plain old telephone service"
-#: ../lib/network/connection/pots.pm:10
-#, c-format
-msgid "POTS"
-msgstr ""
-
-#. -PO: POTS means "Plain old telephone service"
-#. -PO: remove it if it doesn't have an equivalent in your language
-#. -PO: for example, in French, it can be translated as "RTC"
-#: ../lib/network/connection/pots.pm:16
-#, c-format
-msgid "Analog telephone modem (POTS)"
-msgstr ""
-
-#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:74
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Script-based"
-msgstr "স্ক্রিপ্ট-ভিত্তিক"
-
-#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:75
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP"
-msgstr "PAP"
-
-#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:76
-#: ../tools/drakconnect:499
-#, c-format
-msgid "Terminal-based"
-msgstr "টার্মিনাল-ভিত্তিক"
-
-#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:77
-#: ../tools/drakconnect:499
-#, c-format
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:78
-#: ../tools/drakconnect:499
-#, c-format
-msgid "PAP/CHAP"
-msgstr "PAP/CHAP"
-
-#: ../lib/network/connection/providers/cellular.pm:13
-#: ../lib/network/connection/providers/cellular.pm:18
-#: ../lib/network/connection/providers/cellular.pm:23
-#: ../lib/network/connection/providers/xdsl.pm:492
-#: ../lib/network/connection/providers/xdsl.pm:504
-#: ../lib/network/connection/providers/xdsl.pm:516
-#: ../lib/network/connection/providers/xdsl.pm:528
-#: ../lib/network/connection/providers/xdsl.pm:539
-#: ../lib/network/connection/providers/xdsl.pm:551
-#: ../lib/network/connection/providers/xdsl.pm:563
-#: ../lib/network/connection/providers/xdsl.pm:575
-#: ../lib/network/connection/providers/xdsl.pm:588
-#: ../lib/network/connection/providers/xdsl.pm:599
-#: ../lib/network/connection/providers/xdsl.pm:610
-#: ../lib/network/netconnect.pm:33
-#, c-format
-msgid "France"
-msgstr "ফ্রান্স"
-
-#: ../lib/network/connection/providers/xdsl.pm:47
-#: ../lib/network/connection/providers/xdsl.pm:57
-#, c-format
-msgid "Algeria"
-msgstr "আলজেরিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:67
-#: ../lib/network/connection/providers/xdsl.pm:77
-#, c-format
-msgid "Argentina"
-msgstr "আর্জেন্টিনা"
-
-#: ../lib/network/connection/providers/xdsl.pm:87
-#: ../lib/network/connection/providers/xdsl.pm:96
-#: ../lib/network/connection/providers/xdsl.pm:105
+#: ../bin/drakconnect:383 ../lib/network/connection/ethernet.pm:145
#, c-format
-msgid "Austria"
-msgstr "অষ্ট্রিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:114
-#: ../lib/network/connection/providers/xdsl.pm:124
-#: ../lib/network/connection/providers/xdsl.pm:134
-#, c-format
-msgid "Australia"
-msgstr "অষ্ট্রেলিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:144
-#: ../lib/network/connection/providers/xdsl.pm:153
-#: ../lib/network/connection/providers/xdsl.pm:164
-#: ../lib/network/connection/providers/xdsl.pm:173
-#: ../lib/network/connection/providers/xdsl.pm:182
-#: ../lib/network/netconnect.pm:36
-#, c-format
-msgid "Belgium"
-msgstr "বেলজিয়াম"
-
-#: ../lib/network/connection/providers/xdsl.pm:191
-#: ../lib/network/connection/providers/xdsl.pm:201
-#: ../lib/network/connection/providers/xdsl.pm:210
-#: ../lib/network/connection/providers/xdsl.pm:219
-#, c-format
-msgid "Brazil"
-msgstr "ব্রাজিল"
-
-#: ../lib/network/connection/providers/xdsl.pm:228
-#: ../lib/network/connection/providers/xdsl.pm:237
-#, c-format
-msgid "Bulgaria"
-msgstr "বুলগেরিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:246
-#: ../lib/network/connection/providers/xdsl.pm:255
-#: ../lib/network/connection/providers/xdsl.pm:264
-#: ../lib/network/connection/providers/xdsl.pm:273
-#: ../lib/network/connection/providers/xdsl.pm:282
-#: ../lib/network/connection/providers/xdsl.pm:291
-#: ../lib/network/connection/providers/xdsl.pm:300
-#: ../lib/network/connection/providers/xdsl.pm:309
-#: ../lib/network/connection/providers/xdsl.pm:318
-#: ../lib/network/connection/providers/xdsl.pm:327
-#: ../lib/network/connection/providers/xdsl.pm:336
-#: ../lib/network/connection/providers/xdsl.pm:345
-#: ../lib/network/connection/providers/xdsl.pm:354
-#: ../lib/network/connection/providers/xdsl.pm:363
-#: ../lib/network/connection/providers/xdsl.pm:372
-#: ../lib/network/connection/providers/xdsl.pm:381
-#: ../lib/network/connection/providers/xdsl.pm:390
-#: ../lib/network/connection/providers/xdsl.pm:399
-#: ../lib/network/connection/providers/xdsl.pm:408
-#: ../lib/network/connection/providers/xdsl.pm:417
-#, c-format
-msgid "China"
-msgstr "চীন"
-
-#: ../lib/network/connection/providers/xdsl.pm:426
-#: ../lib/network/connection/providers/xdsl.pm:436
-#, c-format
-msgid "Czech Republic"
-msgstr "চেক রিপাবলিক"
-
-#: ../lib/network/connection/providers/xdsl.pm:446
-#: ../lib/network/connection/providers/xdsl.pm:455
-#: ../lib/network/connection/providers/xdsl.pm:464
-#, c-format
-msgid "Denmark"
-msgstr "ডেনমার্ক"
-
-#: ../lib/network/connection/providers/xdsl.pm:473
-#, c-format
-msgid "Egypt"
-msgstr "মিশর"
-
-#: ../lib/network/connection/providers/xdsl.pm:483
-#, c-format
-msgid "Finland"
-msgstr "ফিনল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:621
-#: ../lib/network/connection/providers/xdsl.pm:630
-#: ../lib/network/connection/providers/xdsl.pm:640
-#, c-format
-msgid "Germany"
-msgstr "জার্মানী"
-
-#: ../lib/network/connection/providers/xdsl.pm:650
-#, c-format
-msgid "Greece"
-msgstr "গ্রীস"
-
-#: ../lib/network/connection/providers/xdsl.pm:659
-#, c-format
-msgid "Hungary"
-msgstr "হাঙ্গেরী"
-
-#: ../lib/network/connection/providers/xdsl.pm:668
-#, c-format
-msgid "Ireland"
-msgstr "আয়ারল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:677
-#, c-format
-msgid "Israel"
-msgstr "ইসরাঈল"
-
-#: ../lib/network/connection/providers/xdsl.pm:687
-#, c-format
-msgid "India"
-msgstr "ভারত"
-
-#: ../lib/network/connection/providers/xdsl.pm:696
-#: ../lib/network/connection/providers/xdsl.pm:705
-#, c-format
-msgid "Iceland"
-msgstr "আইসল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:714
-#: ../lib/network/connection/providers/xdsl.pm:725
-#: ../lib/network/connection/providers/xdsl.pm:735
-#: ../lib/network/connection/providers/xdsl.pm:746
-#: ../lib/network/netconnect.pm:35
-#, c-format
-msgid "Italy"
-msgstr "ইতালী"
-
-#: ../lib/network/connection/providers/xdsl.pm:758
-#, c-format
-msgid "Sri Lanka"
-msgstr "শ্রীলঙ্কা"
-
-#: ../lib/network/connection/providers/xdsl.pm:770
-#, c-format
-msgid "Lithuania"
-msgstr "লিথুয়েনিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:779
-#: ../lib/network/connection/providers/xdsl.pm:789
-#, c-format
-msgid "Mauritius"
-msgstr "মরিসাস"
-
-#: ../lib/network/connection/providers/xdsl.pm:800
-#, c-format
-msgid "Morocco"
-msgstr "মরক্কো"
-
-#: ../lib/network/connection/providers/xdsl.pm:810
-#: ../lib/network/connection/providers/xdsl.pm:819
-#: ../lib/network/connection/providers/xdsl.pm:828
-#: ../lib/network/connection/providers/xdsl.pm:837
-#: ../lib/network/netconnect.pm:34
-#, c-format
-msgid "Netherlands"
-msgstr "নেদারল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:846
-#: ../lib/network/connection/providers/xdsl.pm:852
-#: ../lib/network/connection/providers/xdsl.pm:858
-#: ../lib/network/connection/providers/xdsl.pm:864
-#: ../lib/network/connection/providers/xdsl.pm:870
-#: ../lib/network/connection/providers/xdsl.pm:876
-#: ../lib/network/connection/providers/xdsl.pm:882
-#, c-format
-msgid "Norway"
-msgstr "নরওয়ে"
-
-#: ../lib/network/connection/providers/xdsl.pm:890
-#, c-format
-msgid "Pakistan"
-msgstr "পাকিস্তান"
-
-#: ../lib/network/connection/providers/xdsl.pm:901
-#: ../lib/network/connection/providers/xdsl.pm:911
-#, c-format
-msgid "Poland"
-msgstr "পোল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:922
-#, c-format
-msgid "Portugal"
-msgstr "পর্তুগাল"
-
-#: ../lib/network/connection/providers/xdsl.pm:931
-#, c-format
-msgid "Russia"
-msgstr "রাশিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:942
-#, c-format
-msgid "Singapore"
-msgstr "সিঙ্গাপুর"
-
-#: ../lib/network/connection/providers/xdsl.pm:951
-#, c-format
-msgid "Senegal"
-msgstr "সেনেগাল"
-
-#: ../lib/network/connection/providers/xdsl.pm:961
-#, c-format
-msgid "Slovenia"
-msgstr "স্লোভেনিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:972
-#: ../lib/network/connection/providers/xdsl.pm:984
-#: ../lib/network/connection/providers/xdsl.pm:996
-#: ../lib/network/connection/providers/xdsl.pm:1009
-#: ../lib/network/connection/providers/xdsl.pm:1019
-#: ../lib/network/connection/providers/xdsl.pm:1029
-#: ../lib/network/connection/providers/xdsl.pm:1040
-#: ../lib/network/connection/providers/xdsl.pm:1050
-#: ../lib/network/connection/providers/xdsl.pm:1060
-#: ../lib/network/connection/providers/xdsl.pm:1070
-#: ../lib/network/connection/providers/xdsl.pm:1080
-#: ../lib/network/connection/providers/xdsl.pm:1090
-#: ../lib/network/connection/providers/xdsl.pm:1101
-#: ../lib/network/connection/providers/xdsl.pm:1112
-#: ../lib/network/connection/providers/xdsl.pm:1124
-#: ../lib/network/connection/providers/xdsl.pm:1136
-#, c-format
-msgid "Spain"
-msgstr "স্পেন"
-
-#: ../lib/network/connection/providers/xdsl.pm:1149
-#, c-format
-msgid "Sweden"
-msgstr "সুইডেন"
-
-#: ../lib/network/connection/providers/xdsl.pm:1158
-#: ../lib/network/connection/providers/xdsl.pm:1167
-#: ../lib/network/connection/providers/xdsl.pm:1177
-#, c-format
-msgid "Switzerland"
-msgstr "সুইজারল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:1186
-#, c-format
-msgid "Thailand"
-msgstr "থাইল্যান্ড"
-
-#: ../lib/network/connection/providers/xdsl.pm:1196
-#, c-format
-msgid "Tunisia"
-msgstr "তানিসিয়া"
-
-#: ../lib/network/connection/providers/xdsl.pm:1207
-#, c-format
-msgid "Turkey"
-msgstr "তুর্কি"
-
-#: ../lib/network/connection/providers/xdsl.pm:1220
-#, c-format
-msgid "United Arab Emirates"
-msgstr "সংযুক্ত আরব আমিরাত"
-
-#: ../lib/network/connection/providers/xdsl.pm:1230
-#: ../lib/network/connection/providers/xdsl.pm:1240
-#: ../lib/network/netconnect.pm:38
-#, c-format
-msgid "United Kingdom"
-msgstr "যুক্তরাজ্য"
-
-#: ../lib/network/connection/wireless.pm:11
-#, c-format
-msgid "Wireless"
-msgstr ""
+msgid "Get YP servers from DHCP"
+msgstr "DHCP থেকে YP সার্ভারগুলো দেখাও "
# সাম
-#: ../lib/network/connection/wireless.pm:21
-#, c-format
-msgid "Use a Windows driver (with ndiswrapper)"
-msgstr "একটি উইন্ডোজ ড্রাইভার ব্যবহার করুন (ndiswrapper এর সাথে)"
-
-#: ../lib/network/connection/wireless.pm:38
+#: ../bin/drakconnect:384 ../lib/network/connection/ethernet.pm:146
#, c-format
-msgid "Open WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:39
-#, c-format
-msgid "Restricted WEP"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:40
-#, c-format
-msgid "WPA Pre-Shared Key"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:181 ../lib/network/thirdparty.pm:174
-#, c-format
-msgid "Firmware files are required for this device."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:209
-#, c-format
-msgid ""
-"Your wireless card is disabled, please enable the wireless switch (RF kill "
-"switch) first."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:270
-#, fuzzy, c-format
-msgid "Wireless settings"
-msgstr "ওয়্যারলেস সংযোগ"
+msgid "Get NTPD servers from DHCP"
+msgstr "DHCP থেকে NTPD সার্ভারগুলো দেখাও "
-#: ../lib/network/connection/wireless.pm:275 ../tools/drakconnect:406
-#: ../tools/drakroam:119
+#: ../bin/drakconnect:406 ../lib/network/connection/wireless.pm:312
+#: ../lib/network/drakroam.pm:282
#, c-format
msgid "Operating Mode"
msgstr "কার্যকারিতার ধরন"
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Ad-hoc"
-msgstr "Echo request (ping)"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Managed"
-msgstr "ব্যবস্থা হয়েছে"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Master"
-msgstr "মাষ্টার"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Repeater"
-msgstr "রিপিটার"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Secondary"
-msgstr "মাধ্যমিক"
-
-#: ../lib/network/connection/wireless.pm:276
-#, c-format
-msgid "Auto"
-msgstr "সয়ংক্রিয়"
-
-#: ../lib/network/connection/wireless.pm:279 ../tools/drakconnect:407
+#: ../bin/drakconnect:407 ../lib/network/connection/wireless.pm:316
#, c-format
msgid "Network name (ESSID)"
msgstr "নেটওয়ার্কের নাম (ESSID)"
-#: ../lib/network/connection/wireless.pm:281
-#, c-format
-msgid "Encryption mode"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:283 ../tools/drakconnect:421
-#, c-format
-msgid "Encryption key"
-msgstr "এনক্রিপশন কী"
-
-#: ../lib/network/connection/wireless.pm:285 ../tools/drakconnect:408
+#: ../bin/drakconnect:408 ../lib/network/connection/wireless.pm:322
#, c-format
msgid "Network ID"
msgstr "নেটওয়ার্ক ID"
-#: ../lib/network/connection/wireless.pm:286 ../tools/drakconnect:409
+#: ../bin/drakconnect:409 ../lib/network/connection/wireless.pm:323
#, c-format
msgid "Operating frequency"
msgstr "কার্যকারিতার ফ্রিকুয়েন্সি"
-#: ../lib/network/connection/wireless.pm:287 ../tools/drakconnect:410
+#: ../bin/drakconnect:410 ../lib/network/connection/wireless.pm:324
#, c-format
msgid "Sensitivity threshold"
msgstr "প্রতিক্রিয়াশীল থ্রেশল্ড"
-#: ../lib/network/connection/wireless.pm:288 ../tools/drakconnect:411
+#: ../bin/drakconnect:411 ../lib/network/connection/wireless.pm:325
#, c-format
msgid "Bitrate (in b/s)"
msgstr "বিটরেট (b/s-এ)"
-#: ../lib/network/connection/wireless.pm:289 ../tools/drakconnect:422
+#: ../bin/drakconnect:421 ../lib/network/connection/wireless.pm:320
#, c-format
-msgid "RTS/CTS"
-msgstr "RTS/CTS"
+msgid "Encryption key"
+msgstr "এনক্রিপশন কী"
-# sam=
-# parameter has been translated as প্যারামিটার
-#: ../lib/network/connection/wireless.pm:290
+#: ../bin/drakconnect:422 ../lib/network/connection/wireless.pm:326
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that "
-"the\n"
-"channel is clear. This adds overhead, but increase performance in case of "
-"hidden\n"
-"nodes or large number of active nodes. This parameter sets the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, "
-"fixed\n"
-"or off."
-msgstr ""
-"RTS/CTS প্রতিটি প্যাকেট প্রেরণের আগে চ্যানলটি খালি কিনা তা পরীক্ষা করার জন্য একটি "
-"হ্যান্ডশেক যোগ\n"
-"করে। এতে কিছুটা সময় ব্যয় হয় বটে তবে লুকানো নোডসমুহ ও বহুসংখ্যক স্বক্রিয় নোডের ক্ষেত্রে "
-"পারফরম্যান্স\n"
-"বাড়িয়ে দেয়। এ প্যারামিটারটি, একটি সবচেয়ে ছোট প্যাকেট যার জন্য একটি নোড RTS "
-"পাঠায়,\n"
-"তার সাইজ সেট করে, অতএব এখানে সর্বোচ্চ প্যাকেট সাইজের মানটি বসালে এই ব্যবস্থা "
-"নিষ্ক্রিয়\n"
-"হয়ে যায়। আপনি এই প্যারামিটারটি স্বয়ংক্রিয়, নির্ধারিত, বা বন্ধও সেট\n"
-"করতে পারেন।"
+msgid "RTS/CTS"
+msgstr "RTS/CTS"
-#: ../lib/network/connection/wireless.pm:297 ../tools/drakconnect:423
+#: ../bin/drakconnect:423 ../lib/network/connection/wireless.pm:334
#, c-format
msgid "Fragmentation"
msgstr "ফ্রাগমেন্টেশন"
-#: ../lib/network/connection/wireless.pm:298 ../tools/drakconnect:424
+#: ../bin/drakconnect:424 ../lib/network/connection/wireless.pm:335
#, c-format
msgid "iwconfig command extra arguments"
msgstr "Iwকন্‌ফিগ কমান্ড অতিরিক্ত আর্গুমেন্ট"
-#: ../lib/network/connection/wireless.pm:299
-#, c-format
-msgid ""
-"Here, one can configure some extra wireless parameters such as:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
-"as the hostname).\n"
-"\n"
-"See iwconfig(8) man page for further information."
-msgstr ""
-"এখানে, একজন কিছু তারবিহীন প্যারামিটার কন্‌ফিগার করতে পারে, যেমন:\n"
-"ap, channel, commit, enc, power, retry, sens, txpower (nick ইতিমধ্যেই হোস্টনেম "
-"হিসেবে সেট হয়ে গেছে)।\n"
-"\n"
-"অতিরিক্ত তথ্যের জন্য iwconfig(8) এর ম্যান পেজ দেখুন।"
-
# -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: ../lib/network/connection/wireless.pm:306 ../tools/drakconnect:425
+#: ../bin/drakconnect:425 ../lib/network/connection/wireless.pm:343
#, c-format
msgid "iwspy command extra arguments"
msgstr "Iwস্পাই কমান্ড অতিরিক্ত আর্গুমেন্ট"
-#: ../lib/network/connection/wireless.pm:307
-#, fuzzy, c-format
-msgid ""
-"iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-"iwspy ব্যবহার করা হয় ওয়্যারলেস নেটওয়ার্ক ইন্টারফেসে একটি ঠিকানার\n"
-"তালিকা সেট করা এবং তার প্রতিটির সংযোগ এর মান সংক্রান্ত তথ্য পড়ার জন্য।\n"
-"\n"
-
-#: ../lib/network/connection/wireless.pm:315 ../tools/drakconnect:426
+#: ../bin/drakconnect:426 ../lib/network/connection/wireless.pm:352
#, c-format
msgid "iwpriv command extra arguments"
msgstr "iwpriv কমান্ড অতিরিক্ত আর্গুমেন্ট"
-#: ../lib/network/connection/wireless.pm:317
-#, c-format
-msgid ""
-"iwpriv enable to set up optionals (private) parameters of a wireless "
-"network\n"
-"interface.\n"
-"\n"
-"iwpriv deals with parameters and setting specific to each driver (as opposed "
-"to\n"
-"iwconfig which deals with generic ones).\n"
-"\n"
-"In theory, the documentation of each device driver should indicate how to "
-"use\n"
-"those interface specific commands and their effect.\n"
-"\n"
-"See iwpriv(8) man page for further information."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:335
-#, c-format
-msgid "An encryption key is required."
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:341
-#, 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 ""
-"ফ্রিকোয়েন্সির শেষে k, M বা G থাকতে হবে (উদাহরণস্বরুপ,২.৪৬ গিগাহার্জ ফ্রিকোয়েন্সীর "
-"জন্য \"2.46G\"),অথবা অনেকগুলো '0' (শূণ্য) যোগ করুন।"
-
-#: ../lib/network/connection/wireless.pm:347
-#, c-format
-msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0' (zeroes)."
-msgstr ""
-"ফ্রিকোয়েন্সির শেষে k, M বা G থাকতে হবে (উদাহরণস্বরুপ,১১M এর জন্য \"11M\"),অথবা "
-"অনেকগুলো '0' (শূণ্য) যোগ করুন।"
-
-#: ../lib/network/connection/wireless.pm:359
-#, c-format
-msgid "Allow access point roaming"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:460
-#, c-format
-msgid "Associated to wireless network \"%s\" on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/wireless.pm:461
-#, c-format
-msgid "Lost association to wireless network on interface %s"
-msgstr ""
-
-#: ../lib/network/connection/xdsl.pm:8
-#, fuzzy, c-format
-msgid "DSL"
-msgstr "এসএসএল"
-
-#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:755
-#, c-format
-msgid "Alcatel speedtouch USB modem"
-msgstr "Alcatel speedtouch ইউএসবি মডেম"
-
-#: ../lib/network/connection/xdsl.pm:104
-#, c-format
-msgid ""
-"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
-"problem.\n"
-"\n"
-"You can find a driver on http://eciadsl.flashtux.org/"
-msgstr ""
-"বাইনারি ড্রাইভার ডিস্ট্রিবিউশন সমস্যার জন্য ECI Hi-Focus মডেম সমর্থন নেই।\n"
-"\n"
-"আপনি http://eciadsl.flashtux.org/ থেকে ড্রাইভার পেতে পারেন"
-
-#: ../lib/network/connection/xdsl.pm:176
-#, c-format
-msgid "DSL over CAPI"
-msgstr "CAPI উপরে DSL"
-
-#: ../lib/network/connection/xdsl.pm:179
-#, c-format
-msgid "Dynamic Host Configuration Protocol (DHCP)"
-msgstr "ডায়নামিক হোস্ট কনফিগারেশন প্রটোকল (DHCP)"
-
-#: ../lib/network/connection/xdsl.pm:180
-#, c-format
-msgid "Manual TCP/IP configuration"
-msgstr "হাতে হাতে TCP/IP কনফিগারেশন"
-
-#: ../lib/network/connection/xdsl.pm:181
-#, c-format
-msgid "Point to Point Tunneling Protocol (PPTP)"
-msgstr "পয়েন্ট টু পয়েন্ট টর্নেলিং প্রটোকল (PPTP)"
-
-#: ../lib/network/connection/xdsl.pm:182
-#, c-format
-msgid "PPP over Ethernet (PPPoE)"
-msgstr "Ethernet মাধ্যমে PPP (PPPoE)"
-
-#: ../lib/network/connection/xdsl.pm:183
-#, c-format
-msgid "PPP over ATM (PPPoA)"
-msgstr "ATM-এর মাধ্যমে PPP (PPPoA)"
-
-#: ../lib/network/connection/xdsl.pm:223
-#, c-format
-msgid "Virtual Path ID (VPI):"
-msgstr "ভার্চুয়াল পাথ আই-ডি(VPI):"
-
-#: ../lib/network/connection/xdsl.pm:224
-#, c-format
-msgid "Virtual Circuit ID (VCI):"
-msgstr "ভার্চুয়াল সার্কিট আই-ডি(VCI):"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:27
-#: ../lib/network/ndiswrapper.pm:42 ../lib/network/ndiswrapper.pm:86
-#: ../lib/network/ndiswrapper.pm:102 ../lib/network/netconnect.pm:131
-#: ../lib/network/netconnect.pm:179 ../lib/network/netconnect.pm:268
-#: ../lib/network/netconnect.pm:813 ../lib/network/thirdparty.pm:114
-#: ../lib/network/thirdparty.pm:131 ../lib/network/thirdparty.pm:214
-#: ../lib/network/thirdparty.pm:216 ../lib/network/thirdparty.pm:237
-#: ../tools/drakconnect:676 ../tools/drakconnect:680 ../tools/drakconnect:689
-#: ../tools/drakconnect:705 ../tools/drakgw:184 ../tools/drakhosts:100
-#: ../tools/drakhosts:245 ../tools/drakhosts:252 ../tools/drakhosts:259
-#: ../tools/drakinvictus:72 ../tools/draknetprofile:113 ../tools/draknfs:85
-#: ../tools/draknfs:106 ../tools/draknfs:273 ../tools/draknfs:400
-#: ../tools/draknfs:402 ../tools/draknfs:405 ../tools/draknfs:497
-#: ../tools/draknfs:504 ../tools/draknfs:567 ../tools/draknfs:574
-#: ../tools/draknfs:581 ../tools/drakroam:79 ../tools/drakroam:92
-#: ../tools/draksambashare:372 ../tools/draksambashare:379
-#: ../tools/draksambashare:382 ../tools/draksambashare:428
-#: ../tools/draksambashare:452 ../tools/draksambashare:518
-#: ../tools/draksambashare:533 ../tools/draksambashare:611
-#: ../tools/draksambashare:678 ../tools/draksambashare:778
-#: ../tools/draksambashare:785 ../tools/draksambashare:916
-#: ../tools/draksambashare:1109 ../tools/draksambashare:1118
-#: ../tools/draksambashare:1140 ../tools/draksambashare:1149
-#: ../tools/draksambashare:1168 ../tools/draksambashare:1177
-#: ../tools/draksambashare:1189
-#, c-format
-msgid "Error"
-msgstr "ত্রুটি"
-
-#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakvpn.pm:45
-#: ../lib/network/netconnect.pm:131 ../lib/network/thirdparty.pm:114
-#, fuzzy, c-format
-msgid "Could not install the packages (%s)!"
-msgstr "%s প্যাকেজগুলি ইনস্টল করা গেলোনা!"
-
-#: ../lib/network/drakfirewall.pm:12
-#, c-format
-msgid "Web Server"
-msgstr "ওয়েব সার্ভার"
-
-#: ../lib/network/drakfirewall.pm:17
-#, c-format
-msgid "Domain Name Server"
-msgstr "ডোমেইন নেম সার্ভার (DNS)"
-
-#: ../lib/network/drakfirewall.pm:22
-#, c-format
-msgid "SSH server"
-msgstr "SSH সার্ভার"
-
-#: ../lib/network/drakfirewall.pm:27
-#, c-format
-msgid "FTP server"
-msgstr "FTP সার্ভার"
-
-#: ../lib/network/drakfirewall.pm:32
-#, c-format
-msgid "Mail Server"
-msgstr "মেইল সার্ভার"
-
-#: ../lib/network/drakfirewall.pm:37
-#, c-format
-msgid "POP and IMAP Server"
-msgstr "POP & IMAP সার্ভার"
-
-#: ../lib/network/drakfirewall.pm:42
-#, c-format
-msgid "Telnet server"
-msgstr "টেলনেট সার্ভার"
-
-# সাম
-#: ../lib/network/drakfirewall.pm:48
-#, c-format
-msgid "Windows Files Sharing (SMB)"
-msgstr "উইন্ডোজ ফাইলস শেয়ারিং (SMB)"
-
-#: ../lib/network/drakfirewall.pm:54
-#, c-format
-msgid "CUPS server"
-msgstr "CUPS সার্ভার"
-
-#: ../lib/network/drakfirewall.pm:60
-#, c-format
-msgid "Echo request (ping)"
-msgstr "Echo request (ping)"
-
-#: ../lib/network/drakfirewall.pm:65
-#, c-format
-msgid "BitTorrent"
-msgstr "বিটTorrent"
-
-#: ../lib/network/drakfirewall.pm:74
-#, c-format
-msgid "Port scan detection"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:166 ../lib/network/drakfirewall.pm:172
-#, fuzzy, c-format
-msgid "Firewall configuration"
-msgstr "স্বনির্বাচিত কনফিগারেশন"
-
-#: ../lib/network/drakfirewall.pm:166
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandriva Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized Mandriva Security Firewall distribution."
-msgstr ""
-"ড্র্যাকফায়ারওয়াল কন্‌ফিগারেটর\n"
-"\n"
-"এটি এই ম্যান্ড্রিব লিনাক্স মেশিনের জন্য একটী ব্যক্তিগত ফায়ারওয়াল কন্‌ফিগার করবে।\n"
-"একটি শক্তিশালী এবং একান্তভাবে নিযুক্ত ফায়ারওয়াল সমাধানের জন্য, অনুগ্রহ করে\n"
-"বিশেষ ম্যান্ড্রিব নিরাপত্তা ফায়ারওয়াল ডিস্ট্রিবিউশনে দেখুন।"
-
-#: ../lib/network/drakfirewall.pm:172
-#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
-msgstr ""
-"ড্র্যাকফায়ারওয়াল কন্‌ফিগারেটর\n"
-"\n"
-"নিশ্চিত হোন যে অন্য কিছু ব্যবহারের আগেই আপনি আপনার নেটওয়ার্ক/ইন্টারনেট প্রবেশ\n"
-"drakconnect দিয়ে কন্‌ফিগার করেছেন।"
-
-#: ../lib/network/drakfirewall.pm:189
-#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
-msgstr "আপনার কোন কোন সার্ভিসগুলোকে ইন্টারনেট থেকে সংযুক্ত হবার ক্ষমতা দিতে চান?"
-
-#: ../lib/network/drakfirewall.pm:190 ../lib/network/shorewall.pm:145
-#, c-format
-msgid "Firewall"
-msgstr "ফায়ারওয়াল"
-
-#: ../lib/network/drakfirewall.pm:192
-#, c-format
-msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp 600:610/tcp 600:610/udp.\n"
-"Have a look at /etc/services for information."
-msgstr ""
-"আপনি একটি miscellaneous পোর্ট দিন। \n"
-"সঠিক উদাহরণ হচ্ছে: ১৩৯/tcp ১৩৯/udp ৬০০:৬১০/tcp ৬০০:৬১০/udp।\n"
-"তথ্যের জন্য /etc/services দেখুন।"
-
-#: ../lib/network/drakfirewall.pm:198
-#, 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.\n"
-"\n"
-"You can also give a range of ports (eg: 24300:24350/udp)"
-msgstr ""
-"ভুল পোর্ট দেয়া হয়েছে: %s।\n"
-"সঠিক ফরম্যাট হচ্ছে \"port/tcp\" বা \"port/udp\", \n"
-"যেখানে পোর্ট হচ্ছে ১ এবং ৬৫৫৩৫ এর মধ্যে।\n"
-"\n"
-"আপনি পোর্টের সীমাও দিয়ে দিতে পারেন (যেমন: 24300:24350/udp)"
-
-#: ../lib/network/drakfirewall.pm:208
-#, c-format
-msgid "Everything (no firewall)"
-msgstr "সবকিছু (কোন ফায়ারওয়াল ছাড়া)"
-
-#: ../lib/network/drakfirewall.pm:210
-#, c-format
-msgid "Other ports"
-msgstr "অন্যান্য পোর্ট"
-
-#: ../lib/network/drakfirewall.pm:211
-#, c-format
-msgid "Log firewall messages in system logs"
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:255 ../lib/network/drakfirewall.pm:258
-#: ../tools/drakids:40 ../tools/drakids:65 ../tools/drakids:181
-#: ../tools/drakids:190 ../tools/drakids:215 ../tools/drakids:224
-#: ../tools/drakids:234 ../tools/drakids:326 ../tools/net_applet:77
-#: ../tools/net_applet:238 ../tools/net_applet:514 ../tools/net_applet:541
-#, fuzzy, c-format
-msgid "Interactive Firewall"
-msgstr "ফায়ারওয়াল"
-
-#: ../lib/network/drakfirewall.pm:256
-#, c-format
-msgid ""
-"You can be warned when someone accesses to a service or tries to intrude "
-"into your computer.\n"
-"Please select which network activities should be watched."
-msgstr ""
-
-#: ../lib/network/drakfirewall.pm:261
-#, c-format
-msgid "Use Interactive Firewall"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:30
-#, fuzzy, c-format
-msgid "VPN configuration"
-msgstr "CUPS কনফিগার"
-
-#: ../lib/network/drakvpn.pm:34
-#, fuzzy, c-format
-msgid "Choose the VPN type"
-msgstr "নতুন সাইজটি পছন্দ করুন"
-
-#: ../lib/network/drakvpn.pm:49
-#, c-format
-msgid "Initializing tools and detecting devices for %s..."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:52
-#, fuzzy, c-format
-msgid "Unable to initialize %s connection type!"
-msgstr "সংযোগের ধরণ অজানা"
-
-#: ../lib/network/drakvpn.pm:60
-#, c-format
-msgid "Please select an existing VPN connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:64
-#, fuzzy, c-format
-msgid "Configure a new connection..."
-msgstr "আপনার কানেকশন পরীক্ষা করা হচ্ছে..."
-
-#: ../lib/network/drakvpn.pm:66
-#, fuzzy, c-format
-msgid "New name"
-msgstr "আসল নাম"
-
-#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
-#: ../lib/network/ndiswrapper.pm:92 ../lib/network/netconnect.pm:471
-#: ../tools/drakconnect:978 ../tools/draknetprofile:129
-#: ../tools/draknetprofile:131 ../tools/drakproxy:36
-#, c-format
-msgid "Warning"
-msgstr "নোটিশ"
-
-#: ../lib/network/drakvpn.pm:70
-#, c-format
-msgid "You must select an existing connection or enter a new name."
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:81
-#, fuzzy, c-format
-msgid "Please enter the required key(s)"
-msgstr "অনুগ্রহ করে WebDAV সার্ভারের URL প্রবেশ করান"
-
-#: ../lib/network/drakvpn.pm:86
-#, fuzzy, c-format
-msgid "Please enter the settings of your VPN connection"
-msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
-
-#: ../lib/network/drakvpn.pm:94 ../lib/network/netconnect.pm:291
-#, c-format
-msgid "Do you want to start the connection now?"
-msgstr ""
-
-#: ../lib/network/drakvpn.pm:100
-#, fuzzy, c-format
-msgid "Connection failed."
-msgstr "কানেকশনের নাম"
-
-#: ../lib/network/drakvpn.pm:108
-#, c-format
-msgid ""
-"The VPN connection is now configured.\n"
-"\n"
-"This VPN connection can be automatically started together with a network "
-"connection.\n"
-"It can be done by reconfiguring the network connection and selecting this "
-"VPN connection.\n"
-msgstr ""
-
-#: ../lib/network/ifw.pm:129
-#, fuzzy, c-format
-msgid "Port scanning"
-msgstr "শেয়ারিং নেই"
-
-# সাম
-#: ../lib/network/ifw.pm:130
-#, fuzzy, c-format
-msgid "Service attack"
-msgstr "আক্রান্ত সার্ভিস: %s"
-
-#: ../lib/network/ifw.pm:131
-#, fuzzy, c-format
-msgid "Password cracking"
-msgstr "পাসওয়ার্ড (পুনরায়)"
-
-#: ../lib/network/ifw.pm:132
-#, c-format
-msgid "\"%s\" attack"
-msgstr ""
-
-# সাম
-#: ../lib/network/ifw.pm:134
-#, c-format
-msgid "A port scanning attack has been attempted by %s."
-msgstr "%s দ্বারা একটি পোর্ট স্ক্যানিং আক্রমনের চেষ্টা করা হয়েছে।"
-
-# সাম
-#: ../lib/network/ifw.pm:135
-#, c-format
-msgid "The %s service has been attacked by %s."
-msgstr "%s দ্বারা %s সার্ভিসটি আক্রান্ত হয়েছে।"
-
-# সাম
-#: ../lib/network/ifw.pm:136
-#, c-format
-msgid "A password cracking attack has been attempted by %s."
-msgstr "%s দ্বারা একটি পাসওয়ার্ড ভাঙার আক্রমনের চেষ্টা করা হয়েছে।"
-
-# সাম
-#: ../lib/network/ifw.pm:137
-#, fuzzy, c-format
-msgid "A \"%s\" attack has been attempted by %s"
-msgstr "%s দ্বারা একটি পোর্ট স্ক্যানিং আক্রমনের চেষ্টা করা হয়েছে।"
-
-#: ../lib/network/ifw.pm:146
-#, c-format
-msgid ""
-"The \"%s\" application is trying to make a service (%s) available to the "
-"network."
-msgstr ""
-
-#. -PO: this should be kept lowercase since the expression is meant to be used between brackets
-#: ../lib/network/ifw.pm:150
-#, fuzzy, c-format
-msgid "port %d"
-msgstr "রিপোর্ট"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/netconnect.pm:603
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#, c-format
-msgid "Manual"
-msgstr "হাতে হাতে"
-
-#: ../lib/network/modem.pm:42 ../lib/network/modem.pm:43
-#: ../lib/network/modem.pm:44 ../lib/network/modem.pm:63
-#: ../lib/network/modem.pm:76 ../lib/network/modem.pm:81
-#: ../lib/network/modem.pm:110 ../lib/network/netconnect.pm:598
-#: ../lib/network/netconnect.pm:603 ../lib/network/netconnect.pm:615
-#: ../lib/network/netconnect.pm:620 ../lib/network/netconnect.pm:636
-#: ../lib/network/netconnect.pm:638
-#, c-format
-msgid "Automatic"
-msgstr "সয়ংক্রিয়"
-
-#: ../lib/network/ndiswrapper.pm:27
-#, c-format
-msgid "No device supporting the %s ndiswrapper driver is present!"
-msgstr ""
-
-# সাম
-#: ../lib/network/ndiswrapper.pm:33
-#, c-format
-msgid "Please select the Windows driver (.inf file)"
-msgstr "উইন্ডোজ ড্রাইভারটি বেছে নিন (.inf ফাইল)"
-
-#: ../lib/network/ndiswrapper.pm:42
-#, c-format
-msgid "Unable to install the %s ndiswrapper driver!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:86
-#, c-format
-msgid "Unable to load the ndiswrapper module!"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:92
+#: ../bin/drakconnect:434
#, c-format
-msgid ""
-"The selected device has already been configured with the %s driver.\n"
-"Do you really want to use a ndiswrapper driver?"
-msgstr ""
-
-#: ../lib/network/ndiswrapper.pm:102
-#, c-format
-msgid "Unable to find the ndiswrapper interface!"
-msgstr ""
-
-# সাম
-#: ../lib/network/ndiswrapper.pm:115
-#, c-format
-msgid "Choose an ndiswrapper driver"
-msgstr "একটি ndiswrapper ড্রাইভার বেছে নিন"
-
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Use the ndiswrapper driver %s"
-msgstr ""
-
-# সাম
-#: ../lib/network/ndiswrapper.pm:118
-#, c-format
-msgid "Install a new driver"
-msgstr "একটি নতুন ড্রাইভার ইনস্টল করুন"
-
-#: ../lib/network/ndiswrapper.pm:129
-#, c-format
-msgid "Select a device:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:37
-#, c-format
-msgid "United States"
-msgstr "যুক্তরাষ্ট্র"
-
-#: ../lib/network/netconnect.pm:60 ../lib/network/netconnect.pm:493
-#: ../lib/network/netconnect.pm:507
-#, c-format
-msgid "Manual choice"
-msgstr "হাতে হাতে পছন্দ"
-
-#: ../lib/network/netconnect.pm:60
-#, c-format
-msgid "Internal ISDN card"
-msgstr "ইন্টার্নাল ISDN কার্ড"
-
-#: ../lib/network/netconnect.pm:65
-#, c-format
-msgid "Protocol for the rest of the world"
-msgstr "বাকী বিশ্বের জন্য প্রটোকল"
-
-#: ../lib/network/netconnect.pm:67 ../tools/drakconnect:564
-#, c-format
-msgid "European protocol (EDSS1)"
-msgstr "ইউরোপীয় প্রটোকল (EDSS1)"
-
-#: ../lib/network/netconnect.pm:68 ../tools/drakconnect:565
-#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
-msgstr ""
-"বাকী বিশ্বের জন্য প্রটকোল\n"
-"কোন D-Channel ছাড়াই (ভাড়া নেয়া লাইনসমূহ)"
-
-#: ../lib/network/netconnect.pm:118 ../tools/drakconnect:61
-#, c-format
-msgid "Network & Internet Configuration"
-msgstr "নেটওয়ার্ক এবং ইন্টারনেট কনফিগারেশন"
-
-#: ../lib/network/netconnect.pm:123
-#, c-format
-msgid "Choose the connection you want to configure"
-msgstr "কনফিগারের জন্য আপনার সংযোগ পছন্দ করুন"
-
-#: ../lib/network/netconnect.pm:145 ../lib/network/netconnect.pm:348
-#: ../lib/network/netconnect.pm:788
-#, c-format
-msgid "Select the network interface to configure:"
-msgstr "কনফিগার করার জন্য নেটওয়ার্কের ইন্টারফেস পছন্দ করুন:"
-
-#: ../lib/network/netconnect.pm:164
-#, c-format
-msgid "No device can be found for this connection type."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:173
-#, fuzzy, c-format
-msgid "Hardware Configuration"
-msgstr "নেটওয়ার্ক কনফিগারেশন"
-
-# সাম
-#: ../lib/network/netconnect.pm:177 ../tools/drakroam:90
-#, c-format
-msgid "Configuring device..."
-msgstr "ডিভাইস কন্‌ফিগার হচ্ছে..."
-
-#: ../lib/network/netconnect.pm:194
-#, c-format
-msgid "Please select your provider:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:209 ../tools/drakroam:170
-#, fuzzy, c-format
-msgid "Scanning for networks..."
-msgstr "নেটওয়ার্ক স্ক্যান করা হচ্ছে..."
-
-#: ../lib/network/netconnect.pm:212
-#, c-format
-msgid "Please select your network:"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:241
-#, c-format
-msgid ""
-"Please select your connection protocol.\n"
-"If you do not know it, keep the preselected protocol."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:285 ../lib/network/netconnect.pm:655
-#, c-format
-msgid "Connection control"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Connection Configuration"
-msgstr "সংযোগ কনফিগারেশন"
-
-#: ../lib/network/netconnect.pm:315
-#, c-format
-msgid "Please fill or check the field below"
-msgstr "অনুগ্রহ করে নিম্নের দেখুন অথবা পূরন করুন"
-
-#: ../lib/network/netconnect.pm:318
-#, c-format
-msgid "Your personal phone number"
-msgstr "আপনার ব্যক্তিগত ফোন নম্বর"
-
-#: ../lib/network/netconnect.pm:319
-#, c-format
-msgid "Provider name (ex provider.net)"
-msgstr "পরিবেশকের নাম (যেমন provider.net)"
-
-#: ../lib/network/netconnect.pm:320 ../tools/drakconnect:494
-#, c-format
-msgid "Provider phone number"
-msgstr "পরিবেশকের ফোন নম্বর"
-
-#: ../lib/network/netconnect.pm:321
-#, c-format
-msgid "Provider DNS 1 (optional)"
-msgstr "পরিবেশকের DNS ১ (ঐচ্ছিক)"
+msgid "Start at boot"
+msgstr "বুটের সময় চালু হবে"
-#: ../lib/network/netconnect.pm:322
+#: ../bin/drakconnect:440 ../lib/network/connection/ethernet.pm:220
#, c-format
-msgid "Provider DNS 2 (optional)"
-msgstr "পরিবেশকের DNS ২ (ঐচ্ছিক)"
+msgid "Network Hotplugging"
+msgstr "নেটওয়ার্ক Hotplugging"
-#: ../lib/network/netconnect.pm:323 ../tools/drakconnect:446
+#: ../bin/drakconnect:446 ../lib/network/netconnect.pm:323
#, c-format
msgid "Dialing mode"
msgstr "ডায়েলের ধরণ"
-#: ../lib/network/netconnect.pm:324 ../tools/drakconnect:451
-#: ../tools/drakconnect:518
+#: ../bin/drakconnect:451 ../bin/drakconnect:518
+#: ../lib/network/netconnect.pm:324
#, c-format
msgid "Connection speed"
msgstr "সংযোগের গতি"
-#: ../lib/network/netconnect.pm:325 ../tools/drakconnect:456
+#: ../bin/drakconnect:456 ../lib/network/netconnect.pm:325
#, c-format
msgid "Connection timeout (in sec)"
msgstr "সংযোগের টাইমআউট (সেকেন্ডে)"
-#: ../lib/network/netconnect.pm:328 ../tools/drakconnect:555
-#, c-format
-msgid "Card IRQ"
-msgstr "কার্ডের IRQ"
-
-#: ../lib/network/netconnect.pm:329 ../tools/drakconnect:556
-#, c-format
-msgid "Card mem (DMA)"
-msgstr "কার্ড মেম (DMA)"
-
-#: ../lib/network/netconnect.pm:330 ../tools/drakconnect:557
-#, c-format
-msgid "Card IO"
-msgstr "কার্ডের IO"
-
-#: ../lib/network/netconnect.pm:331 ../tools/drakconnect:558
-#, c-format
-msgid "Card IO_0"
-msgstr "কার্ডের IO_০"
-
-#: ../lib/network/netconnect.pm:332
-#, c-format
-msgid "Card IO_1"
-msgstr "কার্ডের IO_১"
-
-#: ../lib/network/netconnect.pm:350 ../lib/network/netconnect.pm:385
-#: ../tools/drakconnect:719 ../tools/drakgw:123
-#, c-format
-msgid "Net Device"
-msgstr "নেট ডিভাইস"
-
-#: ../lib/network/netconnect.pm:351 ../lib/network/netconnect.pm:356
-#, c-format
-msgid "External ISDN modem"
-msgstr "বাহ্যিক ISDN মডেম"
-
-#: ../lib/network/netconnect.pm:384
-#, c-format
-msgid "Select a device!"
-msgstr "একটি যন্ত্র বেছে নিন!"
-
-#: ../lib/network/netconnect.pm:393 ../lib/network/netconnect.pm:403
-#: ../lib/network/netconnect.pm:413 ../lib/network/netconnect.pm:446
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid "ISDN Configuration"
-msgstr "ISDN কনফিগারেশন"
-
-#: ../lib/network/netconnect.pm:394
-#, c-format
-msgid "What kind of card do you have?"
-msgstr "আপনার কি ধরনের কার্ড আছে?"
-
-#: ../lib/network/netconnect.pm:404
-#, 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 কার্ড থাকে, পরবর্তী স্ক্রীণের মানগুলো সঠিক হবে।\n"
-"\n"
-"যদি আপনার একটি PCMCIA কার্ড থাকে, আপনার কার্ডের \"irq\" এবং \"io\" আপনাকে "
-"জানতে হবে।\n"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Continue"
-msgstr "অগ্রসর"
-
-#: ../lib/network/netconnect.pm:408
-#, c-format
-msgid "Abort"
-msgstr "বাতিল"
-
-#: ../lib/network/netconnect.pm:414
-#, c-format
-msgid "Which of the following is your ISDN card?"
-msgstr "এগুলির মধ্যে কোনটি আপনার ISDN কার্ড?"
-
-#: ../lib/network/netconnect.pm:432
-#, c-format
-msgid ""
-"A CAPI driver is available for this modem. This CAPI driver can offer more "
-"capabilities than the free driver (like sending faxes). Which driver do you "
-"want to use?"
-msgstr ""
-"এই মডেমের জন্য একটি CAPI ড্রাইভার আছে। এই CAPI ড্রাইভার একটি ফ্রি ড্রাইভারের "
-"চেয়ে বেশি সুবিধা দেবে (ফ্যাক্স পাঠানোর মত)। আপনি কোন্‌ ড্রাইভার ব্যবহার করতে চান?"
-
-#: ../lib/network/netconnect.pm:434 ../tools/drakconnect:113
-#, c-format
-msgid "Driver"
-msgstr "ড্রাইভার"
-
-#: ../lib/network/netconnect.pm:446
-#, c-format
-msgid "Which protocol do you want to use?"
-msgstr "আপনি কোন প্রটোকল ব্যবহার করতে চান?"
-
-#: ../lib/network/netconnect.pm:448 ../tools/drakconnect:113
-#: ../tools/drakconnect:305 ../tools/drakconnect:563 ../tools/drakids:252
-#: ../tools/drakvpn-old:839
-#, c-format
-msgid "Protocol"
-msgstr "প্রটোকল"
-
-#: ../lib/network/netconnect.pm:460
-#, c-format
-msgid ""
-"Select your provider.\n"
-"If it is not listed, choose Unlisted."
-msgstr ""
-"আপনার পরিবেশক পছন্দ করুন।\n"
-"যদি তালিকাভূক্ত না থাকে, তাহলে তালিকায় নেই পছন্দ করুন।"
-
-#: ../lib/network/netconnect.pm:462 ../lib/network/netconnect.pm:558
-#, c-format
-msgid "Provider:"
-msgstr "পরিবেশক:"
-
-#: ../lib/network/netconnect.pm:471
-#, c-format
-msgid ""
-"Your modem is not supported by the system.\n"
-"Take a look at http://www.linmodems.org"
-msgstr ""
-"এই সিস্টেম আপনার মডেম সাপোর্ট করেনা।\n"
-" http://www.linmodems.org-এ একবার দেখুন"
-
-#: ../lib/network/netconnect.pm:490
-#, c-format
-msgid "Select the modem to configure:"
-msgstr "কনফিগার করার জন্য মডেম নির্বাচন করুন:"
-
-#: ../lib/network/netconnect.pm:492
-#, c-format
-msgid "Modem"
-msgstr "মডেম"
-
-#: ../lib/network/netconnect.pm:527
-#, c-format
-msgid "Please choose which serial port your modem is connected to."
-msgstr "আপনার মোডেমটি যেই সিরিয়াল পোর্টে সংযুক্ত আছে তা পছন্দ করুন।"
-
-#: ../lib/network/netconnect.pm:556
-#, c-format
-msgid "Select your provider:"
-msgstr "আপনার পরিবেশক নির্বাচন করুন:"
-
-#: ../lib/network/netconnect.pm:580
-#, c-format
-msgid "Dialup: account options"
-msgstr "ডায়েলআপ: একাউন্টের অপশন"
-
-#: ../lib/network/netconnect.pm:583
-#, c-format
-msgid "Connection name"
-msgstr "কানেকশনের নাম"
-
-#: ../lib/network/netconnect.pm:584
-#, c-format
-msgid "Phone number"
-msgstr "ফোন নম্বর"
-
-#: ../lib/network/netconnect.pm:585
-#, c-format
-msgid "Login ID"
-msgstr "লগইন আইডি"
-
-#: ../lib/network/netconnect.pm:586 ../lib/network/vpn/vpnc.pm:56
-#: ../tools/drakinvictus:110
-#, c-format
-msgid "Password"
-msgstr "পাসওয়ার্ড"
-
-#: ../lib/network/netconnect.pm:600 ../lib/network/netconnect.pm:633
-#, c-format
-msgid "Dialup: IP parameters"
-msgstr "ডায়েলআপ: IP প্যারামিটার"
-
-#: ../lib/network/netconnect.pm:603
-#, c-format
-msgid "IP parameters"
-msgstr "IP প্যারামিটারসমূহ"
-
-#: ../lib/network/netconnect.pm:605
-#, c-format
-msgid "Subnet mask"
-msgstr "সাবনেট মাস্ক"
-
-#: ../lib/network/netconnect.pm:617
-#, c-format
-msgid "Dialup: DNS parameters"
-msgstr "ডায়েলআপ: DNS প্যারামিটার"
-
-#: ../lib/network/netconnect.pm:620
-#, c-format
-msgid "DNS"
-msgstr "DNS"
-
-#: ../lib/network/netconnect.pm:621
-#, c-format
-msgid "Domain name"
-msgstr "ডোমেইন নেম"
-
-#: ../lib/network/netconnect.pm:622 ../tools/drakconnect:996
-#, c-format
-msgid "First DNS Server (optional)"
-msgstr "প্রথম DNS সার্ভার (ঐচ্ছিক)"
-
-#: ../lib/network/netconnect.pm:623 ../tools/drakconnect:997
-#, c-format
-msgid "Second DNS Server (optional)"
-msgstr "দ্বিতীয় DNS সার্ভার (ঐচ্ছিক)"
-
-#: ../lib/network/netconnect.pm:624
-#, c-format
-msgid "Set hostname from IP"
-msgstr "IP থেকে হোস্টনেম সেট করুন"
-
-#: ../lib/network/netconnect.pm:637
-#, c-format
-msgid "Gateway IP address"
-msgstr "গেটওয়ে IP ঠিকানা"
-
-#: ../lib/network/netconnect.pm:670
-#, c-format
-msgid "Automatically at boot"
-msgstr "বুট এর সময় সয়ংক্রিয় ভাবে"
-
-#: ../lib/network/netconnect.pm:672
-#, c-format
-msgid "By using Net Applet in the system tray"
-msgstr "সিস্টেম ট্রে'তে নেট অ্যাপলেট ব্যবহার করে"
-
-#: ../lib/network/netconnect.pm:674
-#, c-format
-msgid "Manually (the interface would still be activated at boot)"
-msgstr "হাতে হাতে (ইন্টারফেস এখনও বুট হওয়ার সময় সক্রিয় হবে)"
-
-#: ../lib/network/netconnect.pm:683
-#, c-format
-msgid "How do you want to dial this connection?"
-msgstr "আপনি কিভাবে ডায়াল করে এই সংযোগ স্থাপন করতে চান?"
-
-#: ../lib/network/netconnect.pm:696
-#, c-format
-msgid "Do you want to try to connect to the Internet now?"
-msgstr "আপনি কি এখন ইন্টার্নেটের সাথে সংযুক্ত হবার চেষ্টা করবেন?"
-
-#: ../lib/network/netconnect.pm:704 ../tools/drakconnect:1027
-#, c-format
-msgid "Testing your connection..."
-msgstr "আপনার কানেকশন পরীক্ষা করা হচ্ছে..."
-
-#: ../lib/network/netconnect.pm:723
-#, c-format
-msgid "The system is now connected to the Internet."
-msgstr "সিস্টেম এখন ইন্টারনেটে সংযুক্ত হবে।"
-
-#: ../lib/network/netconnect.pm:724
-#, c-format
-msgid "For security reasons, it will be disconnected now."
-msgstr "নিরাপত্তা কারণে, এটা এখন বিচ্ছিন্ন হবে।"
-
-#: ../lib/network/netconnect.pm:725
-#, c-format
-msgid ""
-"The system does not seem to be connected to the Internet.\n"
-"Try to reconfigure your connection."
-msgstr ""
-"সিস্টেম ইন্টারনেটে সংযুক্ত আছে বলে মনে হয় না।\n"
-"আপনার সংযুক্তি পুনরায় কন্‌ফিগার করার চেষ্টা করুন।"
-
-#: ../lib/network/netconnect.pm:740
-#, c-format
-msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-msgstr ""
-"অভিনন্দন, নেটওয়ার্ক এবং ইন্টারনেট কন্‌ফিগারেশন শেষ হয়ে গেছে।\n"
-"।\n"
-
-#: ../lib/network/netconnect.pm:743
-#, c-format
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
-"এটা হয়ে যাবার পর, আমরা সুপারিশ করি যে হোস্টনেমের সংক্রান্ত সমস্যাগুলো এড়ানোর জন্য "
-"আপনার X এনভায়রনমেন্ট পুনরায় চালু করুন।"
-
-#: ../lib/network/netconnect.pm:744
-#, c-format
-msgid ""
-"Problems occurred during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection does not "
-"work, you might want to relaunch the configuration."
-msgstr ""
-"কন্‌ফিগারেশনের সময় সমস্যা হয়ে গেছে।\n"
-"net_monitor বা mcc এর মাধ্যমে আপনার সংযুক্ত পরীক্ষা করুন। যদি আপনার সংযুক্তি কাজ না "
-"করে, তাহলে আপনাকে পুনরায় কন্‌ফিগারেশন করতে হবে।"
-
-#: ../lib/network/netconnect.pm:756
-#, c-format
-msgid "Sagem USB modem"
-msgstr "Sagem ইউএসবি মডেম"
-
-#: ../lib/network/netconnect.pm:757 ../lib/network/netconnect.pm:758
-#, c-format
-msgid "Bewan modem"
-msgstr "Bewan মডেম"
-
-#: ../lib/network/netconnect.pm:759
-#, c-format
-msgid "ECI Hi-Focus modem"
-msgstr "ECI Hi-Focus মডেম"
-
-#: ../lib/network/netconnect.pm:760
-#, c-format
-msgid "LAN connection"
-msgstr "LAN সংযোগ"
-
-#: ../lib/network/netconnect.pm:761 ../tools/drakroam:29
-#, c-format
-msgid "Wireless connection"
-msgstr "ওয়্যারলেস সংযোগ"
-
-#: ../lib/network/netconnect.pm:762
-#, c-format
-msgid "ADSL connection"
-msgstr "ASDL সংযোগ"
-
-#: ../lib/network/netconnect.pm:763
-#, c-format
-msgid "Cable connection"
-msgstr "কেবল সংযোগ"
-
-#: ../lib/network/netconnect.pm:764
-#, c-format
-msgid "ISDN connection"
-msgstr "ISDN কানেকশন"
-
-#: ../lib/network/netconnect.pm:765
-#, c-format
-msgid "Modem connection"
-msgstr "মডেম কানেকশন"
-
-#: ../lib/network/netconnect.pm:766
-#, c-format
-msgid "DVB connection"
-msgstr ""
-
-#: ../lib/network/netconnect.pm:768
-#, c-format
-msgid "(detected on port %s)"
-msgstr "(%s পোর্টে সনাক্ত হয়েছে)"
-
-# -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected %s)"
-msgstr "(%s সনাক্ত হয়েছে)"
-
-#: ../lib/network/netconnect.pm:770
-#, c-format
-msgid "(detected)"
-msgstr "(সনাক্ত হয়েছে)"
-
-#: ../lib/network/netconnect.pm:771
-#, c-format
-msgid "Network Configuration"
-msgstr "নেটওয়ার্ক কনফিগারেশন"
-
-#: ../lib/network/netconnect.pm:772
-#, c-format
-msgid "Zeroconf hostname resolution"
-msgstr "Zeroconf হোস্টের নাম রেজ্যুলুশন"
-
-#: ../lib/network/netconnect.pm:773
-#, c-format
-msgid ""
-"If desired, enter a Zeroconf hostname.\n"
-"This is the name your machine will use to advertise any of\n"
-"its shared resources that are not managed by the network.\n"
-"It is not necessary on most networks."
-msgstr ""
-"যদি চায়, তাহলে একটি Zeroconf হোস্টনেম দিন।\n"
-"এটি আপনার মেশিনের নাম যা ব্যবহার করে নেটওয়ার্ক যা করে দিতে \n"
-"পারে না সেই রিসোর্স ভাগাভাগিতে সাহায্য করবে।\n"
-"এটি বেশিরভাগ নেটওয়ার্কের ক্ষেত্রে জরুরী নয়।"
-
-#: ../lib/network/netconnect.pm:777
-#, c-format
-msgid "Zeroconf Host name"
-msgstr "Zeroconf হোস্টের নাম"
-
-#: ../lib/network/netconnect.pm:778
-#, c-format
-msgid "Zeroconf host name must not contain a ."
-msgstr "Zeroconf হোস্টের নামে অবশ্যই a থাকবে না ।"
-
-#: ../lib/network/netconnect.pm:779
-#, 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"
-"কন্‌ফিগারেশন বজায় রাখতে ঠিক আছে'তে ক্লিক করুন, অথবা আপনার ইন্টারনেট এবং নেটওয়ার্ক "
-"সংযুক্তি পুনরায়পুনরায় কন্‌ফিগার করতে বাতিল ক্লিক করুন।\n"
-
-#: ../lib/network/netconnect.pm:782
-#, c-format
-msgid "The network needs to be restarted. Do you want to restart it?"
-msgstr "নোটওয়ার্কের রিষ্টার্টের প্রয়োজন। আপনি কি রি-ষ্টার্ট করতে চান?"
-
-#: ../lib/network/netconnect.pm:783
-#, c-format
-msgid ""
-"A problem occurred while restarting the network: \n"
-"\n"
-"%s"
-msgstr ""
-"নেটওয়ার্ক রি-ষ্টার্ট করার সময় একটি সমস্যা হয়েছে: \n"
-"\n"
-"%s"
-
-#: ../lib/network/netconnect.pm:784
-#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
-msgstr ""
-"আপনি এখন %s সংযোগ কনফিগার করতে যাচ্ছেন।\n"
-"\n"
-"\n"
-" অগ্রসর হবার জন্য \"%s\" চাপুন।"
-
-#: ../lib/network/netconnect.pm:785
-#, c-format
-msgid "Configuration is complete, do you want to apply settings?"
-msgstr "কনফিগারেশন সম্পূর্ন হয়েছে, আপনি কি সেটিংগুলি প্রয়োগ করতে চান?"
-
-#: ../lib/network/netconnect.pm:786
-#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-msgstr ""
-"আপনি ইন্টারনেটের সংযুক্তির বিভিন্ন উপায় কন্‌ফিগার করেছেন।\n"
-"যেটি আপনি ব্যবহার করতে চান বেছে নিন।\n"
-"\n"
-
-#: ../lib/network/netconnect.pm:787
-#, c-format
-msgid "Internet connection"
-msgstr "ইন্টারনেট সংযোগ"
-
-#: ../lib/network/netconnect.pm:789
-#, c-format
-msgid "Configuring network device %s (driver %s)"
-msgstr "%s নেটওয়ার্ক যন্ত্রটি কন্‌ফিগার হচ্ছে (ড্রাইভার %s)"
-
-#: ../lib/network/netconnect.pm:790
-#, c-format
-msgid ""
-"The following protocols can be used to configure a LAN connection. Please "
-"choose the one you want to use."
-msgstr ""
-
-#: ../lib/network/netconnect.pm:791
-#, 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 ""
-"অনুগ্রহ করে আপনার হোস্টনেম দিন।\n"
-"আপনি হোস্টনেমটি যোগ্যতা-সম্পন্ন হোস্টনেম হওয়া উচিত,\n"
-"যেমন ``mybox.mylab.myco.com''।\n"
-"যদি আপনার কোন গেটওয়ে থাকে তাহলে তার আই-পি অ্যাড্রেস দিন"
-
-#: ../lib/network/netconnect.pm:796
-#, c-format
-msgid "Last but not least you can also type in your DNS server IP addresses."
-msgstr ""
-"শেষ কিন্তু সবচেয়ে ছোট নয় আপনি আপনার ডি-এন-এস সার্ভারের আই-পি অ্যাড্রেসগুলো টাইপ "
-"করে দিতে পারেন।"
-
-#: ../lib/network/netconnect.pm:797
-#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr "DNS সার্ভারের ঠিকানা 1.2.3.4-এর মত হতে হবে"
-
-#: ../lib/network/netconnect.pm:798 ../tools/drakconnect:689
-#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr "গেটওয়ে ঠিকানা 1.2.3.4-এর মত হতে হবে"
-
-#: ../lib/network/netconnect.pm:799
-#, c-format
-msgid "Gateway device"
-msgstr "গেটওয়ে ডিভাইস"
-
-#: ../lib/network/netconnect.pm:813
-#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
-msgstr ""
-"একটি অনাকাঙ্খিত ভুল ঘটে গেছে:\n"
-"%s"
-
-#: ../lib/network/network.pm:429
-#, c-format
-msgid "Proxies configuration"
-msgstr "প্রক্সিসমূহের কনফিগারেশন"
-
-#: ../lib/network/network.pm:430
-#, c-format
-msgid ""
-"Here you can set up your proxies configuration (eg: http://"
-"my_caching_server:8080)"
-msgstr ""
-
-#: ../lib/network/network.pm:431
-#, c-format
-msgid "HTTP proxy"
-msgstr "HTTP প্রক্সি"
-
-#: ../lib/network/network.pm:432
-#, c-format
-msgid "Use HTTP proxy for HTTPS connections"
-msgstr ""
-
-#: ../lib/network/network.pm:433
-#, c-format
-msgid "HTTPS proxy"
-msgstr ""
-
-#: ../lib/network/network.pm:434
-#, c-format
-msgid "FTP proxy"
-msgstr "FTP প্রক্সি"
-
-#: ../lib/network/network.pm:435
-#, fuzzy, c-format
-msgid "No proxy for (comma separated list):"
-msgstr "%d কমা দিয়ে আলাদা করা বাক্য সমূহ"
-
-#: ../lib/network/network.pm:440
-#, c-format
-msgid "Proxy should be http://..."
-msgstr "প্রক্সি http://..... হওয়া উচিত্‍‌"
-
-#: ../lib/network/network.pm:441
-#, fuzzy, c-format
-msgid "Proxy should be http://... or https://..."
-msgstr "প্রক্সি http://..... হওয়া উচিত্‍‌"
-
-#: ../lib/network/network.pm:442
-#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "URL 'ftp:' অথবা 'http:' দিয়ে শুরু হওয়া উচিত্‍‌"
-
-#: ../lib/network/shorewall.pm:61
-#, c-format
-msgid ""
-"Please select the interfaces that will be protected by the firewall.\n"
-"\n"
-"All interfaces directly connected to Internet should be selected,\n"
-"while interfaces connected to a local network may be unselected.\n"
-"\n"
-"Which interfaces should be protected?\n"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:136
-#, c-format
-msgid "Keep custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:137
-#, c-format
-msgid "Drop custom rules"
-msgstr ""
-
-#: ../lib/network/shorewall.pm:142
-#, c-format
-msgid ""
-"Your firewall configuration has been manually edited and contains\n"
-"rules that may conflict with the configuration that has just been set up.\n"
-"What do you want to do?"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:134
-#, c-format
-msgid "Some components (%s) are required but aren't available for %s hardware."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:135
-#, c-format
-msgid "Some packages (%s) are required but aren't available."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:137
-#, c-format
-msgid ""
-"These packages can be found in Mandriva Club or in Mandriva commercial "
-"releases."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:138
-#, c-format
-msgid "The following component is missing: %s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:140
-#, c-format
-msgid ""
-"The required files can also be installed from this URL:\n"
-"%s"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:177 ../lib/network/thirdparty.pm:182
-#, c-format
-msgid "Use a floppy"
-msgstr "একটি ফ্লপি ব্যবহার করো"
-
-#: ../lib/network/thirdparty.pm:178 ../lib/network/thirdparty.pm:185
-#, c-format
-msgid "Use my Windows partition"
-msgstr "আমার উইন্ডোজ পার্টিশন ব্যবহার করো"
-
-#: ../lib/network/thirdparty.pm:179
-#, c-format
-msgid "Select file"
-msgstr "ফাইল সিলেক্ট করো"
-
-# সাম
-#: ../lib/network/thirdparty.pm:190
-#, fuzzy, c-format
-msgid "Please select the firmware file (for example: %s)"
-msgstr "উইন্ডোজ ড্রাইভারটি বেছে নিন (.inf ফাইল)"
-
-#: ../lib/network/thirdparty.pm:214
-#, fuzzy, c-format
-msgid "Unable to find \"%s\" on your Windows system!"
-msgstr "আপনার সিস্টেম থেকে ফন্ট মুছে ফেলুন"
-
-#: ../lib/network/thirdparty.pm:216
-#, c-format
-msgid "No Windows system has been detected!"
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:226
-#, c-format
-msgid "Insert floppy"
-msgstr "ফ্লপি প্রবেশ করান"
-
-# বহু কথা বলতে হচ্ছে। ব্যবহারকারী হাঁফসে যাবে ;)
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid ""
-"Insert a FAT formatted floppy in drive %s with %s in root directory and "
-"press %s"
-msgstr ""
-"%s ড্রাইভে FAT ফরম্যাট করা একটি ফ্লপি প্রবেশ করান যার রুট ডিরেক্টরিতে %s আছে এবং %"
-"s চাপুন"
-
-# পরবর্তি
-#: ../lib/network/thirdparty.pm:227
-#, c-format
-msgid "Next"
-msgstr "পরবর্তী"
-
-#: ../lib/network/thirdparty.pm:237
-#, c-format
-msgid "Floppy access error, unable to mount device %s"
-msgstr "ফ্লপি ব্যবহার করা যাচ্ছেনা, %s ডিভাইস মাউন্ট করা সম্ভব হয়নি"
-
-#: ../lib/network/thirdparty.pm:319
-#, c-format
-msgid "Looking for required software and drivers..."
-msgstr ""
-
-#: ../lib/network/thirdparty.pm:330
-#, fuzzy, c-format
-msgid "Please wait, running device configuration commands..."
-msgstr "অনুগ্রহ করে অপেক্ষা করুন, ডিভাইসগুলি সনাক্ত এবং কনফিগার করা হচ্ছে..."
-
-#: ../lib/network/vpn/openvpn.pm:107
-#, c-format
-msgid "X509 Public Key Infrastructure"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:108
-#, c-format
-msgid "Static Key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:115
-#, c-format
-msgid "Type"
-msgstr "ধরণ"
-
-#. -PO: please don't translate the CA acronym
-#: ../lib/network/vpn/openvpn.pm:142
-#, c-format
-msgid "Certificate Authority (CA)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:148
-#, c-format
-msgid "Certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:154
-#, fuzzy, c-format
-msgid "Key"
-msgstr "কেনিয়া"
-
-#: ../lib/network/vpn/openvpn.pm:160
-#, fuzzy, c-format
-msgid "TLS control channel key"
-msgstr "ডান Alt কী"
-
-#: ../lib/network/vpn/openvpn.pm:167
-#, c-format
-msgid "Key direction"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:175
-#, fuzzy, c-format
-msgid "Authenticate using username and password"
-msgstr "ইউজারনেম %s ব্যবহার করে লগইন করা গেলোনা (নষ্ট পাসওয়ার্ড?)"
-
-#: ../lib/network/vpn/openvpn.pm:181
-#, c-format
-msgid "Check server certificate"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:187
-#, fuzzy, c-format
-msgid "Cipher algorithm"
-msgstr "Encryption অ্যালগোরিদম"
-
-#: ../lib/network/vpn/openvpn.pm:191
-#, c-format
-msgid "Default"
-msgstr "স্বাভাবিক"
-
-#: ../lib/network/vpn/openvpn.pm:195
-#, c-format
-msgid "Size of cipher key"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:206
-#, fuzzy, c-format
-msgid "Get from server"
-msgstr "টেলনেট সার্ভার"
-
-#: ../lib/network/vpn/openvpn.pm:216
-#, fuzzy, c-format
-msgid "Gateway port"
-msgstr "গেটওয়ে"
-
-#: ../lib/network/vpn/openvpn.pm:227 ../tools/drakgw:176
-#, fuzzy, c-format
-msgid "Local IP address"
-msgstr "IP ঠিকানাসমূহ"
-
-#: ../lib/network/vpn/openvpn.pm:232
-#, fuzzy, c-format
-msgid "Remote IP address"
-msgstr "গেটওয়ে IP ঠিকানা"
-
-#: ../lib/network/vpn/openvpn.pm:237
-#, fuzzy, c-format
-msgid "Use TCP protocol"
-msgstr "প্রটোকল"
-
-#: ../lib/network/vpn/openvpn.pm:243
-#, c-format
-msgid "Virtual network device type"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:250
-#, c-format
-msgid "Virtual network device number (optional)"
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:365
-#, c-format
-msgid "Starting connection.."
-msgstr ""
-
-#: ../lib/network/vpn/openvpn.pm:380
-#, c-format
-msgid "Please insert your token"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:9
-#, c-format
-msgid "Cisco VPN Concentrator"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:43
-#, fuzzy, c-format
-msgid "Group name"
-msgstr "দলের ID"
-
-#: ../lib/network/vpn/vpnc.pm:47
-#, c-format
-msgid "Group secret"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:52
-#, c-format
-msgid "Username"
-msgstr "ব্যবহারকারীনাম"
-
-#: ../lib/network/vpn/vpnc.pm:61
-#, c-format
-msgid "Use Cisco-UDP encapsulation"
-msgstr ""
-
-#: ../lib/network/vpn/vpnc.pm:67
-#, c-format
-msgid "Use specific UDP port"
-msgstr ""
-
-#: ../tools/drakconnect:81
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "নেটওয়ার্ক কনফিগারেশন (%d অ্যাডাপ্টার)"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Gateway:"
-msgstr "গেটওয়ে:"
-
-#: ../tools/drakconnect:93 ../tools/drakconnect:812
-#, c-format
-msgid "Interface:"
-msgstr "ইন্টারফেস:"
-
-#: ../tools/drakconnect:97 ../tools/net_monitor:119
-#, c-format
-msgid "Wait please"
-msgstr "অনুগ্রহপূর্বক অপেক্ষা করুন"
-
-#: ../tools/drakconnect:113 ../tools/drakinvictus:105
-#, c-format
-msgid "Interface"
-msgstr "ইন্টারফেস"
-
-#: ../tools/drakconnect:113
-#, c-format
-msgid "State"
-msgstr "অবস্থা"
-
-#: ../tools/drakconnect:130
-#, c-format
-msgid "Hostname: "
-msgstr "হোস্টনাম: "
-
-#: ../tools/drakconnect:132
-#, c-format
-msgid "Configure hostname..."
-msgstr "হোস্টনাম কনফিগার করো..."
-
-#: ../tools/drakconnect:146 ../tools/drakconnect:850
-#, c-format
-msgid "LAN configuration"
-msgstr "ল্যান কনফিগারেশন"
-
-#: ../tools/drakconnect:151
-#, c-format
-msgid "Configure Local Area Network..."
-msgstr "স্থানীয় নেটওয়ার্ক কনফিগার করো..."
-
-#: ../tools/drakconnect:157 ../tools/drakconnect:240 ../tools/draknfs:181
-#, c-format
-msgid "Help"
-msgstr "সাহায্য"
-
-#: ../tools/drakconnect:159 ../tools/drakconnect:241 ../tools/drakconnect:245
-#: ../tools/drakinvictus:140
-#, c-format
-msgid "Apply"
-msgstr "প্রয়োগ"
-
-#: ../tools/drakconnect:161 ../tools/drakconnect:942 ../tools/drakconnect:1033
-#: ../tools/draknetprofile:106 ../tools/net_monitor:341
-#, c-format
-msgid "Cancel"
-msgstr "বাতিল"
-
-#: ../tools/drakconnect:162 ../tools/drakconnect:857 ../tools/drakconnect:944
-#: ../tools/drakconnect:1034 ../tools/draknetprofile:108
-#: ../tools/net_monitor:342
-#, c-format
-msgid "Ok"
-msgstr "ঠিক আছে"
-
-#: ../tools/drakconnect:164 ../tools/drakconnect:636 ../tools/drakgw:359
-#: ../tools/drakroam:251 ../tools/drakroam:289 ../tools/draksambashare:208
-#, c-format
-msgid "Please wait"
-msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-
-#: ../tools/drakconnect:166 ../tools/drakconnect:638
+# সাম: পরিমাপক বা মেট্রিক (as in metric system)
+#: ../bin/drakconnect:462 ../lib/network/connection.pm:165
#, c-format
-msgid "Please Wait... Applying the configuration"
-msgstr "অনুগ্রহ করে অপেক্ষা করুন.... কনফিগারেশন প্রস্তাব করা হচ্ছে"
+msgid "Metric"
+msgstr "মেট্রিক"
-#: ../tools/drakconnect:192
+#: ../bin/drakconnect:482 ../lib/network/connection/cable.pm:48
+#: ../lib/network/netconnect.pm:587
#, c-format
-msgid "Manage connections"
-msgstr "সংযোগ ব্যবস্থাপনা"
+msgid "Authentication"
+msgstr "অনুমোদন"
-#: ../tools/drakconnect:219 ../tools/drakroam:302
+#: ../bin/drakconnect:492 ../lib/network/connection/cable.pm:50
+#: ../lib/network/connection/ppp.pm:22 ../lib/network/netconnect.pm:326
+#: ../lib/network/vpn/openvpn.pm:393
#, c-format
-msgid "Device: "
-msgstr "ডিভাইস:"
+msgid "Account Login (user name)"
+msgstr "একাউন্ট লগইন (ইউজারনেম)"
-#: ../tools/drakconnect:302
+#: ../bin/drakconnect:493 ../lib/network/connection/cable.pm:52
+#: ../lib/network/connection/ppp.pm:23 ../lib/network/netconnect.pm:327
+#: ../lib/network/vpn/openvpn.pm:394
#, c-format
-msgid "IP configuration"
-msgstr "আই.পি. কনফিগারেশন"
+msgid "Account Password"
+msgstr "একাউন্ট পাসওয়ার্ড"
-#: ../tools/drakconnect:337
+#: ../bin/drakconnect:494 ../lib/network/netconnect.pm:320
#, c-format
-msgid "DNS servers"
-msgstr "ডি.এন.এস. সার্ভার"
+msgid "Provider phone number"
+msgstr "পরিবেশকের ফোন নম্বর"
-#: ../tools/drakconnect:343
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:10
+#: ../lib/network/netconnect.pm:75
#, c-format
-msgid "Search Domain"
-msgstr "অনুসন্ধান ক্ষেত্র (Domain)"
+msgid "PAP"
+msgstr "PAP"
-#: ../tools/drakconnect:351 ../tools/drakvpn-old:837
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:11
+#: ../lib/network/netconnect.pm:76
#, c-format
-msgid "none"
-msgstr "না"
+msgid "Terminal-based"
+msgstr "টার্মিনাল-ভিত্তিক"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:9
+#: ../lib/network/netconnect.pm:74
#, c-format
-msgid "static"
-msgstr "স্থির"
+msgid "Script-based"
+msgstr "স্ক্রিপ্ট-ভিত্তিক"
-#: ../tools/drakconnect:351
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:12
+#: ../lib/network/netconnect.pm:77
#, c-format
-msgid "DHCP"
-msgstr "ডি.এইচ.সি.পি."
+msgid "CHAP"
+msgstr "CHAP"
-#: ../tools/drakconnect:434
+#: ../bin/drakconnect:499 ../lib/network/connection/ppp.pm:13
+#: ../lib/network/netconnect.pm:78
#, c-format
-msgid "Start at boot"
-msgstr "বুটের সময় চালু হবে"
+msgid "PAP/CHAP"
+msgstr "PAP/CHAP"
-#: ../tools/drakconnect:516
+#: ../bin/drakconnect:516
#, c-format
msgid "Flow control"
msgstr "ফ্লো কনট্রোল"
-#: ../tools/drakconnect:517
+#: ../bin/drakconnect:517
#, c-format
msgid "Line termination"
msgstr "লাইন টার্মিনেশন"
-#: ../tools/drakconnect:528
+#: ../bin/drakconnect:528
#, c-format
msgid "Modem timeout"
msgstr "মডেম টাইম-আউট"
-#: ../tools/drakconnect:532
+#: ../bin/drakconnect:532
#, c-format
msgid "Use lock file"
msgstr "লক (Lock) ফাইল ব্যবহার করো"
-#: ../tools/drakconnect:534
+#: ../bin/drakconnect:534
#, c-format
msgid "Wait for dialup tone before dialing"
msgstr "ডায়াল করার পূর্বে ডায়াল টোনের জন্য অপেক্ষা করো"
-#: ../tools/drakconnect:537
+#: ../bin/drakconnect:537
#, c-format
msgid "Busy wait"
msgstr "ব্যস্ততার অপেক্ষা"
-#: ../tools/drakconnect:542
+#: ../bin/drakconnect:542
#, c-format
msgid "Modem sound"
msgstr "মডেমের শব্দ"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "সক্রিয়"
-#: ../tools/drakconnect:543 ../tools/drakgw:101
+#: ../bin/drakconnect:543 ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "নিষ্ক্রিয়"
-#: ../tools/drakconnect:592
+#: ../bin/drakconnect:555 ../lib/network/netconnect.pm:328
+#, c-format
+msgid "Card IRQ"
+msgstr "কার্ডের IRQ"
+
+#: ../bin/drakconnect:556 ../lib/network/netconnect.pm:329
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "কার্ড মেম (DMA)"
+
+#: ../bin/drakconnect:557 ../lib/network/netconnect.pm:330
+#, c-format
+msgid "Card IO"
+msgstr "কার্ডের IO"
+
+#: ../bin/drakconnect:558 ../lib/network/netconnect.pm:331
+#, c-format
+msgid "Card IO_0"
+msgstr "কার্ডের IO_০"
+
+#: ../bin/drakconnect:564 ../lib/network/netconnect.pm:67
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "ইউরোপীয় প্রটোকল (EDSS1)"
+
+#: ../bin/drakconnect:565 ../lib/network/netconnect.pm:68
+#, c-format
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
+msgstr ""
+"বাকী বিশ্বের জন্য প্রটকোল\n"
+"কোন D-Channel ছাড়াই (ভাড়া নেয়া লাইনসমূহ)"
+
+#: ../bin/drakconnect:592
#, c-format
msgid "Vendor"
msgstr "পরিবেশক"
-#: ../tools/drakconnect:593
+#: ../bin/drakconnect:593
#, c-format
msgid "Description"
msgstr "বর্ণনা"
-#: ../tools/drakconnect:594
+#: ../bin/drakconnect:594
#, c-format
msgid "Media class"
msgstr "মিডিয়া শ্রেণী"
-#: ../tools/drakconnect:595
+#: ../bin/drakconnect:595
#, c-format
msgid "Module name"
msgstr "মডিউলের নাম"
-#: ../tools/drakconnect:596
+#: ../bin/drakconnect:596
#, c-format
msgid "Mac Address"
msgstr "ম্যাক (Mac) ঠিকানা"
-#: ../tools/drakconnect:597
+#: ../bin/drakconnect:597
#, c-format
msgid "Bus"
msgstr "বাস"
-#: ../tools/drakconnect:598
+#: ../bin/drakconnect:598
#, c-format
msgid "Location on the bus"
msgstr "বাস-এ অবস্থান"
-#: ../tools/drakconnect:685 ../tools/drakconnect:766 ../tools/drakconnect:952
+#: ../bin/drakconnect:676 ../bin/drakconnect:680 ../bin/drakconnect:689
+#: ../bin/drakconnect:705 ../bin/drakgw:184 ../bin/drakhosts:100
+#: ../bin/drakhosts:245 ../bin/drakhosts:252 ../bin/drakhosts:259
+#: ../bin/drakinvictus:72 ../bin/draknetprofile:113 ../bin/draknfs:85
+#: ../bin/draknfs:106 ../bin/draknfs:276 ../bin/draknfs:409 ../bin/draknfs:411
+#: ../bin/draknfs:414 ../bin/draknfs:506 ../bin/draknfs:513 ../bin/draknfs:576
+#: ../bin/draknfs:583 ../bin/draknfs:590 ../bin/draksambashare:373
+#: ../bin/draksambashare:380 ../bin/draksambashare:383
+#: ../bin/draksambashare:429 ../bin/draksambashare:453
+#: ../bin/draksambashare:519 ../bin/draksambashare:534
+#: ../bin/draksambashare:612 ../bin/draksambashare:679
+#: ../bin/draksambashare:779 ../bin/draksambashare:786
+#: ../bin/draksambashare:917 ../bin/draksambashare:1110
+#: ../bin/draksambashare:1119 ../bin/draksambashare:1141
+#: ../bin/draksambashare:1150 ../bin/draksambashare:1169
+#: ../bin/draksambashare:1178 ../bin/draksambashare:1190
+#: ../lib/network/connection/xdsl.pm:324 ../lib/network/drakroam.pm:50
+#: ../lib/network/drakroam.pm:56 ../lib/network/drakroam.pm:69
+#: ../lib/network/drakvpn.pm:45 ../lib/network/drakvpn.pm:52
+#: ../lib/network/ndiswrapper.pm:27 ../lib/network/ndiswrapper.pm:42
+#: ../lib/network/ndiswrapper.pm:86 ../lib/network/ndiswrapper.pm:102
+#: ../lib/network/netconnect.pm:131 ../lib/network/netconnect.pm:179
+#: ../lib/network/netconnect.pm:268 ../lib/network/netconnect.pm:813
+#: ../lib/network/thirdparty.pm:115 ../lib/network/thirdparty.pm:132
+#: ../lib/network/thirdparty.pm:215 ../lib/network/thirdparty.pm:217
+#: ../lib/network/thirdparty.pm:238
+#, c-format
+msgid "Error"
+msgstr "ত্রুটি"
+
+#: ../bin/drakconnect:676 ../lib/network/connection/ethernet.pm:160
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ঠিকানা 1.2.3.4-এর মত হতে হবে"
+
+# সাম
+#: ../bin/drakconnect:680 ../lib/network/connection/ethernet.pm:165
+#, c-format
+msgid "Netmask should be in format 255.255.224.0"
+msgstr "নেটমাস্ক 255.255.224.0 এই ফরম্যাটে হতে হবে"
+
+#: ../bin/drakconnect:685 ../bin/drakconnect:767 ../bin/drakconnect:953
#, c-format
msgid "No IP"
msgstr "কোন আই.পি. নেই"
-#: ../tools/drakconnect:686 ../tools/drakconnect:767
+#: ../bin/drakconnect:686 ../bin/drakconnect:768
#, c-format
msgid "No Mask"
msgstr "কোন মাস্ক (Mask) নেই"
-#: ../tools/drakconnect:705 ../tools/drakgw:307
+#: ../bin/drakconnect:689 ../lib/network/netconnect.pm:798
+#, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "গেটওয়ে ঠিকানা 1.2.3.4-এর মত হতে হবে"
+
+#: ../bin/drakconnect:705 ../bin/drakgw:307
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
@@ -2680,17 +546,23 @@ msgstr ""
"আপনার কম্পিউটারে কোন ইথারনেট নেটওয়ার্ক অ্যাডাপ্টার সনাক্ত করা যায় নি। অনুগ্রহপূর্বক "
"হার্ডওয়ার কনফিগারেশন সফটওয়ারটি চালান।"
-#: ../tools/drakconnect:714
+#: ../bin/drakconnect:714
#, c-format
msgid "Remove a network interface"
msgstr "নেটওয়ার্ক ইন্টারফেস অপসারণ করো"
-#: ../tools/drakconnect:718
+#: ../bin/drakconnect:718
#, c-format
msgid "Select the network interface to remove:"
msgstr "যে নেটওয়ার্ক ইন্টারফেসটি অপসারণ করা হবে তা বেছে নিন:"
-#: ../tools/drakconnect:750
+#: ../bin/drakconnect:719 ../bin/drakgw:123 ../lib/network/netconnect.pm:350
+#: ../lib/network/netconnect.pm:385
+#, c-format
+msgid "Net Device"
+msgstr "নেট ডিভাইস"
+
+#: ../bin/drakconnect:751
#, c-format
msgid ""
"An error occurred while deleting the \"%s\" network interface:\n"
@@ -2701,53 +573,53 @@ msgstr ""
"\n"
"%s"
-#: ../tools/drakconnect:751
+#: ../bin/drakconnect:752
#, c-format
msgid ""
"Congratulations, the \"%s\" network interface has been successfully deleted"
msgstr "অভিনন্দন, \"%s\" নেটওয়ার্ক ইন্টারফেসটি সফলভাবে অপসারণ করা গিয়েছে"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "up"
msgstr "সক্রিয়"
-#: ../tools/drakconnect:768 ../tools/drakconnect:921
+#: ../bin/drakconnect:769
#, c-format
msgid "down"
msgstr "নিষ্ক্রিয়"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Connected"
msgstr "সংযুক্ত"
-#: ../tools/drakconnect:803 ../tools/net_monitor:465
+#: ../bin/drakconnect:804 ../bin/net_monitor:465
#, c-format
msgid "Not connected"
msgstr "সংযোগহীন"
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Disconnect..."
msgstr "সংযোগ বিচ্ছিন্ন করো..."
-#: ../tools/drakconnect:805
+#: ../bin/drakconnect:806
#, c-format
msgid "Connect..."
msgstr "সংযোগ স্থাপন করো..."
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Deactivate now"
msgstr "এখনি নিষ্ক্রিয় করো"
-#: ../tools/drakconnect:846
+#: ../bin/drakconnect:847
#, c-format
msgid "Activate now"
msgstr "এখনি সক্রিয় করো"
-#: ../tools/drakconnect:854
+#: ../bin/drakconnect:855
#, c-format
msgid ""
"You do not have any configured interface.\n"
@@ -2756,27 +628,27 @@ msgstr ""
"আপনার সিস্টেমে কোন কনফিগারকৃত ইন্টারফেস নেই।\n"
"'কনফিগার' চেপে প্রথমে তাদের কনফিগার করুন"
-#: ../tools/drakconnect:868
+#: ../bin/drakconnect:869
#, c-format
msgid "LAN Configuration"
msgstr "ল্যান কনফিগারেশন"
-#: ../tools/drakconnect:880
+#: ../bin/drakconnect:881
#, c-format
msgid "Adapter %s: %s"
msgstr "অ্যাডাপ্টার %s: %s"
-#: ../tools/drakconnect:889
+#: ../bin/drakconnect:890
#, c-format
msgid "Boot Protocol"
msgstr "বুট প্রোটোকল"
-#: ../tools/drakconnect:890
+#: ../bin/drakconnect:891
#, c-format
msgid "Started on boot"
msgstr "বুট হওয়ার সময় সচল হয়"
-#: ../tools/drakconnect:926
+#: ../bin/drakconnect:927
#, c-format
msgid ""
"This interface has not been configured yet.\n"
@@ -2785,12 +657,20 @@ msgstr ""
"এই ইন্টারফেস এখনো কন্‌ফিগার করা হয়নি।\n"
"ম্যান্ড্রিব লিনাক্স নিয়ন্ত্রক কেন্দ্র থেকে সহকারী \"ইন্টারফেস যুক্ত করো\" চালান"
-#: ../tools/drakconnect:974
+#: ../bin/drakconnect:975
#, c-format
msgid "Internet connection configuration"
msgstr "ইন্টারনেট সংযোগ কনফিগারেশন"
-#: ../tools/drakconnect:980 ../tools/net_applet:68
+#: ../bin/drakconnect:979 ../bin/draknetprofile:129 ../bin/draknetprofile:131
+#: ../bin/drakproxy:36 ../lib/network/drakvpn.pm:70
+#: ../lib/network/drakvpn.pm:100 ../lib/network/ndiswrapper.pm:92
+#: ../lib/network/netconnect.pm:471
+#, c-format
+msgid "Warning"
+msgstr "নোটিশ"
+
+#: ../bin/drakconnect:981 ../bin/net_applet:69
#, c-format
msgid ""
"You do not have any configured Internet connection.\n"
@@ -2800,52 +680,67 @@ msgstr ""
"অনুগ্রহপূর্বক Mandriva Linux নিয়ন্ত্রণকেন্দ্র থেকে \"%s\" চালান।"
#. -PO: here "Add Connection" should be translated the same was as in control-center
-#: ../tools/drakconnect:981 ../tools/net_applet:69
+#: ../bin/drakconnect:982 ../bin/net_applet:70
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "নতুন নেটওয়ার্ক ইন্টারফেস সেট আপ করুন (LAN, ISDN, ADSL, ...)"
-#: ../tools/drakconnect:995
+#: ../bin/drakconnect:996
#, c-format
msgid "Host name (optional)"
msgstr "হোস্টের নাম (ঐচ্ছিক)"
-#: ../tools/drakconnect:998
+#: ../bin/drakconnect:997 ../lib/network/netconnect.pm:622
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "প্রথম DNS সার্ভার (ঐচ্ছিক)"
+
+#: ../bin/drakconnect:998 ../lib/network/netconnect.pm:623
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "দ্বিতীয় DNS সার্ভার (ঐচ্ছিক)"
+
+#: ../bin/drakconnect:999
#, c-format
msgid "Third DNS server (optional)"
msgstr "তৃতীয় DNS সার্ভার (ঐচ্ছিক)"
-#: ../tools/drakconnect:1020
+#: ../bin/drakconnect:1021
#, c-format
msgid "Internet Connection Configuration"
msgstr "ইন্টারনেট সংযোগ কনফিগারেশন"
-#: ../tools/drakconnect:1021
+#: ../bin/drakconnect:1022
#, c-format
msgid "Internet access"
msgstr "ইন্টারনেট ব্যবহার"
-#: ../tools/drakconnect:1023 ../tools/net_monitor:98
+#: ../bin/drakconnect:1024 ../bin/net_monitor:98
#, c-format
msgid "Connection type: "
msgstr "সংযোগের ধরন: "
-#: ../tools/drakconnect:1026
+#: ../bin/drakconnect:1027
#, c-format
msgid "Status:"
msgstr "অবস্থা:"
-#: ../tools/drakconnect:1031
+#: ../bin/drakconnect:1028 ../lib/network/netconnect.pm:704
+#, c-format
+msgid "Testing your connection..."
+msgstr "আপনার কানেকশন পরীক্ষা করা হচ্ছে..."
+
+#: ../bin/drakconnect:1032
#, c-format
msgid "Parameters"
msgstr "প্যারামিটার"
-#: ../tools/drakgw:71
+#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি"
-#: ../tools/drakgw:75
+#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -2868,7 +763,7 @@ msgstr ""
"\n"
"নোট: স্থানীয় এরিয়া নেটওয়ার্ক (LAN) করার জন্য আপনার একটি নেটওয়ার্ক এডাপ্টর লাগবে।"
-#: ../tools/drakgw:91
+#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
@@ -2881,7 +776,7 @@ msgstr ""
"\n"
"আপনি এখন কি করতে চান?"
-#: ../tools/drakgw:95
+#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -2894,17 +789,17 @@ msgstr ""
"\n"
"আপনি এখন কি করতে চান?"
-#: ../tools/drakgw:101
+#: ../bin/drakgw:101
#, c-format
msgid "Reconfigure"
msgstr "পুনরায়-কনফিগার "
-#: ../tools/drakgw:122
+#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""
-#: ../tools/drakgw:141
+#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -2919,7 +814,7 @@ msgstr ""
"\n"
"আমি আপনার স্থানীয় এরিয়ার নেটওয়ার্ক সেই এডাপ্টরের সাথে করতে যাচ্ছি।"
-#: ../tools/drakgw:152
+#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
@@ -2929,37 +824,42 @@ msgstr ""
"করুন।"
# ##msgstr "স্থানীয় নেটওয়ার্ক ঠিকানা"
-#: ../tools/drakgw:173
+#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "স্থানীয় নেটওয়ার্ক অ্যাড্রেস"
-#: ../tools/drakgw:178
+#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
+#, fuzzy, c-format
+msgid "Local IP address"
+msgstr "IP ঠিকানাসমূহ"
+
+#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr "অন্তঃস্থ ডোমেইন নাম"
-#: ../tools/drakgw:184
+#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s এর বর্তমান কন্‌ফিগে কার্যকরী ল্যান এড্রেস দ্বন্দ্ব পাওয়া গিয়েছিল!\n"
-#: ../tools/drakgw:200
+#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "টার্মিনাল সার্ভার কনফিগারেশন"
-#: ../tools/drakgw:204
+#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""
-#: ../tools/drakgw:205
+#: ../bin/drakgw:205
#, c-format
msgid "The DNS Server IP"
msgstr "DNS সার্ভার আই-পি(IP)"
-#: ../tools/drakgw:232
+#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
@@ -2972,77 +872,77 @@ msgstr ""
"এখানে আপনি DHCP সার্ভার কন্‌ফিগার করার জন্য বিভিন্ন অপশন পছন্দ করতে পারেন।\n"
"যদি কোন অপশন না বুঝতে পারেন, তাহলে যেমন আছে তেমনই রেখে দিন।"
-#: ../tools/drakgw:239
+#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "স্বয়ংক্রিয়ভাবে পুনরায় কন্‌ফিগার"
-#: ../tools/drakgw:240
+#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr "DHCP সীমার শুরু"
-#: ../tools/drakgw:241
+#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr "DHCP সীমার শেষ"
-#: ../tools/drakgw:242
+#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr "ডিফল্ট লীজ(lease) (সেকেন্ডে)"
-#: ../tools/drakgw:243
+#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr "সর্বোচ্চ লীজ(lease) (সেকেন্ডে)"
-#: ../tools/drakgw:266
+#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""
-#: ../tools/drakgw:270
+#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""
-#: ../tools/drakgw:271
+#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""
-#: ../tools/drakgw:272
+#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "দূরবর্তী হোস্টের নাম"
-#: ../tools/drakgw:273
+#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "বৈশিষ্ট্য"
-#: ../tools/drakgw:274
+#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "ক্যাশ সাইজ"
-#: ../tools/drakgw:296
+#: ../bin/drakgw:296
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "হার্ড ড্রাইভের তথ্য"
-#: ../tools/drakgw:313
+#: ../bin/drakgw:313
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি এখন সক্রিয়।"
-#: ../tools/drakgw:319
+#: ../bin/drakgw:319
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "ইন্টারনেট সংযুক্তিতে ভাগাভাগি এখন নিষ্ক্রিয়।"
-#: ../tools/drakgw:325
+#: ../bin/drakgw:325
#, c-format
msgid ""
"Everything has been configured.\n"
@@ -3055,17 +955,17 @@ msgstr ""
"ভাগাভাগি করতে পারেন, স্বয়ংক্রিয়ভাবে নেটওয়ার্ক কন্‌ফিগারেশন (DHCP) এবং\n"
" একটি স্বচ্ছ প্রক্সি ক্যাশ সার্ভার (SQUID) ব্যবহার করে।"
-#: ../tools/drakgw:359
+#: ../bin/drakgw:359
#, c-format
msgid "Disabling servers..."
msgstr "সার্ভার নিষ্ক্রিয়করণ..."
-#: ../tools/drakgw:373
+#: ../bin/drakgw:373
#, c-format
msgid "Firewalling configuration detected!"
msgstr "ফায়ারওয়াল কন্‌ফিগারেশনের সন্ধান পাওয়া গেছে!"
-#: ../tools/drakgw:374
+#: ../bin/drakgw:374
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
@@ -3074,332 +974,351 @@ msgstr ""
"সাবধান! একটি বিদ্যমান ফায়ারওয়াল কন্‌ফিগারেশনের সন্ধান পাওয়া গেছে। আপনি "
"ইনস্টলেশনের পর নিজেই কিছু ঠিক করে নিতে পারেন।"
-#: ../tools/drakgw:379
+#: ../bin/drakgw:379
#, c-format
msgid "Configuring..."
msgstr "কন্‌ফিগার হচ্ছে..."
-#: ../tools/drakgw:380
+#: ../bin/drakgw:380
#, c-format
msgid "Configuring firewall..."
msgstr ""
-#: ../tools/drakhosts:100
+#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""
-#: ../tools/drakhosts:110
+#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "বিস্তারিত তথ্য"
-#: ../tools/drakhosts:111
+#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "বিস্তারিত তথ্য"
-#: ../tools/drakhosts:112
+#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "বিস্তারিত তথ্য"
-#: ../tools/drakhosts:116
+#: ../bin/drakhosts:116
#, fuzzy, c-format
msgid "IP address:"
msgstr "IP ঠিকানাসমূহ"
-#: ../tools/drakhosts:117
+#: ../bin/drakhosts:117
#, fuzzy, c-format
msgid "Host name:"
msgstr "হোস্টের নাম"
-#: ../tools/drakhosts:118
+#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "হোস্টের নাম"
-#: ../tools/drakhosts:122 ../tools/drakhosts:128 ../tools/draksambashare:209
-#: ../tools/draksambashare:230 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:209
+#: ../bin/draksambashare:230 ../bin/draksambashare:377
+#: ../bin/draksambashare:608 ../bin/draksambashare:775
#, c-format
msgid "Error!"
msgstr "সমস্যা!"
-#: ../tools/drakhosts:122
+#: ../bin/drakhosts:122
#, c-format
msgid "Please enter a valid IP address."
msgstr "অনুগ্রহ করে একটি সঠিক IP ঠিকানা দিন।"
-#: ../tools/drakhosts:128
+#: ../bin/drakhosts:128
#, fuzzy, c-format
msgid "Same IP is already in %s file."
msgstr "%s ইতিমধ্যেই ব্যবহৃত হচ্ছে\n"
-#: ../tools/drakhosts:196
+#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:202
+#, c-format
+msgid "Host name"
+msgstr "হোস্টের নাম"
+
+#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "হোস্টের নাম"
-#: ../tools/drakhosts:206 ../tools/drakhosts:236
+#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, fuzzy, c-format
msgid "Manage hosts definitions"
msgstr "সংযোগ ব্যবস্থাপনা"
-#: ../tools/drakhosts:222 ../tools/drakhosts:249
+#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""
-#: ../tools/drakhosts:241 ../tools/draknfs:563 ../tools/draksambashare:1102
-#: ../tools/draksambashare:1133 ../tools/draksambashare:1164
-#: ../tools/drakvpn-old:253 ../tools/drakvpn-old:391
+#: ../bin/drakhosts:241 ../bin/draknfs:572 ../bin/draksambashare:1103
+#: ../bin/draksambashare:1134 ../bin/draksambashare:1165
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "যোগ"
-#: ../tools/drakhosts:242
+#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "প্রিন্টার যোগ করো"
-#: ../tools/drakhosts:245
+#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""
-#: ../tools/drakhosts:248 ../tools/draknfs:570 ../tools/draksambashare:1059
-#: ../tools/draksambashare:1104 ../tools/draksambashare:1135
-#: ../tools/draksambashare:1172
+#: ../bin/drakhosts:248 ../bin/draknfs:579 ../bin/draksambashare:1060
+#: ../bin/draksambashare:1105 ../bin/draksambashare:1136
+#: ../bin/draksambashare:1173
#, c-format
msgid "Modify"
msgstr "পরিবর্তন"
-#: ../tools/drakhosts:252
+#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""
-#: ../tools/drakhosts:255 ../tools/drakids:87 ../tools/drakids:96
-#: ../tools/draknfs:577 ../tools/draksambashare:1060
-#: ../tools/draksambashare:1112 ../tools/draksambashare:1143
-#: ../tools/draksambashare:1180 ../tools/drakvpn-old:253
-#: ../tools/drakvpn-old:391
+#: ../bin/drakhosts:255 ../bin/drakids:87 ../bin/drakids:96 ../bin/draknfs:586
+#: ../bin/draksambashare:1061 ../bin/draksambashare:1113
+#: ../bin/draksambashare:1144 ../bin/draksambashare:1181
+#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "মুছে ফেলো"
-#: ../tools/drakhosts:259
+#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""
-#: ../tools/drakhosts:262 ../tools/drakinvictus:141
-#: ../tools/draknetprofile:147 ../tools/drakroam:309 ../tools/net_applet:138
+#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:147
+#: ../bin/net_applet:139 ../lib/network/drakroam.pm:353
#, c-format
msgid "Quit"
msgstr "বাহির"
-#: ../tools/drakids:28
+#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: ../tools/drakids:65 ../tools/drakids:181 ../tools/drakids:190
-#: ../tools/drakids:215 ../tools/drakids:224 ../tools/drakids:234
-#: ../tools/drakids:326 ../tools/net_applet:238 ../tools/net_applet:514
+#: ../bin/drakids:40 ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190
+#: ../bin/drakids:215 ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:78 ../bin/net_applet:239 ../bin/net_applet:519
+#: ../bin/net_applet:546 ../lib/network/drakfirewall.pm:255
+#: ../lib/network/drakfirewall.pm:258
+#, fuzzy, c-format
+msgid "Interactive Firewall"
+msgstr "ফায়ারওয়াল"
+
+#: ../bin/drakids:65 ../bin/drakids:181 ../bin/drakids:190 ../bin/drakids:215
+#: ../bin/drakids:224 ../bin/drakids:234 ../bin/drakids:326
+#: ../bin/net_applet:239 ../bin/net_applet:519
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
-#: ../tools/drakids:74 ../tools/drakids:102
+#: ../bin/drakids:74 ../bin/drakids:102
#, c-format
msgid "Log"
msgstr "লগ"
-#: ../tools/drakids:78 ../tools/drakids:97 ../tools/net_applet:659
+#: ../bin/drakids:78 ../bin/drakids:97 ../bin/net_applet:663
#, fuzzy, c-format
msgid "Allow"
msgstr "সকল"
-#: ../tools/drakids:79 ../tools/drakids:88 ../tools/net_applet:660
+#: ../bin/drakids:79 ../bin/drakids:88 ../bin/net_applet:664
#, c-format
msgid "Block"
msgstr ""
-#: ../tools/drakids:80 ../tools/drakids:89 ../tools/drakids:98
-#: ../tools/drakids:109 ../tools/drakids:122 ../tools/drakids:130
-#: ../tools/draknfs:186 ../tools/net_monitor:120
+#: ../bin/drakids:80 ../bin/drakids:89 ../bin/drakids:98 ../bin/drakids:109
+#: ../bin/drakids:122 ../bin/drakids:130 ../bin/draknfs:188
+#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: ../tools/drakids:83
+#: ../bin/drakids:83
#, fuzzy, c-format
msgid "Allowed services"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: ../tools/drakids:92
+#: ../bin/drakids:92
#, fuzzy, c-format
msgid "Blocked services"
msgstr "ব্যবহারকারীর ফাইলের ব্যাক-আপ তৈরি করো"
-#: ../tools/drakids:106
+#: ../bin/drakids:106
#, fuzzy, c-format
msgid "Clear logs"
msgstr "সব বন্ধ করো"
-#: ../tools/drakids:107 ../tools/drakids:112 ../tools/net_applet:602
+#: ../bin/drakids:107 ../bin/drakids:112 ../bin/net_applet:607
#, c-format
msgid "Blacklist"
msgstr ""
-#: ../tools/drakids:108 ../tools/drakids:125 ../tools/net_applet:607
+#: ../bin/drakids:108 ../bin/drakids:125 ../bin/net_applet:612
#, c-format
msgid "Whitelist"
msgstr ""
-#: ../tools/drakids:116
+#: ../bin/drakids:116
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "LVM থেকে মুছে ফেলো"
-#: ../tools/drakids:117
+#: ../bin/drakids:117
#, c-format
msgid "Move to whitelist"
msgstr ""
-#: ../tools/drakids:129
+#: ../bin/drakids:129
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "LVM থেকে মুছে ফেলো"
-#: ../tools/drakids:247
+#: ../bin/drakids:247
#, c-format
msgid "Date"
msgstr "তারিখ"
# সাম
-#: ../tools/drakids:248
+#: ../bin/drakids:248
#, fuzzy, c-format
msgid "Attacker"
msgstr "আক্রমনের বিস্তারিত"
# সাম
-#: ../tools/drakids:249
+#: ../bin/drakids:249
#, fuzzy, c-format
msgid "Attack type"
msgstr "আক্রমনের ধরণ: %s"
-#: ../tools/drakids:250 ../tools/drakids:283
+#: ../bin/drakids:250 ../bin/drakids:283
#, c-format
msgid "Service"
msgstr "সার্ভিস"
-#: ../tools/drakids:251
+#: ../bin/drakids:251
#, c-format
msgid "Network interface"
msgstr "নেটওয়ার্ক ইন্টারফেস"
-#: ../tools/drakids:282
+#: ../bin/drakids:282
#, c-format
msgid "Application"
msgstr "অ্যাপলিকেশন"
-#: ../tools/drakids:284
+#: ../bin/drakids:284
#, c-format
msgid "Status"
msgstr "স্ট্যাটাস"
-#: ../tools/drakids:286
+#: ../bin/drakids:286
#, fuzzy, c-format
msgid "Allowed"
msgstr "সকল"
-#: ../tools/drakids:287
+#: ../bin/drakids:287
#, c-format
msgid "Blocked"
msgstr ""
-#: ../tools/drakinvictus:36
+#: ../bin/drakinvictus:36
#, c-format
msgid "Invictus Firewall"
msgstr ""
-#: ../tools/drakinvictus:53
+#: ../bin/drakinvictus:53
#, fuzzy, c-format
msgid "Start as master"
msgstr "বুট হওয়ার সময় সচল হয়"
-#: ../tools/drakinvictus:72
+#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "পাসওয়ার্ড প্রয়োজন"
-#: ../tools/drakinvictus:100
+#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""
-#: ../tools/drakinvictus:102
+#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "ম্যাক (Mac) ঠিকানা"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Virtual shared address"
msgstr "Sainfo উত্‍সের ঠিকানা"
-#: ../tools/drakinvictus:105
+#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""
-#: ../tools/drakinvictus:114
+#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:586
+#: ../lib/network/vpn/vpnc.pm:56
+#, c-format
+msgid "Password"
+msgstr "পাসওয়ার্ড"
+
+#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "ফাইনাল রেজুলেশন"
-#: ../tools/drakinvictus:116
+#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""
-#: ../tools/drakinvictus:123
+#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "সমন্বয়কারী সফটওয়ার"
-#: ../tools/drakinvictus:132
+#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "সংযোগ"
-#: ../tools/draknetprofile:36
+#: ../bin/draknetprofile:36
#, fuzzy, c-format
msgid "Network profiles"
msgstr "নেটওয়ার্ক অপশন"
# সাম
-#: ../tools/draknetprofile:67
+#: ../bin/draknetprofile:67
#, fuzzy, c-format
msgid "Profile"
msgstr "প্রোফাইলসমূহ"
-#: ../tools/draknetprofile:99
+#: ../bin/draknetprofile:99
#, c-format
msgid "New profile..."
msgstr "নতুন প্রোফাইল..."
-#: ../tools/draknetprofile:102
+#: ../bin/draknetprofile:102
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
@@ -3408,131 +1327,131 @@ msgstr ""
"যে প্রোফাইলটি তৈরি করা হবে তার নাম লিখুন (নতুন প্রোফাইলটি বর্তমান প্রোফাইলের কপি "
"হিসাবে তৈরি হবে):"
-#: ../tools/draknetprofile:113
+#: ../bin/draknetprofile:113
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr "\"%s\" প্রোফাইলটি বর্তমানে উপস্থিত আছে!"
-#: ../tools/draknetprofile:129
+#: ../bin/draknetprofile:129
#, c-format
msgid "You can not delete the default profile"
msgstr ""
-#: ../tools/draknetprofile:131
+#: ../bin/draknetprofile:131
#, c-format
msgid "You can not delete the current profile"
msgstr "আপনি বর্তমান প্রোফাইলটি মুছে ফেলতে পারবেন না"
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""
-#: ../tools/draknetprofile:141
+#: ../bin/draknetprofile:141
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""
-#: ../tools/draknetprofile:144
+#: ../bin/draknetprofile:144
#, c-format
msgid "Activate"
msgstr "সক্রিয় করো"
-#: ../tools/draknetprofile:145
+#: ../bin/draknetprofile:145
#, fuzzy, c-format
msgid "Clone"
msgstr "সংযোগ স্থাপন করো"
-#: ../tools/draknetprofile:146
+#: ../bin/draknetprofile:146
#, c-format
msgid "Delete"
msgstr "মুছে ফেলো"
-#: ../tools/draknfs:41
+#: ../bin/draknfs:41
#, c-format
msgid "map root user as anonymous"
msgstr ""
-#: ../tools/draknfs:42
+#: ../bin/draknfs:42
#, c-format
msgid "map all users to anonymous user"
msgstr ""
-#: ../tools/draknfs:43
+#: ../bin/draknfs:43
#, c-format
msgid "No user UID mapping"
msgstr ""
-#: ../tools/draknfs:44
+#: ../bin/draknfs:44
#, c-format
msgid "allow real remote root access"
msgstr ""
-#: ../tools/draknfs:58 ../tools/draknfs:59 ../tools/draknfs:60
-#: ../tools/draksambashare:161 ../tools/draksambashare:162
-#: ../tools/draksambashare:163
+#: ../bin/draknfs:58 ../bin/draknfs:59 ../bin/draknfs:60
+#: ../bin/draksambashare:161 ../bin/draksambashare:162
+#: ../bin/draksambashare:163
#, c-format
msgid "/_File"
msgstr "/ফাইল (_ফ)"
-#: ../tools/draknfs:59 ../tools/draksambashare:162
+#: ../bin/draknfs:59 ../bin/draksambashare:162
#, c-format
msgid "/_Write conf"
msgstr ""
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "/_Quit"
msgstr "/পরিত্যাগ (_প)"
-#: ../tools/draknfs:60 ../tools/draksambashare:163
+#: ../bin/draknfs:60 ../bin/draksambashare:163
#, c-format
msgid "<control>Q"
msgstr "<control>0x10009aa"
-#: ../tools/draknfs:63 ../tools/draknfs:64 ../tools/draknfs:65
+#: ../bin/draknfs:63 ../bin/draknfs:64 ../bin/draknfs:65
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "ডি.এন.এস. সার্ভার"
-#: ../tools/draknfs:64 ../tools/draksambashare:166
+#: ../bin/draknfs:64 ../bin/draksambashare:166
#, c-format
msgid "/_Restart"
msgstr ""
-#: ../tools/draknfs:65 ../tools/draksambashare:167
+#: ../bin/draknfs:65 ../bin/draksambashare:167
#, c-format
msgid "/R_eload"
msgstr ""
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "NFS server"
msgstr "NFS সার্ভার"
-#: ../tools/draknfs:84
+#: ../bin/draknfs:84
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""
-#: ../tools/draknfs:85
+#: ../bin/draknfs:85
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""
-#: ../tools/draknfs:101 ../tools/draksambashare:225
+#: ../bin/draknfs:101 ../bin/draksambashare:225
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "গতিপথ"
-#: ../tools/draknfs:106 ../tools/draksambashare:230
+#: ../bin/draknfs:106 ../bin/draksambashare:230
#, c-format
msgid "Should be a directory."
msgstr "একটি ডিরেক্টরি হওয়া আবশ্যক।"
-#: ../tools/draknfs:137
+#: ../bin/draknfs:137
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
@@ -3559,7 +1478,7 @@ msgid ""
"result.\n"
msgstr ""
-#: ../tools/draknfs:152
+#: ../bin/draknfs:152
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
@@ -3585,27 +1504,32 @@ msgid ""
"the uid and gid of the anonymous account.\n"
msgstr ""
-#: ../tools/draknfs:168
+#: ../bin/draknfs:168
#, c-format
msgid "Synchronous access:"
msgstr ""
-#: ../tools/draknfs:169
+#: ../bin/draknfs:169
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "ইন্টারনেট সংযোগ"
-#: ../tools/draknfs:170
+#: ../bin/draknfs:170
#, c-format
msgid "Read-Only share:"
msgstr ""
-#: ../tools/draknfs:172
+#: ../bin/draknfs:171
+#, c-format
+msgid "Subtree checking:"
+msgstr ""
+
+#: ../bin/draknfs:173
#, c-format
msgid "Advanced Options"
msgstr ""
-#: ../tools/draknfs:173
+#: ../bin/draknfs:174
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
@@ -3613,7 +1537,7 @@ msgid ""
"is on by default."
msgstr ""
-#: ../tools/draknfs:174
+#: ../bin/draknfs:175
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
@@ -3622,7 +1546,7 @@ msgid ""
"using this option."
msgstr ""
-#: ../tools/draknfs:175
+#: ../bin/draknfs:176
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
@@ -3630,748 +1554,695 @@ msgid ""
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""
-#: ../tools/draknfs:180 ../tools/draksambashare:605
-#: ../tools/draksambashare:772
+#: ../bin/draknfs:177
+#, c-format
+msgid ""
+"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
+"help improve security in some cases, but can decrease reliability. See "
+"exports(5) man page for more details."
+msgstr ""
+
+#: ../bin/draknfs:182 ../bin/draksambashare:606 ../bin/draksambashare:773
#, c-format
msgid "Information"
msgstr "তথ্য"
-#: ../tools/draknfs:260
+#: ../bin/draknfs:263
#, c-format
msgid "Directory"
msgstr "ডিরেক্টরি"
-#: ../tools/draknfs:264
+#: ../bin/draknfs:267
#, c-format
msgid "Draknfs entry"
msgstr ""
-#: ../tools/draknfs:273
+#: ../bin/draknfs:276
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""
-#: ../tools/draknfs:357
+#: ../bin/draknfs:365
#, c-format
msgid "NFS directory"
msgstr ""
-#: ../tools/draknfs:358 ../tools/draksambashare:361
-#: ../tools/draksambashare:570 ../tools/draksambashare:749
+#: ../bin/draknfs:366 ../bin/draksambashare:361 ../bin/draksambashare:571
+#: ../bin/draksambashare:750
#, c-format
msgid "Directory:"
msgstr "ডিরেক্টরি:"
-#: ../tools/draknfs:359
+#: ../bin/draknfs:367
#, fuzzy, c-format
msgid "Host access"
msgstr "হোস্টের নাম"
-#: ../tools/draknfs:360
+#: ../bin/draknfs:368
#, c-format
msgid "Access:"
msgstr "ব্যবহার :"
-#: ../tools/draknfs:361
+#: ../bin/draknfs:369
#, c-format
msgid "User ID Mapping"
msgstr ""
-#: ../tools/draknfs:362
+#: ../bin/draknfs:370
#, c-format
msgid "User ID:"
msgstr ""
-#: ../tools/draknfs:363
+#: ../bin/draknfs:371
#, c-format
msgid "Anonymous user ID:"
msgstr ""
-#: ../tools/draknfs:364
+#: ../bin/draknfs:372
#, c-format
msgid "Anonymous Group ID:"
msgstr ""
-#: ../tools/draknfs:400
+#: ../bin/draknfs:409
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "কার্ডের ওয়্যারলেস প্যারামিটার প্রবেশ করান"
-#: ../tools/draknfs:402
+#: ../bin/draknfs:411
#, c-format
msgid "Can't create this directory."
msgstr ""
-#: ../tools/draknfs:405
+#: ../bin/draknfs:414
#, c-format
msgid "You must specify hosts access."
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Share Directory"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Hosts Wildcard"
msgstr ""
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "General Options"
msgstr "সাধারণ অপশন"
-#: ../tools/draknfs:485
+#: ../bin/draknfs:494
#, c-format
msgid "Custom Options"
msgstr ""
-#: ../tools/draknfs:497 ../tools/draksambashare:376
-#: ../tools/draksambashare:607 ../tools/draksambashare:774
+#: ../bin/draknfs:506 ../bin/draksambashare:377 ../bin/draksambashare:608
+#: ../bin/draksambashare:775
#, c-format
msgid "Please enter a directory to share."
msgstr ""
-#: ../tools/draknfs:504
+#: ../bin/draknfs:513
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""
-#: ../tools/draknfs:519
+#: ../bin/draknfs:528
#, c-format
msgid "Manage NFS shares"
msgstr ""
-#: ../tools/draknfs:558
+#: ../bin/draknfs:567
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""
-#: ../tools/draknfs:567
+#: ../bin/draknfs:576
#, c-format
msgid "Failed to add NFS share."
msgstr ""
-#: ../tools/draknfs:574
+#: ../bin/draknfs:583
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""
-#: ../tools/draknfs:581
+#: ../bin/draknfs:590
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""
-#: ../tools/drakproxy:36
+#: ../bin/drakproxy:36
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: ../tools/drakroam:61
-#, c-format
-msgid "No device found"
-msgstr "কোন ডিভাইস পাওয়া যায় নি"
-
-#: ../tools/drakroam:86 ../tools/drakroam:217
-#, fuzzy, c-format
-msgid "Please enter settings for network"
-msgstr "বিস্তারিত তথ্য"
-
-#: ../tools/drakroam:115
-#, c-format
-msgid "SSID"
-msgstr ""
-
-#: ../tools/drakroam:116
-#, c-format
-msgid "Signal strength"
-msgstr ""
-
-#: ../tools/drakroam:118
-#, c-format
-msgid "Encryption"
-msgstr "এনক্রিপশন"
-
-#: ../tools/drakroam:131
-#, c-format
-msgid "Hostname changed to \"%s\""
-msgstr ""
-
-#: ../tools/drakroam:251
-#, fuzzy, c-format
-msgid "Connecting..."
-msgstr "সংযোগ স্থাপন করো..."
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Disconnect"
-msgstr "সংযোগ বিচ্ছিন্ন করো"
-
-#: ../tools/drakroam:273
-#, c-format
-msgid "Connect"
-msgstr "সংযোগ স্থাপন করো"
-
-#: ../tools/drakroam:289
-#, fuzzy, c-format
-msgid "Disconnecting..."
-msgstr "সংযোগ বিচ্ছিন্ন করো..."
-
-#: ../tools/drakroam:306
-#, c-format
-msgid "Configure"
-msgstr "কনফিগার"
-
-#: ../tools/drakroam:308
-#, c-format
-msgid "Refresh"
-msgstr "রিফ্রেশ"
-
-#: ../tools/draksambashare:63
+#: ../bin/draksambashare:63
#, c-format
msgid "User name"
msgstr "ইউজারের নাম"
-#: ../tools/draksambashare:70
+#: ../bin/draksambashare:70
#, c-format
msgid "Share name"
msgstr "শেয়ারের নাম"
# সাম
-#: ../tools/draksambashare:71
+#: ../bin/draksambashare:71
#, fuzzy, c-format
msgid "Share directory"
msgstr "এই নামে কোন ডিরেক্টরি নেই"
-#: ../tools/draksambashare:72 ../tools/draksambashare:105
+#: ../bin/draksambashare:72 ../bin/draksambashare:105
#, c-format
msgid "Comment"
msgstr "মন্তব্য"
-#: ../tools/draksambashare:73 ../tools/draksambashare:106
+#: ../bin/draksambashare:73 ../bin/draksambashare:106
#, fuzzy, c-format
msgid "Browseable"
msgstr "ব্রাউজ"
-#: ../tools/draksambashare:74
+#: ../bin/draksambashare:74
#, c-format
msgid "Public"
msgstr "সাধারণ"
-#: ../tools/draksambashare:75 ../tools/draksambashare:111
+#: ../bin/draksambashare:75 ../bin/draksambashare:111
#, fuzzy, c-format
msgid "Writable"
msgstr "লেখো"
-#: ../tools/draksambashare:76 ../tools/draksambashare:152
+#: ../bin/draksambashare:76 ../bin/draksambashare:152
#, fuzzy, c-format
msgid "Create mask"
msgstr "তৈরী করো"
-#: ../tools/draksambashare:77 ../tools/draksambashare:153
+#: ../bin/draksambashare:77 ../bin/draksambashare:153
#, fuzzy, c-format
msgid "Directory mask"
msgstr "ব্যাক-আপ ধারনকারী ডিরেক্টরি"
-#: ../tools/draksambashare:78
+#: ../bin/draksambashare:78
#, fuzzy, c-format
msgid "Read list"
msgstr "পড়ো"
-#: ../tools/draksambashare:79 ../tools/draksambashare:112
-#: ../tools/draksambashare:584
+#: ../bin/draksambashare:79 ../bin/draksambashare:112
+#: ../bin/draksambashare:585
#, fuzzy, c-format
msgid "Write list"
msgstr "লেখো"
-#: ../tools/draksambashare:80 ../tools/draksambashare:144
+#: ../bin/draksambashare:80 ../bin/draksambashare:144
#, fuzzy, c-format
msgid "Admin users"
msgstr "ইউজার যোগ করো"
-#: ../tools/draksambashare:81 ../tools/draksambashare:145
+#: ../bin/draksambashare:81 ../bin/draksambashare:145
#, fuzzy, c-format
msgid "Valid users"
msgstr "ইউজার যোগ করো"
-#: ../tools/draksambashare:82
+#: ../bin/draksambashare:82
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "অনুমতি"
-#: ../tools/draksambashare:83 ../tools/draksambashare:146
+#: ../bin/draksambashare:83 ../bin/draksambashare:146
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "ফাইল লুকানো হোক"
-#: ../tools/draksambashare:84 ../tools/draksambashare:147
+#: ../bin/draksambashare:84 ../bin/draksambashare:147
#, c-format
msgid "Hide files"
msgstr "ফাইল লুকানো হোক"
-#: ../tools/draksambashare:85 ../tools/draksambashare:151
+#: ../bin/draksambashare:85 ../bin/draksambashare:151
#, fuzzy, c-format
msgid "Preserve case"
msgstr "পছন্দ"
-#: ../tools/draksambashare:86
+#: ../bin/draksambashare:86
#, fuzzy, c-format
msgid "Force create mode"
msgstr "আপনার প্রিন্টারের মডেল"
-#: ../tools/draksambashare:87
+#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force group"
msgstr "পি-এফ-এস গ্রুপ"
-#: ../tools/draksambashare:88 ../tools/draksambashare:150
+#: ../bin/draksambashare:88 ../bin/draksambashare:150
#, fuzzy, c-format
msgid "Default case"
msgstr "ডিফল্ট ব্যবহারকারী"
-#: ../tools/draksambashare:103
+#: ../bin/draksambashare:103
#, c-format
msgid "Printer name"
msgstr "প্রিন্টারের নাম"
-#: ../tools/draksambashare:104
+#: ../bin/draksambashare:104
#, c-format
msgid "Path"
msgstr "পাথ"
-#: ../tools/draksambashare:107 ../tools/draksambashare:576
+#: ../bin/draksambashare:107 ../bin/draksambashare:577
#, fuzzy, c-format
msgid "Printable"
msgstr "সক্রিয়"
-#: ../tools/draksambashare:108
+#: ../bin/draksambashare:108
#, fuzzy, c-format
msgid "Print Command"
msgstr "কমান্ড"
-#: ../tools/draksambashare:109
+#: ../bin/draksambashare:109
#, fuzzy, c-format
msgid "LPQ command"
msgstr "কমান্ড"
-#: ../tools/draksambashare:110
+#: ../bin/draksambashare:110
#, c-format
msgid "Guest ok"
msgstr ""
-#: ../tools/draksambashare:113 ../tools/draksambashare:154
-#: ../tools/draksambashare:585
+#: ../bin/draksambashare:113 ../bin/draksambashare:154
+#: ../bin/draksambashare:586
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "অনুমতি"
-#: ../tools/draksambashare:114
+#: ../bin/draksambashare:114
#, c-format
msgid "Printing"
msgstr "প্রিন্টিং"
-#: ../tools/draksambashare:115
+#: ../bin/draksambashare:115
#, fuzzy, c-format
msgid "Create mode"
msgstr "কার্ড মডেল:"
-#: ../tools/draksambashare:116
+#: ../bin/draksambashare:116
#, fuzzy, c-format
msgid "Use client driver"