summaryrefslogtreecommitdiffstats
path: root/lib/Xconfig/card.pm
blob: 924110f7c2882718507829318b9046adc7520126 (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
package Xconfig::card; # $Id$

use diagnostics;
use strict;

use lib '/usr/lib/libDrakX';
use detect_devices;
use Xconfig::xfree;
use modules;
use common;
use interactive;
use log;

my $lib = arch() =~ /x86_64/ ? "lib64" : "lib";

sub modules_dir() { "/usr/$lib/xorg/modules" }

my %VideoRams = (
     256 => N_("256 kB"),
     512 => N_("512 kB"),
    1024 => N_("1 MB"),
    2048 => N_("2 MB"),
    4096 => N_("4 MB"),
    8192 => N_("8 MB"),
   16384 => N_("16 MB"),
   32768 => N_("32 MB"),
   65536 => N_("64 MB or more"),
);

my @xfree4_Drivers = ((arch() =~ /^sparc/ ? qw(sunbw2 suncg14 suncg3 suncg6 sunffb sunleo suntcx) :
		    qw(amd apm ark ast avivo chips cirrus cyrix glide i128 i740 imstt intel
                       mga nsc neomagic newport nv rendition openchrome vesa via nouveau psb
                       s3 s3virge savage siliconmotion sis sisusb tdfx tga trident tseng vmware)), 
		    qw(ati glint vga fbdev));

sub from_raw_X {
    my ($raw_X) = @_;

    my ($device, @cards) = $raw_X->get_devices or die "no card configured";

    my $card = {
	use_DRI_GLX  => eval { any { /dri/ } $raw_X->get_modules },
	DRI_GLX_SPECIAL => $device->{Driver} eq 'nvidia' && eval { any { $_ eq 'glx' } $raw_X->get_modules },
	%$device,
	if_($device->{Driver} eq 'nvidia',
	    DriverVersion => 
	      readlink("$::prefix/etc/alternatives/gl_conf") =~ m!nvidia(.*)/! ? $1 : '97xx'),
	if_(@cards, cards => \@cards),
    };
    add_to_card__using_Cards($card, $card->{BoardName});
    $card;
}

sub to_raw_X {
    my ($card, $raw_X) = @_;

    my @cards = ($card, @{$card->{cards} || []});

    foreach (@cards) {
	if (arch() =~ /ppc/ && ($_->{Driver} eq 'r128' || $_->{Driver} eq 'radeon')) {
	    $_->{UseFBDev} = 1;
	}
    }

    $raw_X->set_devices(@cards);

    $raw_X->get_ServerLayout->{Xinerama} = { commented => !$card->{Xinerama}, Option => 1 }
      if defined $card->{Xinerama};

    # cleanup deprecated previous special nvidia explicit libglx
    $raw_X->remove_load_module(modules_dir() . "$_/libglx.so") foreach '/extensions/nvidia', '/extensions/nvidia_legacy', '/extensions';

    # remove ModulePath that we added
    $raw_X->remove_ModulePath(modules_dir() . "/extensions/$_") foreach 'nvidia97xx', 'nvidia96xx', 'nvidia71xx', 'nvidia-current';
    $raw_X->remove_ModulePath(modules_dir());
    #- if we have some special ModulePath, ensure the last one is the standard ModulePath
    $raw_X->add_ModulePath(modules_dir()) if $raw_X->get_ModulePaths;

    $raw_X->set_load_module('glx', $card->{Driver} ne 'fbdev'); #- glx for everyone, except fbdev
    $raw_X->set_load_module('dri', $card->{use_DRI_GLX}); #- dri when needed, except proprietary nvidia

    $raw_X->remove_Section('DRI');

    $raw_X->remove_load_module('v4l') if $card->{use_DRI_GLX} && $card->{Driver} eq 'r128';
}

sub probe() {
#-for Pixel tests
#-    my @c = { driver => 'Card:Matrox Millennium G400 DualHead', description => 'Matrox|Millennium G400 Dual HeadCard' };
    my @c = detect_devices::matching_driver__regexp('^(Card|Server|Driver):');

    my @cards = map {
	my @l = $_->{description} =~ /(.*?)\|(.*)/;
	my $card = { 
	    description => $_->{description},
	    VendorName => $l[0], BoardName => $l[1],
	    BusID => "PCI:$_->{pci_bus}:$_->{pci_device}:$_->{pci_function}",
	};
	if (my ($card_name) = $_->{driver} =~ /Card:(.*)/) { 
	    $card->{BoardName} = $card_name; 
	    add_to_card__using_Cards($card, $card_name);
	} elsif ($_->{driver} =~ /Driver:(.*)/) { 
	    $card->{Driver} = $1;
	} else { 
	    internal_error();
	}
	#dual head ATI card have a dummy DISPLAY_OTHER pci device because it 
	#was needed by Win2000, filter those out because we don't want to 
	#behave as if there were 2 video cards in the system in such cases
	($_->{'media_type'} eq 'DISPLAY_VGA')?$card:();
    } @c;

    if (@cards >= 2 && $cards[0]{card_name} eq $cards[1]{card_name} && $cards[0]{card_name} eq 'Intel 830 - 965') {
	shift @cards;
    }
    #- take a default on sparc if nothing has been found.
    if (arch() =~ /^sparc/ && !@cards) {
        log::l("Using probe with /proc/fb as nothing has been found!");
	my $s = cat_("/proc/fb");
	@cards = { server => $s =~ /Mach64/ ? "Mach64" : $s =~ /Permedia2/ ? "3DLabs" : "Sun24" };
    }

    #- disabling MULTI_HEAD when not available
    foreach (@cards) { 
	$_->{MULTI_HEAD} && $_->{card_name} =~ /G[24]00/ or next;
	if ($ENV{MATROX_HAL}) {
	    $_->{need_MATROX_HAL} = 1;
	} else {
	    delete $_->{MULTI_HEAD};
	}
    }

    #- in case of only one cards, remove all BusID reference, this will avoid
    #- need of change of it if the card is moved.
    #- on many PPC machines, card is on-board, BusID is important, leave?
    if (@cards == 1 && !$cards[0]{MULTI_HEAD} && arch() !~ /ppc/) {
	delete $cards[0]{BusID};
    }

    @cards;
}

sub card_config__not_listed {
    my ($in, $card, $options) = @_;

    my $vendors_regexp = join '|', map { quotemeta } (
        '3Dlabs',
        'AOpen', 'ASUS', 'ATI', 'Ark Logic', 'Avance Logic',
        'Cardex', 'Chaintech', 'Chips & Technologies', 'Cirrus Logic', 'Compaq', 'Creative Labs',
        'Dell', 'Diamond', 'Digital',
        'ET', 'Elsa',
        'Genoa', 'Guillemot', 'Hercules', 'Intel', 'Leadtek',
        'Matrox', 'Miro', 'NVIDIA', 'NeoMagic', 'Number Nine',
        'Oak', 'Orchid',
        'RIVA', 'Rendition Verite',
        'S3', 'Silicon Motion', 'STB', 'SiS', 'Sun',
        'Toshiba', 'Trident',
        'VideoLogic',
    );
    my $cards = readCardsDB("$ENV{SHARE_PATH}/ldetect-lst/Cards+");

    my @xf4 = grep { $options->{allowFB} || $::isStandalone || $_ ne 'fbdev' } 
                 uniq(@xfree4_Drivers, map { $_->{Driver} } values %$cards);
    my @list = (
	(map { 'Vendor|' . $_ } keys %$cards),
	(map { 'Xorg|' . $_ } @xf4),
    );

    my $r = exists $cards->{$card->{BoardName}} ? "Vendor|$card->{BoardName}" : 'Xorg|vesa';
    $in->ask_from_({ title => N("X server"), 
		     messages => N("Choose an X server"),
		     interactive_help_id => 'configureX_card_list',
		   },
		   [ { val => \$r, separator => '|', list => \@list, sort => 1,
		       format => sub { $_[0] =~ /^Vendor\|($vendors_regexp)\s*-?(.*)/ ? "Vendor|$1|$2" : 
				       $_[0] =~ /^Vendor\|(.*)/ ? "Vendor|Other|$1" : $_[0] } } ]) or return;

    log::explanations("Xconfig::card: $r manually chosen");

    $r eq "Vendor|$card->{BoardName}" and return 1; #- it is unchanged, do not modify $card

    my ($kind, $s) = $r =~ /(.*?)\|(.*)/;

    %$card = ();
    if ($kind eq 'Vendor') {
	add_to_card__using_Cards($card, $s);
    } else {
	$card->{Driver} = $s;
	$card->{DRI_GLX} = 0;
    }
    $card->{manually_chosen} = 1;
    1;
}

sub multi_head_choose {
    my ($in, $_auto, @cards) = @_;

    my @choices = multi_head_choices('', @cards);

    my $tc = $choices[0];
    if (@choices > 1) {
	$tc = $in->ask_from_listf(N("Multi-head configuration"),
				  N("Your system supports multiple head configuration.
What do you want to do?"), sub { $_[0]{text} }, \@choices) or return;
    }
    $tc->{code} or die internal_error();
    return $tc->{code}();
}

sub configure_auto_install {
    my ($raw_X, $do_pkgs, $old_X, $options) = @_;

    my $card = $old_X->{card} || {};

    if ($card->{card_name}) {
	#- try to get info from given card_name
	add_to_card__using_Cards($card, $card->{card_name});
	if (!$card->{Driver}) {
	    log::l("bad card_name $card->{card_name}, using probe");
	    undef $card->{card_name};
	}
    }

    my ($boot_xdriver) = cat_("/proc/cmdline") =~ /.*\bxdriver=(\S+)/;

    $options->{freedriver} = 1 if $boot_xdriver eq 'free';

    if (!$card->{Driver} && $boot_xdriver && !member($boot_xdriver, 'auto', 'free')) {
	log::explanations("using driver $boot_xdriver from kernel command line");
	$card = {
	    Driver => $boot_xdriver,
	    description => "Set by boot parameter",
	    VendorName => "Custom",
	    BoardName => "Set by boot parameter",
	};
	if ($boot_xdriver =~ /^(nvidia.|fglrx)/) {
	    $card->{Driver} = "vesa";
	    $card->{Driver2} = $boot_xdriver;
	}
    }

    if (!$card->{Driver}) {
	my @cards = probe();
	my ($choice) = multi_head_choices($old_X->{Xinerama}, @cards);
	$card = $choice ? $choice->{code}() : do {
	    log::explanations('no graphic card probed, try providing one using $o->{card}{Driver} or $o->{card}{card_name}. Defaulting...');
	    { Driver => $options->{allowFB} ? 'fbdev' : 'vesa' };
	};
    }

    install_server($card, $options, $do_pkgs, undef) or return;
    $card = configure_Driver2($card, undef);

    Xconfig::various::various_auto_install($raw_X, $card, $old_X);
    set_glx_restrictions($card);

    if ($card->{needVideoRam} && !$card->{VideoRam}) {
	$card->{VideoRam} = $options->{VideoRam_probed} || 4096;
	log::explanations("argh, I need to know VideoRam! Taking " . ($options->{probed_VideoRam} ? "the probed" : "a default") . " value: VideoRam = $card->{VideoRam}");
    }
    to_raw_X($card, $raw_X);
    $card;
}

sub configure {
    my ($in, $raw_X, $do_pkgs, $auto, $options) = @_;

    my @cards = probe();
    @cards or @cards = {};

    if (!$cards[0]{Driver}) {
	if ($options->{allowFB}) {
	    $cards[0]{Driver} = 'fbdev';
	}
    }
    if (!$auto || !$cards[0]{Driver}) {
      card_config__not_listed:
	card_config__not_listed($in, $cards[0], $options) or return;
    }

    my $card = multi_head_choose($in, $auto, @cards) or return;

    install_server($card, $options, $do_pkgs, $in) or goto card_config__not_listed;

    $card = configure_Driver2($card, $in);

    Xconfig::various::various($in, $raw_X, $card, $options, $auto);
    set_glx_restrictions($card);

    if ($card->{needVideoRam} && !$card->{VideoRam}) {
	$card->{VideoRam} = (find { $_ <= $options->{VideoRam_probed} } reverse ikeys %VideoRams) || 4096;
	$in->ask_from('', N("Select the memory size of your graphics card"),
		      [ { val => \$card->{VideoRam},
			  type => 'list',
			  list => [ ikeys %VideoRams ],
			  format => sub { translate($VideoRams{$_[0]}) },
			  not_edit => 0 } ]) or return;
    }

    to_raw_X($card, $raw_X);
    $card;
}

sub install_server {
    my ($card, $options, $do_pkgs, $o_in) = @_;

    my @packages;
    my @must_have = "x11-driver-video-$card->{Driver}";

    if ($options->{freedriver}) {
	delete $card->{Driver2};
    }

    if ($card->{Driver2}) {       
	require Xconfig::proprietary;
	Xconfig::proprietary::handle_DRIVER2_NO_SSE($card);
	my @pkgs = Xconfig::proprietary::pkgs_for_Driver2($card->{Driver2}, $do_pkgs);
	if (@pkgs && (!$o_in || $o_in->ask_yesorno('', formatAlaTeX(N("There is a proprietary driver available for your video card which may support additional features.
Do you wish to use it?")), 1))) {
	    push @packages, @pkgs;
	} else {
	    delete $card->{Driver2};
	}
    }

    $do_pkgs->ensure_are_installed([ @must_have, @packages ], 1) or
      @must_have == listlength($do_pkgs->are_installed(@must_have))
	or return;

    if ($card->{need_MATROX_HAL}) {
	require Xconfig::proprietary;
	Xconfig::proprietary::install_matrox_hal($::prefix);
    }
    1;
}

sub configure_Driver2 {
    my ($card, $o_in) = @_;

    if ($card->{Driver2}) {
        require Xconfig::proprietary;
        if (my $card2 = Xconfig::proprietary::may_use_Driver2($card)) {
	    $card = $card2;
	} else {
	    $o_in and $o_in->ask_warn('', formatAlaTeX(N("The proprietary driver was not properly installed, defaulting to free software driver.")));
	    log::l("defaulting to free software driver");
	}	
    }

    libgl_config_and_more($card);
    $card;
}

#- configures which libGL.so.1 to use, using update-alternatives
#- it also configures nvidia_drv.so (using a slave alternative, cf "update-alternatives --display gl_conf")
sub libgl_config_and_more {
    my ($card) = @_;

    if ($card->{Driver} eq 'nvidia') {
	$card->{DriverVersion} or internal_error("DriverVersion should be set for driver nvidia!");
    }

    #- ensure old deprecated conf files are not there anymore
    unlink("/etc/ld.so.conf.d/$_.conf") foreach 'nvidia', 'nvidia_legacy', 'ati';

    my %files = (
        fglrx => "/etc/ld.so.conf.d/GL/ati$card->{DriverVersion}.conf",
        nvidia => "/etc/nvidia$card->{DriverVersion}/ld.so.conf",
        psb => "/etc/ld.so.conf.d/GL/libdrm-psb.conf",
    );
    my $wanted = $files{$card->{Driver}} || '/etc/ld.so.conf.d/GL/standard.conf';
    my $link = "$::prefix/etc/alternatives/gl_conf";
    my $need_run_ldconfig = readlink($link) ne $wanted;
    -e "$::prefix$wanted" or log::l("ERROR: $wanted does not exist, linking $link to it anyway");
    common::symlinkf_update_alternatives('gl_conf', $wanted);
    if ($need_run_ldconfig && $::isStandalone) {
	    log::explanations("ldconfig will be run because the GL library was $wanted");
	    system("/sbin/ldconfig");
    }

    if (member($card->{Driver}, 'fglrx', 'nvidia')) {
	log::l("workaround buggy fglrx/nvidia driver: make dm restart xserver (#29550, #38297)");
        eval { common::update_gnomekderc_no_create("$::prefix/etc/kde/kdm/kdmrc", 'X-:0-Core' => (
            TerminateServer => "true",
        )) };
        eval { update_gnomekderc("$::prefix/etc/X11/gdm/custom.conf", daemon => (
            AlwaysRestartServer => "true",
        )) };
    }
}

sub multi_head_choices {
    my ($want_Xinerama, @cards) = @_;
    my @choices;

    my $has_multi_head = @cards > 1 || @cards && $cards[0]{MULTI_HEAD} > 1;
    my $disable_multi_head = any { 
	$_->{Driver} or log::explanations("found card $_->{description} not supported by XF4, disabling multi-head support");
	!$_->{Driver};
    } @cards;

    if ($has_multi_head && !$disable_multi_head) {
	my $configure_multi_head = sub {

	    #- special case for multi head card using only one BusID.
	    @cards = map {
		map_index { { Screen => $::i, %$_ } } ($_) x ($_->{MULTI_HEAD} || 1);
	    } @cards;

	    my $card = shift @cards; #- assume good default.
	    $card->{cards} = \@cards;
	    $card->{Xinerama} = $_[0];
	    $card;
	};
	my $independent = { text => N("Configure all heads independently"), code => sub { $configure_multi_head->('') } };
	my $xinerama    = { text => N("Use Xinerama extension"),            code => sub { $configure_multi_head->(1) } };
	push @choices, $want_Xinerama ? ($xinerama, $independent) : ($independent, $xinerama);
    }

    foreach my $c (@cards) {
	push @choices, { text => N("Configure only card \"%s\"%s", $c->{description}, $c->{BusID} && " ($c->{BusID})"),
			 code => sub { $c } };
    }
    @choices;
}

sub set_glx_restrictions {
    my ($card) = @_;

    #- 3D acceleration configuration for XFree 4 using DRI, this is enabled by default
    #- but for some there is a need to specify VideoRam (else it will not run).
    if ($card->{use_DRI_GLX}) {
	$card->{needVideoRam} = 1 if $card->{description} =~ /Matrox.* G[245][05]0/;
	($card->{needVideoRam}, $card->{VideoRam}) = (1, 16384)
	  if $card->{card_name} eq 'Intel 810 / 815';

	#- hack for ATI Rage 128 card using a bttv or peripheral with PCI bus mastering exchange
	#- AND using DRI at the same time.
	if ($card->{card_name} eq 'ATI Rage 128 TV-out') {
	    $card->{Options}{UseCCEFor2D} = bool2text(detect_devices::probe_category('multimedia/tv'));
	}
    }
}

sub add_to_card__using_Cards {
    my ($card, $name) = @_;
    my $cards = readCardsDB("$ENV{SHARE_PATH}/ldetect-lst/Cards+");
    add2hash($card, $cards->{$name});
    $card->{BoardName} = $card->{card_name};

    $card;
}

#- needed for bad cards not restoring cleanly framebuffer, according to which version of Xorg are used.
sub check_bad_card {
    my ($card) = @_;
    my $bad_card = $card->{BAD_FB_RESTORE};
    $bad_card ||= $card->{Driver} eq 'intel' || $card->{Driver} eq 'fbdev';
    $bad_card ||= member($card->{Driver}, 'nvidia', 'vmware') if !$::isStandalone; #- avoid testing during install at any price.

    log::explanations("the graphics card does not like X in framebuffer") if $bad_card;

    !$bad_card;
}

sub readCardsDB {
    my ($file) = @_;
    my ($card, %cards);

    my $F = openFileMaybeCompressed($file);

    my $lineno = 0;
    my ($cmd, $val);
    my $fs = {
	NAME => sub {
	    $cards{$card->{card_name}} = $card if $card;
	    $card = { card_name => $val };
	},
	SEE => sub {
	    my $c = $cards{$val} or die "Error in database, invalid reference $val at line $lineno";
	    add2hash($card, $c);
	},
        LINE => sub { $val =~ s/^\s*//; $card->{raw_LINES} .= "$val\n" },
	CHIPSET => sub { $card->{Chipset} = $val },
	DRIVER => sub { $card->{Driver} = $val },
	DRIVER2 => sub { $card->{Driver2} = $val },
	DRIVER2_NO_SSE => sub { $card->{DRIVER2_NO_SSE} = $val },
	NEEDVIDEORAM => sub { $card->{needVideoRam} = 1 },
	DRI_GLX => sub { $card->{DRI_GLX} = 1 if $card->{Driver} },
	DRI_GLX_EXPERIMENTAL => sub { $card->{DRI_GLX_EXPERIMENTAL} = 1 if $card->{Driver} },
	MULTI_HEAD => sub { $card->{MULTI_HEAD} = $val if $card->{Driver} },
	BAD_FB_RESTORE => sub { $card->{BAD_FB_RESTORE} = 1 },
	FB_TVOUT => sub { $card->{FB_TVOUT} = 1 },
	UNSUPPORTED => sub { delete $card->{Driver} },
	COMMENT => sub {},
    };

    local $_;
    while (<$F>) { $lineno++;
	s/\s+$//;
	/^#/ and next;
	/^$/ and next;
	/^END/ and do { $cards{$card->{card_name}} = $card if $card; last };

	($cmd, $val) = /(\S+)\s*(.*)/ or next;

	my $f = $fs->{$cmd};

	$f ? $f->() : log::l("unknown line $lineno ($_)");
    }
    \%cards;
}

1;

wpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid "Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid "Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr ""
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -9370,67 +9370,67 @@ msgid ""
"You may also enter the IP address of the gateway if you have one."
msgstr ""
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr ""
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr ""
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr ""
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr ""
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, c-format
msgid "Search domain"
msgstr ""
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr ""
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -9439,74 +9439,74 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr ""
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, c-format
msgid "Do you want to allow users to start the connection?"
msgstr ""
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, c-format
msgid "Automatically at boot"
msgstr ""
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, c-format
msgid "How do you want to dial this connection?"
msgstr ""
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr ""
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr ""
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -9514,40 +9514,40 @@ msgid ""
""
msgstr ""
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid "After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."
msgstr ""
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, 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 ""
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, c-format
msgid "(detected on port %s)"
msgstr ""
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr ""
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr ""
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr ""
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already configured.\n"
@@ -9555,12 +9555,12 @@ msgid ""
""
msgstr ""
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr ""
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -9568,7 +9568,7 @@ msgid ""
"%s"
msgstr ""
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -9577,12 +9577,12 @@ msgid ""
"Press \"%s\" to continue."
msgstr ""
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr ""
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -9591,44 +9591,59 @@ msgid ""
""
msgstr ""
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr ""
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
"%s"
msgstr ""
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr ""
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid "Here you can set up your proxies configuration (eg: http://my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr ""
-#: network/network.pm:413
+#: network/network.pm:414
#, c-format
-msgid "FTP proxy"
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
msgstr ""
#: network/network.pm:416
#, c-format
+msgid "FTP proxy"
+msgstr ""
+
+#: network/network.pm:420
+#, c-format
msgid "Proxy should be http://..."
msgstr ""
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr ""
@@ -9645,12 +9660,12 @@ msgid ""
""
msgstr ""
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution problem.\n"
@@ -9658,54 +9673,54 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, c-format
msgid "Could not install the packages (%s)!"
msgstr ""
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid "These packages can be found in Mandriva Club or in Mandriva commercial releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr ""
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr ""
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid "Insert a FAT formatted floppy in drive %s with %s in root directory and press %s"
msgstr ""
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr ""
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -9713,37 +9728,37 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr ""
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr ""
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/thirdparty.pm:422 standalone/drakautoinst:250 standalone/drakvpn:888 standalone/scannerdrake:405
+#: network/thirdparty.pm:424 standalone/drakautoinst:250 standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr ""
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, c-format
msgid "Please wait, running device configuration commands..."
msgstr ""
@@ -9828,7 +9843,7 @@ msgstr ""
msgid "maybe"
msgstr ""
-#: pkgs.pm:473
+#: pkgs.pm:474
#, c-format
msgid "Downloading file %s..."
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 68516c0ab..c07bc3eba 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -76,7 +76,7 @@ msgstr ""
"verwyder die skryf-beskerming, prop dit weer in, en loods\n"
"dan weer Mandriva Move."
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "Herlaai"
@@ -179,14 +179,14 @@ msgstr "Net 'n oomblik, spoor en konfigureer us toestelle"
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -487,7 +487,7 @@ msgid "Custom"
msgstr "Aangepaste"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -666,7 +666,7 @@ msgstr "OK"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -834,7 +834,7 @@ msgid ""
"other"
msgstr ""
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1346,7 +1346,7 @@ msgstr "Gebruik Unicode by verstek"
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
@@ -1378,7 +1378,7 @@ msgid "Input method:"
msgstr "Netwerkmetode:"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2898,7 +2898,7 @@ msgstr "Grootte: %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "Info:"
@@ -2940,7 +2940,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "Die enkripsie-sleutels stem nie ooreen nie."
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -3020,7 +3020,7 @@ msgstr "Installeer pakket %s"
msgid "Mandatory package %s is missing"
msgstr "Verpligte pakket %s ontbreek"
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3434,7 +3434,7 @@ msgid "AGP controllers"
msgstr "USB beheerders"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "Drukker"
@@ -3501,7 +3501,7 @@ msgid "Bridges and system controllers"
msgstr "Brûe en stelselbeheerders"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3512,7 +3512,7 @@ msgstr "Sleutelbord"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "Muis"
@@ -3940,7 +3940,7 @@ msgstr "Gebruiker"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -4343,7 +4343,7 @@ msgstr ""
"Internetkonneksie daarvoor benodig. Kies 'n bediener naby u. Hierdie opsie\n"
"laat u toe om hierdie rekenaar self as 'n tyd-bediener te gebruik."
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
@@ -4769,17 +4769,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Skep outo-installasieskyf"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr "Herspeel"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "Outomaties"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5602,8 +5602,8 @@ msgstr ""
"rekenaar,\n"
"kan u op die knoppie klik, om 'n ander drywer te kies."
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "Klankkaart"
@@ -5729,13 +5729,13 @@ msgstr ""
" * \"%s\": hier kan u fyner verstellings maak op die dienste wat sal afskop\n"
"Ondersoek dit gerus indien u die rekenaar as bediener gaan gebruik."
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "TV-kaart"
@@ -5750,33 +5750,33 @@ msgstr "ISDN-kaart"
msgid "Graphical Interface"
msgstr "Grafiese koppelvlak"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "Netwerk"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, c-format
msgid "Proxies"
msgstr "Instaan bedieners"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "Sekuriteitsvlak"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "Vuurmuur"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "Herlaaistelsel"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -6614,7 +6614,7 @@ msgstr "Belangrikheid: "
msgid "You can not select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr "deur %s wat soek is"
@@ -6766,13 +6766,13 @@ msgstr "Daar was 'n fout met die installasie van die pakkette:"
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "Opsomming"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "nie gekonfigureer nie"
@@ -6963,7 +6963,7 @@ msgstr "Soek vir beskikbare pakkette en herbou die rpm-databasis"
msgid "Looking for available packages..."
msgstr "Soek vir beskikbare pakkette"
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
@@ -7075,12 +7075,12 @@ msgstr "Post-installasiekonfigurasie"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr ""
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -7100,144 +7100,144 @@ msgstr ""
"\n"
"Wil u dit nou installeer?"
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr "Kontak Mandriva Linux se webwerf vir 'n lys van spieëlwebplekke...."
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieël word gekontak vir die lys van pakkette..."
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Kon nie die spieëlwebplek %s kontak nie"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "Wil u weer probeer?"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Outo-tydsinkronisasie met NTP"
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "NTP-bediener"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "Stelsel"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "Hardeware"
#
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "Eksterne CUPS-bediener"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "Geen drukker"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor 'n ISA klankkaart?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "Loop \"sndconfig\" na die installasie om u klankkaart te konfigureer"
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Geen klankkaart opgespoor nie. Probeer \"harddrake\" na die installasie"
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "Grafiese-koppelvlak"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "Netwerk & Internet"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, c-format
msgid "configured"
msgstr "gekonfigureer"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Sekuriteit"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "ge-aktiveer"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "ge-deaktiveer"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "Selflaai"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s op %s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Dienste: %d ge-aktiveer vir %d geregistreer"
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "U het nog nie 'X' opgestel nie. Verlang u dit regtig?"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei..."
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, fuzzy, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -7250,12 +7250,12 @@ msgstr ""
"Ons sal voortgaan met die installasie, maar u sal\n"
"BootX of 'n ander manier moet gedruik om u rekenaar te selflaai"
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -7264,7 +7264,7 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -7273,22 +7273,22 @@ msgstr ""
"Met hierdie sekuriteitsvlak word toegang na lêers op die Windows partisie "
"vernou na slegs die administrateur"
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, fuzzy, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Plaas die herlaaiskyf wat gebruik is, in aandrywer %s"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -7299,19 +7299,19 @@ msgstr ""
"\n"
"Wil u werklik nou eindig?"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "Geluk"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -10113,7 +10113,7 @@ msgstr ""
msgid "unknown"
msgstr "Onbekend"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Alcatel speedtouch USB-modem"
@@ -10364,7 +10364,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr ""
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, c-format
msgid "Select the network interface to configure:"
msgstr "Kies die netwerkkoppelvlak om op te stel:"
@@ -10524,7 +10524,7 @@ msgid "IP parameters"
msgstr "IP-Parameters"
#
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -10628,17 +10628,17 @@ msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
#
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr "Zeroconf rekenaarnaam resolusie"
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "Konfigureer netwerktoestel %s (drywer %s)"
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
@@ -10647,7 +10647,7 @@ msgstr ""
"Die volgende protokolle kan gebruik word vir 'n LAN konneksie. Kies "
"asseblief die een om te gebruik"
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -10659,200 +10659,200 @@ msgstr ""
"(1.2.3.4) gegee word."
#
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Ken rekenaarnaam vanaf DHCP-adres toe."
#
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "DHCP-rekenaarnaam"
#
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Netmasker"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr "Warm-inprop Netwerk"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "Begin tydens herlaaityd"
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "beperk"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "DHCP-kliënt"
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "Die DNS-bediener se IP"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "Deurgang IP-adres moet in 1.2.3.4. formaat wees"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "Pasop: IP-adres %s is alreeds gebruik !"
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr "%s is alreeds in gebruik\n"
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Kies 'n eiemagtige drywer"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "Installeer stelsel"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "Voorsien asseblief die inligting vir hierdie draadlose kaart:"
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, c-format
msgid "Operating Mode"
msgstr "Bedryfsvlak"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr "Ad-hoc"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr "Beheerde"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "Meester"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "Repeater"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "Sekondêre"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "Outo"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "Netwerknaam (ESSID)"
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "Netwerk-ID"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "Bedryfsfrekwensie"
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr "Sensitiwiteits behoud"
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr "Bitrate (in b/s)"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -10872,17 +10872,17 @@ msgstr ""
"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."
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr "Fragmentasie"
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr "iwconfig program se ekstra argumente"
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -10897,12 +10897,12 @@ msgstr ""
"Raadpleeg die iwconfig(8) man vir ekstra inligting."
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr "iwspy program se ekstra argumente"
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -10921,12 +10921,12 @@ msgstr ""
"\n"
"Raadpleeg die iwpspy(8) vir verdere inligting."
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr "iwpriv program se ekstra argumente"
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -10954,7 +10954,7 @@ msgstr ""
"\n"
"Raadpleeg die iwpriv(8) vir verdere inligting."
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
@@ -10963,7 +10963,7 @@ 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."
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
@@ -10972,37 +10972,37 @@ msgstr ""
"Tempo moet agtervoegsels van k,M, of G kry (byvoorbeeld \"11M\" vir 11M) of "
"voeg genoeg 0'e (zero'z) by."
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr "Pid"
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -11015,72 +11015,72 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, 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."
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr "Rekenaarnaam (opsioneel)"
#
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Rekenaarnaam"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr "DNS-bediener 1"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr "DNS-bediener 2"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr "DNS-bediener 3"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, c-format
msgid "Search domain"
msgstr "Deursoek domein"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, 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"
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Deurgangspoort (bv. %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "Deurgangtoestel"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, 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"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Deurgang IP-adres moet in 1.2.3.4. formaat wees"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -11090,67 +11090,67 @@ msgid ""
msgstr ""
#
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr "Zeroconf Rekenaarnaam"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "'Zeroconf'-naam mag nie 'n '.' bevat nie"
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "Begin tydens herlaaityd"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Die stelsel is nou aan die internet gekonnekteer."
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Vir sekuriteitsreDES, word u nou gediskonnekteer."
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -11159,7 +11159,7 @@ msgstr ""
"Dit blyk dat u rekenaar geen toegang tot die Internet het nie.\n"
"Probeer weer u konneksie konfigureer."
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -11168,7 +11168,7 @@ msgstr ""
"Daarsy dude / duDES, die netwerk en Internetkonfigurasie is voltooi.\n"
"\n"
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -11177,7 +11177,7 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wees om u X-omgewing te herlaai om die "
"rekenaarnaamverandering-probleem te voorkom."
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -11188,28 +11188,28 @@ msgstr ""
"Toets u konneksie deur 'net_monitor' of 'mcc'. Indien u steeds probleme "
"ondervind, konfigureer weer van voor af."
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, c-format
msgid "(detected on port %s)"
msgstr "(op poort %s bespeur)"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr "(%s bespeur)"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr "(bespeur)"
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -11222,12 +11222,12 @@ msgstr ""
"Internet\n"
"& Netwerkkonneksie te herkonfigureer.\n"
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, 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?"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -11238,7 +11238,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -11251,12 +11251,12 @@ msgstr ""
"\n"
"Druk \"%s\" om voort te gaan."
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "Konfigurasie is voltooi, wil u hierdie verstellings toepas?"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -11267,12 +11267,12 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -11281,34 +11281,49 @@ msgstr ""
"'n Onvoorsiene fout het gebeur:\n"
"%s"
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "Instaanbediener-konfigurasie"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "FTP-instaanbediener"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://..."
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL moet begin met 'ftp' of 'http':"
@@ -11330,7 +11345,7 @@ msgstr ""
"\t\teth0, or eth1 vir kabel konneksies, \n"
"\t\tippp+ vir 'n isdn konneksie.\n"
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, fuzzy, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
@@ -11338,7 +11353,7 @@ msgstr ""
"Laai dit af by:\n"
"%s en kopieer die mgmt.o na '/usr/share/speedtouch'"
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -11349,46 +11364,46 @@ 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."
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "Installeer pakket %s"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "Verwyder lettertipes vanaf u rekenaar"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "Plaas skyf in aandrywer"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -11397,12 +11412,12 @@ msgstr ""
"Plaas 'n FAT-geformatteerde skyf in aandrywer %s met %s in die 'root' "
"lêergids en druk %s"
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Disket-toegangsfout, kan nie toestel %s heg nie"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -11413,38 +11428,38 @@ msgstr ""
"U kan dit deur 'n disket voorsien, of deur u Windows partisie,\n"
"of dit oorslaan en later doen."
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr "Gebruik 'n disket"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr "Gebruik my Windows-partisie"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr "Probleme met die kopieer van Fermware (Firmware), lêer %s is soek"
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "Geluk!"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr "Kopieer van Fermware was suksesvol"
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr "Net 'n oomblik, spoor en konfigureer us toestelle"
@@ -11538,7 +11553,7 @@ msgstr "oulik"
msgid "maybe"
msgstr "moontlik"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, fuzzy, c-format
msgid "Downloading file %s..."
msgstr "Stuur lêers..."
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index e658c7eb5..cbfc232a1 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\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"
@@ -61,7 +61,7 @@ msgid ""
"plug the key again, and launch Mandriva Move again."
msgstr ""
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "እንደገና ጀምር"
@@ -143,14 +143,14 @@ msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግ
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -426,7 +426,7 @@ msgid "Custom"
msgstr "ምርጫ"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -593,7 +593,7 @@ msgstr "እሺ"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -747,7 +747,7 @@ msgid ""
"other"
msgstr ""
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1242,7 +1242,7 @@ msgstr "ዩኒኮድን በቀዳሚነት ተጠቀም"
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
@@ -1274,7 +1274,7 @@ msgid "Input method:"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2726,7 +2726,7 @@ msgstr "መጠን፦ %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ""
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "መረጃ: "
@@ -2766,7 +2766,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr ""
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -2844,7 +2844,7 @@ msgstr "ምርጫዎችን ማስቀመጥ አልተቻለም"
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3231,7 +3231,7 @@ msgid "AGP controllers"
msgstr "የAGP ተቆጣጣሪዎች"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "ማተሚያ"
@@ -3298,7 +3298,7 @@ msgid "Bridges and system controllers"
msgstr "ድልድዮች እና ሲስተም ተቆጣጣሪዎች"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3309,7 +3309,7 @@ msgstr "መተየቢያ"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "መጠቆሚያ"
@@ -3628,7 +3628,7 @@ msgstr "የተጠቃሚ ስም"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -3900,7 +3900,7 @@ msgid ""
"server which can be used by other machines on your local network as well."
msgstr ""
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
@@ -4163,17 +4163,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr ""
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr ""
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr ""
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "የጥቅሎችን ምርጫ አስቀምጥ"
@@ -4676,8 +4676,8 @@ msgid ""
"system, you can click on the button and choose a different driver."
msgstr ""
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "የድምፅ ካርድ"
@@ -4753,13 +4753,13 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "የሰአት ክልል"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "የቲቪ ካርድ"
@@ -4774,33 +4774,33 @@ msgstr "የISDN ካርድ"
msgid "Graphical Interface"
msgstr "ንድፋዊ እይታ"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "መረብ"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, c-format
msgid "Proxies"
msgstr "ወኪሎች"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "የደህንነት ደረጃ"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "የእሳት ግድግዳ"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "አስጀማሪያ"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -5527,7 +5527,7 @@ msgstr "አስፈላጊነት: "
msgid "You can not select/unselect this package"
msgstr "ይህን ጥቅል መምረጥ/አለመምረጥ አይችሉም"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr "%s ባለመገኘቱ ምክንያት"
@@ -5667,13 +5667,13 @@ msgstr ""
msgid "Go on anyway?"
msgstr "ለማንኛውም ቀጥል?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "ማጠቃለያ"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "አልተስተካከለም"
@@ -5856,7 +5856,7 @@ msgstr ""
msgid "Looking for available packages..."
msgstr ""
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
@@ -5958,12 +5958,12 @@ msgstr "Post-install configuration"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr "አሻሻዎች"
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5976,142 +5976,142 @@ msgid ""
"Do you want to install the updates?"
msgstr ""
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr ""
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "ከአንጸባራቂ %s ጋር መገናኘት አልተቻለም"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "እንደገና መሞከር ይፈልጋል?"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "የሰአት ክልሎት የትኛው ነው?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "NTP ሰርቨር"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "ሲስተም"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "ሀርድዌር"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "በርቀት ያለ የCUPS ሰርቨር"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "ማተሚያ የለም"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "የISA ድምጽ ካርድ አለዎት?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "ንድፋዊ እይታ"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "መረብ እና ኢንተርኔት"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, c-format
msgid "configured"
msgstr "ተስተካክሏል"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "ደህንነት"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "መስራት ጀምሯል"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "መስራት አቁሟል"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "ጀምር"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s %s ላይ ነው"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr ""
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "አስጀማሪ በማዘጋጀት ላይ..."
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -6120,41 +6120,41 @@ msgid ""
"root fs is: root=%s"
msgstr ""
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, fuzzy, c-format
msgid "Do you want to use aboot?"
msgstr "ስራ-እቅዱን መሠረዝ ይፈልጋሉ?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr ""
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr ""
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -6162,19 +6162,19 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "እንኳን ደስ ያለዎ!"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr ""
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -8922,7 +8922,7 @@ msgstr ""
msgid "unknown"
msgstr "ያልታወቀ"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Alcatel speedtouch USB ሞዴም"
@@ -9172,7 +9172,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr ""
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, c-format
msgid "Select the network interface to configure:"
msgstr "ለማስተካከል የመረብ እይታ ይምረጡ:"
@@ -9322,7 +9322,7 @@ msgstr ""
msgid "IP parameters"
msgstr "IP መለኪያዎች"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -9424,24 +9424,24 @@ msgstr ""
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr ""
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr ""
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -9449,198 +9449,198 @@ msgid ""
"notation (for example, 1.2.3.4)."
msgstr ""
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr ""
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, fuzzy, c-format
msgid "DHCP host name"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Netmask"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, fuzzy, c-format
msgid "Network Hotplugging"
msgstr "Name=መረብ"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, fuzzy, c-format
msgid "Start at boot"
msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "ሜክሲኮ"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr ""
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, c-format
msgid "DHCP timeout (in seconds)"
msgstr ""
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr ""
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr ""
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr "%s አስቀድሞ ጥቅም ላይ ነው\n"
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "የነሲብ URLን አታስችል"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "ሲስተም ትከል"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "የመሸፈኛ ዘዴ"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr "Ad-hoc"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr ""
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "ገዢ"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "ደጋሚ"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "ሁለተኛ"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "ራስ-ገዝ"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "የመረብ ስም (ESSID)"
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "የመረብ መለያ"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr ""
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, fuzzy, c-format
msgid "Bitrate (in b/s)"
msgstr "በጥቅም ላይ ያለ"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -9654,17 +9654,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr ""
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -9675,12 +9675,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -9692,12 +9692,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -9715,51 +9715,51 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr ""
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -9768,67 +9768,67 @@ msgid ""
"You may also enter the IP address of the gateway if you have one."
msgstr ""
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "የእንግዳ ተቀባይ ስም"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr "DNS ሰርቨር 1"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr "DNS ሰርቨር 2"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr "DNS ሰርቨር 3"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, fuzzy, c-format
msgid "Search domain"
msgstr "የObjectDirectory ዶሜን"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (ለምሳሌ: %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "የGateway መሳሪያ"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -9837,88 +9837,88 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, fuzzy, c-format
msgid "Zeroconf Host name"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "ቍጥር አሰጣጡን እንደገና በ...ላይ ጀምር፦"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "ምርጫውን መሞከር ይፈልጋሉ?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "ግንኙነትዎን በመሞከር ላይ..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "ሲስተሙ አሁን ከኢንተርኔት ጋር ተገናኝቷል።"
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "ለድህንነት ሲባል፣ ግንኙነቱ አሁን ይቋረጣል።"
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -9926,29 +9926,29 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, 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"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, fuzzy, c-format
msgid "(detected %s)"
msgstr "አውቶማቲካሊ ተፈልጎ የተገኘ"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr "(ተገኝቷል)"
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "የመረብ ምርጫ"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -9957,12 +9957,12 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr ""
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -9970,7 +9970,7 @@ msgid ""
"%s"
msgstr ""
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -9979,12 +9979,12 @@ msgid ""
"Press \"%s\" to continue."
msgstr ""
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr ""
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -9992,46 +9992,61 @@ msgid ""
"\n"
msgstr ""
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "የኢንተርኔት ግንኙነት"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
"%s"
msgstr ""
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "የወኪሎች ምርጫ"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "የHTTP ወኪል"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "የFTP ወኪል"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "ወኪል http://... መሆን አለበት"
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL በ'ftp:' ወይም በ'http:' መጀመር አለበት"
@@ -10047,12 +10062,12 @@ msgid ""
"\t\tippp+ for a isdn connection.\n"
msgstr ""
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -10061,58 +10076,58 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "የ%s ጥቅሎችን መትከል አልተቻለም!"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "ከሲስተሜ ውስጥ ፊደላትን አስወግድ"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "ፍሎፒ ያስገቡ"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr ""
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr ""
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -10120,38 +10135,38 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr "ፍሎፒ ተጠቀም"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr "የWindows ክፋዬን ተጠቀም"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, fuzzy, c-format
msgid "Congratulations!"
msgstr "እንኳን ደስ ያለዎ!"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, fuzzy, c-format
msgid "Firmware copy succeeded"
msgstr "መቅጃውን ክፈት"
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግኘት እና በማስተካከል ላይ ነው..."
@@ -10238,7 +10253,7 @@ msgstr "ጥሩ"
msgid "maybe"
msgstr "ምናልባት"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, fuzzy, c-format
msgid "Downloading file %s..."
msgstr "የቅርብ ጊዜ ፋይሎች"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 72b8e852b..733374ea9 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\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"
@@ -79,7 +79,7 @@ msgstr ""
"اضغط الزّر لإعادة تشغيل الجهاز، فُكّ توصيله، أزل حماية الكتابة،\n"
"صِلْ المفتاح مرّة أخرى، وشغّل Mandriva Move مرّة أخرى."
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "إعادة التشغيل"
@@ -181,14 +181,14 @@ msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة ال
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -487,7 +487,7 @@ msgid "Custom"
msgstr "مخصّص"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -665,7 +665,7 @@ msgstr "موافق"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -831,7 +831,7 @@ msgid ""
"other"
msgstr ""
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1348,7 +1348,7 @@ msgstr "استخدام يونيكود افتراضياً"
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
@@ -1380,7 +1380,7 @@ msgid "Input method:"
msgstr "طريقة الإدخال:"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2899,7 +2899,7 @@ msgstr "الحجم: %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة، %s رأس، %s قطاع\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "معلومات: "
@@ -2939,7 +2939,7 @@ msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -3019,7 +3019,7 @@ msgstr "تعذر تثبيت حزمة %s!"
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3431,7 +3431,7 @@ msgid "AGP controllers"
msgstr "متحكمات AGP"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "طابعة"
@@ -3498,7 +3498,7 @@ msgid "Bridges and system controllers"
msgstr "الجسور ومتحكمات النظام"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3509,7 +3509,7 @@ msgstr "لوحة المفاتيح"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "الماوس"
@@ -3920,7 +3920,7 @@ msgstr "اسم المستخدم"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -4343,7 +4343,7 @@ msgstr ""
"الأقرب إليك. في الحقيقة يُثبت هذا الخيار خادم وقت يمكن استخدامه\n"
"من قبل الأجهزة الأخرى على الشبكة المحلية أيضاً."
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
@@ -4782,17 +4782,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "إنشاء قرص تثبيت آلي"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr "إعادة"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "آلي"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "حفظ اختيار الحزم"
@@ -5653,8 +5653,8 @@ msgstr ""
"فعلاً على نظامك، يمكنك الضغط على الزر و اختيار مشغل\n"
"آخر."
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "بطاقة الصوت"
@@ -5797,13 +5797,13 @@ msgstr ""
"على ماكينتك. إن نويت استخدام هذه الماكنية كخادم فإنّها لفكرة جيّدة\n"
"أن تُراجع هذه الخطوة."
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "بطاقة التلفاز"
@@ -5818,33 +5818,33 @@ msgstr "بطاقة ISDN"
msgid "Graphical Interface"
msgstr "الواجهة الرسومية"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "الشبكة"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, c-format
msgid "Proxies"
msgstr "البروكسيات"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "مستوى الأمن"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "جدار ناري"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "محمّل الإقلاع"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -6778,7 +6778,7 @@ msgstr "الأهمية:"
msgid "You can not select/unselect this package"
msgstr "لا يمكنك اختيار/ازالة اختيار هذه الحزمة"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr "بسبب غياب %s"
@@ -6924,13 +6924,13 @@ msgstr "كان هناك خطأ في تثبيت الحزم:"
msgid "Go on anyway?"
msgstr "هل تريد المتابعة على أي حال؟"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "ملخص"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "غير مهيّأ"
@@ -7124,7 +7124,7 @@ msgstr "البحث عن الحزم المتوفرة وإعادة بناء قاع
msgid "Looking for available packages..."
msgstr "العثور على الحزم المتوفرة..."
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "اختيار مرآة سيتم من خلالها تنزيل الحزم"
@@ -7235,12 +7235,12 @@ msgstr "تهيئة ما بعد التثبيت"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr "التحديثات"
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -7261,74 +7261,74 @@ msgstr ""
"\n"
"هل تريد تنزيل هذه التحديثات ؟"
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr ""
"جاري الإتصال بموقع ماندريبا لينكس للحصول على قائمة بالمرايا المتوفرة..."
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "جاري الإتصال بالمرآة للحصول على قائمة بالحزم المتوفرة..."
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "تعذر الإتصال بالمرآة %s"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "هل تريد المحاولة مرةً أخرى؟"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "النظام"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "العتاد"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "خادم CUPS بعيد"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "لا طابعة"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "هل لديك بطاقة صوت ISA؟"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -7336,69 +7336,69 @@ msgid ""
msgstr ""
"شغّل \"alsaconf\" أو \"sndconfig\" بعد التّثبيت لتهيئة بطاقة الصّوت الخاصّة بك"
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "لم يعثر على بطاقة الصوت. حاول تشغيل \"harddrake\" بعد التثبيت"
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "الواجهة الرسومية"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "الشبكة والإنترنت"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, c-format
msgid "configured"
msgstr "مُهيّء"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "الأمن"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "مُنشّط"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "مُعطّل"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "الإقلاع"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s على %s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "الخدمات: %d منشّطة لـ %d مسجلة"
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "لم تقم بتهيئة خادم X. هل أنت متأكد أنك تريد ذلك؟"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "جاري تحضير محمّل الإقلاع..."
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -7410,12 +7410,12 @@ msgstr ""
"مع نظامك. ستكمل عملية التثبيت، ولكنك بحاجة إلى استخدام BootX أو طريقة ما "
"أخرى لإقلاع نظامك. مُعطى النواة لنظام الملفات الجذر هو: root=%s"
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "هل تريد استخدام aboot؟"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -7424,7 +7424,7 @@ msgstr ""
"خطأ أثناء تثبيت aboot، \n"
"حاول الإجبار على التثبيت حتى و لو أدي ذلك لتدمير التجزيء الأول؟"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -7433,22 +7433,22 @@ msgstr ""
"في هذا المستوى الأمني، الوصول إلى الملفّات بتجزيء ويندوز سيكون مقصوراً على "
"المدير."
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "أدخل قرص مرن فارغ في السواقة %s"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "الرجاء إدخال قرص مرن آخر لقرص المشغّلات"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "جاري إنشاء قرص التثبيت الآلي..."
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -7459,19 +7459,19 @@ msgstr ""
"\n"
"هل تريد الخروج الآن فعلاً؟"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "تهانينا"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr "إنشاء قرص تثبيت آلي"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -10277,7 +10277,7 @@ msgstr ""
msgid "unknown"
msgstr "مجهول"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "مودم Alcatel speedtouch USB"
@@ -10527,7 +10527,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr "استخدام BPALogin )مطلوبة لـTelstra)"
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, c-format
msgid "Select the network interface to configure:"
msgstr "اختيار واجهة الشبكة لتهيئتها:"
@@ -10689,7 +10689,7 @@ msgstr "الاتصال الهاتفي: مُعطيات IP"
msgid "IP parameters"
msgstr "مُعطيات IP"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -10791,17 +10791,17 @@ msgstr "تحميل المُشغّل يدوياً"
msgid "Use a Windows driver (with ndiswrapper)"
msgstr "استخدام مشغّل ويندوز (مع ndiswrapper("
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr "ترجمة اسم مضيف Zeroconf"
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "جاري تهيئة جهاز الشبكة %s (مشغّل %s)"
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
@@ -10810,7 +10810,7 @@ msgstr ""
"البروتوكولات التّالية يمكن استخدامها لتهيئة اتصال LAN. الرجاء اختيار "
"البروتوكول الذي تريد استخدامه"
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -10821,198 +10821,198 @@ msgstr ""
"كل مادة يجب إدخالها كعنوان IP بشكل منقوط\n"
"(مثلاً، 1.2.3.4(."
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "تعيين اسم المضيف من عنوان DHCP"
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "اسم مضيف DHCP"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "قناع الشبكة"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "تتبع هوية بطاقة الشبكة (مفيد للحاسبات الدفترية)"
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr "القبْس السريع للشبكة"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "البدء عند الإقلاع"
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, c-format
msgid "Metric"
msgstr "متري"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "عميل DHCP"
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "عنوان IP لخادم DNS"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "عنوان IP يجب أن يكون بنسق 1.2.3.4"
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "تحذير: عنوان الـ IP %s عادة ما يكون محفوظاً!"
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr "%s قيد الاستخدام مسبقاً\n"
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, c-format
msgid "Choose an ndiswrapper driver"
msgstr "اختيار مشغّل ndiswrapper"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Install a new driver"
msgstr "تثبيت مشغّل جديد"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "الرجاء إدخال مُعطيات اللاسلكيّة لهذه البطاقة:"
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, c-format
msgid "Operating Mode"
msgstr "وضعية التّشغيل"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr "مُصطنع"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr "مُدار"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "رئيسي"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "مُكرّر"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "ثانوي"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "آلي"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "إسم الشّبكة (ESSID)"
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "رقم مُعرّف الشّبكة"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "تردّد التّشغيل"
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr "عتبة الحساسية"
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr "معدّل البث (بِتْ/ث)"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -11032,17 +11032,17 @@ msgstr ""
"حجم رزمة تُعطّل المخطّط. يمكنك أيضاً تحديد هذا المُعطى بتلقائي،\n"
"ثابت أو معطّل."
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr "مستوى التّجزّء"
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr "المُعطيات الإضافية لأمر iwconfig"
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -11058,12 +11058,12 @@ msgstr ""
"راجع صفحة الدّليل iwconfig(8) للمزيد من المعلومات."
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr "المُعطيات الإضافيّة لأمر iwspy"
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -11082,12 +11082,12 @@ msgstr ""
"\n"
"رجاع صفحة دليل iwpspy)8( للمزيد من المعلومات."
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr "المُعطيات الإضافيّة لأمر iwpriv"
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -11115,7 +11115,7 @@ msgstr ""
"\n"
"راجع صفحة دليل iwpriv(8) للمزيد من المعلومات."
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
@@ -11124,7 +11124,7 @@ msgstr ""
"يجب أن يكون للتردّد اللاحقة k، أو M أو G (مثلاً، \"2.46G\" للتردّد 2.46 GHz(، "
"أو إضافة أصفار كافية."
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
@@ -11133,37 +11133,37 @@ msgstr ""
"يجب أن يكون للمعدّل اللاحقة k، أو M أو G (مثلاً، \"11M\" للمعدّل 11M)، أو إضافة "
"أصفار كافية."
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr "رمز المهمة"
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -11176,67 +11176,67 @@ msgstr ""
"مثل ``mybox.mylab.myco.com''.\n"
"يمكنك أيضاً إدخال عنوان IP الخاص بالبوابة ان وُجدت."
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr "أخيراً وليس آخراً يمكنك أيضاً أن تدخل عناوين IP لخادمات DNS."
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr "اسم المضيف (اختياري)"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "اسم المضيف"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr "خادم DNS 1"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr "خادم DNS 2"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr "خادم DNS 3"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, c-format
msgid "Search domain"
msgstr "نطاق البحث"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr "بشكل افتراضي سيتمّ تحديد نطاق البحث من اسم المضيف المهيّء بالكامل"
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "البوابة (مثلاً %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "جهاز البوابة"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "عنوان خادم DNS يجب أن يكون على النسق 1.2.3.4"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -11249,67 +11249,67 @@ msgstr ""
"بأيّة من خدماته المشتركة و الّتي لا تديرها الشّبكة.\n"
"غير ضروري على معظم الشّبكات."
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr "اسم مضيف Zeroconf"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "يجب أن يحتوي اسم مضيف Zeroconf على . (نقطة("
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "هل تريد بدء الاتصال عند الإقلاع؟"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "هل تريد بدء الاتصال عند الإقلاع؟"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, c-format
msgid "Automatically at boot"
msgstr "آليا عند الإقلاع"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr "باستعمال بريمج الشّبكة (Net Applet( في درج النّظام"
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr "يدويا (ستمكّن الواجهة عند الإقلاع رغم هذا)"
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, c-format
msgid "How do you want to dial this connection?"
msgstr "كيف تريد طلب هذا الاتصال؟"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "هل تريد أن تحاول أن تتصل بالإنترنت الآن؟"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "اختبار الوصلة..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "النظام الآن متصل بالإنترنت"
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "لأسباب أمنية، سيتم قطع الإتصال الآن."
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -11318,7 +11318,7 @@ msgstr ""
"لا يبدو أن النظام متصل بالإنترنت.\n"
"حاول إعادة تهيئة الوصلة."
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -11327,7 +11327,7 @@ msgstr ""
"تهانينا، انتهت تهيئة الشبكة و الإنترنت.\n"
"\n"
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -11335,7 +11335,7 @@ msgid ""
msgstr ""
"بعد عمل ذلك، ننصح بإعادة تشغيل بيئة X لديك لتفادي أي مشاكل تتعلق بإسم المضيف."
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -11346,28 +11346,28 @@ msgstr ""
"اختبر الوصلة باستخدام net_monitor أو mcc. إذا لم تعمل الوصلة، فقد تريد إعادة "
"التهيئة."
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, c-format
msgid "(detected on port %s)"
msgstr "(اكتشاف على المنفذ %s)"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr "(اكتشف %s)"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr "(تم اكتشافه)"
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "تهيئة الشبكة"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -11379,12 +11379,12 @@ msgstr ""
"اضغط موافق لحفظ التهيئة الخاصة بك، أو اضغط إلغاء لإعادة تهيئة وصلات الإنترنت "
"و الشبكة.\n"
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr "يجب إعادة تشغيل الشبكة. هل تريد إعادة تشغيلها؟"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -11395,7 +11395,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -11408,12 +11408,12 @@ msgstr ""
"\n"
"اضغط \"%s\" لتستمرّ."
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "تم الانتهاء من التهيئة، هل تريد تطبيق الإعدادات ؟"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -11424,12 +11424,12 @@ msgstr ""
"اختر الطريقة التي تريد استخدامها.\n"
"\n"
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -11438,34 +11438,49 @@ msgstr ""
"حدث خطأ غير متوقّع:\n"
"%s"
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "تهيئة البروكسي"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "بروكسي HTTP"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "بروكسي FTP"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "البروكسي يجب أن يكون http://..."
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
@@ -11487,7 +11502,7 @@ msgstr ""
"\t\teth0، أو eth1 لوصلات الكيبل، \n"
"\t\tippp+ لوصلات ISDN.\n"
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, fuzzy, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
@@ -11496,7 +11511,7 @@ msgstr ""
"%s\n"
"و انسخ الملف mgmt.o إلى /usr/share/speedtouch"
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -11508,46 +11523,46 @@ msgstr ""
"\n"
"يمكنك العثور على المُشغّلات على الموقع http://eciadsl.flashtux.org/"
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "تعذر تثبيت حزم %s!"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "حذف الخطوط من النظام"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "أدخل قرص مرن"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -11556,12 +11571,12 @@ msgstr ""
"أدخل قرص مرن منسّق على نظام ملفات FAT في السواقة %s مع %s في الدّليل الجذري "
"واضغط %s"
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "خطأ في الوصول إلى القرص المرن، لم يمكن تجهيز الجهاز %s"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -11572,38 +11587,38 @@ msgstr ""
"يمكنك تزويدها الآن عبر قرص مرن أو تجزيء ويندوز،\n"
"أو تخطّى هذا وافعله لاحقاً."
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr "استخدام قرص مرن"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr "جاري تغيير حجم تجزيء ويندوز"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr "فشل نسخ Firmware، لم يُعثر على الملفّ %s"
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "تهانينا!"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr "نجح نسخ Firmware"
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة الأجهزة..."
@@ -11696,7 +11711,7 @@ msgstr "ظريف"
msgid "maybe"
msgstr "ربما"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, fuzzy, c-format
msgid "Downloading file %s..."
msgstr "جاري ارسال الملفات..."
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 395e34b11..d1a2d4785 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\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"
@@ -66,7 +66,7 @@ msgid ""
"plug the key again, and launch Mandriva Move again."
msgstr ""
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "Yenidən başlat"
@@ -150,14 +150,14 @@ msgstr "Xahiş edirik gözləyin, avadanlıqlar tapılır və quraşdırılır..
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -439,7 +439,7 @@ msgid "Custom"
msgstr "Xüsusi"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -615,7 +615,7 @@ msgstr "Oldu"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -783,7 +783,7 @@ msgid ""
"other"
msgstr ""
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1299,7 +1299,7 @@ msgstr "Ön qurğulu olaraq Yunikod işlət"
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
@@ -1331,7 +1331,7 @@ msgid "Input method:"
msgstr "Giriş yöntəmi:"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2850,7 +2850,7 @@ msgstr "Böyüklük: %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "Mə'lumat: "
@@ -2890,7 +2890,7 @@ msgstr "Bu şifrələmə açarı çox sadədir (ən az %d hərf böyüklüyünd
msgid "The encryption keys do not match"
msgstr "Şifrələmə açarları uyğun gəlmir"
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -2970,7 +2970,7 @@ msgstr "Xorg paketi qurula bilmir: %s"
msgid "Mandatory package %s is missing"
msgstr "Vacib olan %s paketi əksikdir"
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3386,7 +3386,7 @@ msgid "AGP controllers"
msgstr "AGP idarəçiləri"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "Çapçı"
@@ -3453,7 +3453,7 @@ msgid "Bridges and system controllers"
msgstr "Körpülər və sistem idarəçiləri"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3464,7 +3464,7 @@ msgstr "Klaviatura"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "Siçan"
@@ -3891,7 +3891,7 @@ msgstr "İstifadəçi adı"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -4325,7 +4325,7 @@ msgstr ""
"Bu seçim əslində yerli şəbəkənizdəki başqa kompüterlərin də istifadə edə\n"
"biləcəyi zaman vericisini qurur."
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
@@ -4779,17 +4779,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Avtomatik qurulum disketi hazırla"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr "Təkrarla"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "Paket seçkilərini qeyd et"
@@ -5625,8 +5625,8 @@ msgstr ""
"Əgər burada göstərilən səs kartının sisteminizdəkindən fərqli olduğu\n"
"nəzərinizə çatsa, düyməyə basıb başqa bir sürücü seçə bilərsiniz."
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "Səs kartı"
@@ -5766,13 +5766,13 @@ msgstr ""
"bilərsiniz.\n"
"Əgər sisteminizi verici olaraq işlətəcəksəniz, bu qurğuları gözdən keçirin."
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "Vaxt Zolağı"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "TV kartı"
@@ -5787,33 +5787,33 @@ msgstr "ISDN kartı"
msgid "Graphical Interface"
msgstr "Qrafiki Ara Üz"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "Şəbəkə"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, c-format
msgid "Proxies"
msgstr "Vəkil vericiləri"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "Təhlükəsizlik Səviyyəsi"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "Atəş Divarı"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "Açılış yükləyicisi"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -6771,7 +6771,7 @@ msgstr "Əhəmiyyət:"
msgid "You can not select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr "%s əksik olduğuna görə"
@@ -6919,13 +6919,13 @@ msgstr "Paketlər qurulurkən bir xəta oldu:"
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "İcmal"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "quraşdırılmayıb"
@@ -7115,7 +7115,7 @@ msgstr ""
msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
@@ -7228,12 +7228,12 @@ msgstr "Qurulum sonrası qurğular"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr "Yeniləmələr"
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -7255,7 +7255,7 @@ msgstr ""
"\n"
"Yeniləmələri qurmaq istəyirsiniz ?"
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
@@ -7263,67 +7263,67 @@ msgstr ""
"Mövcud əkslərin siyahısını almaq üçün Mandriva Linux səhifəsi ilə təmas "
"qurulur..."
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "%s əksi ilə rabitə qurula bilmir"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "Yenidən sınamaq istəyirsiniz?"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Vaxt zolağınız hansıdır?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "NTP Verici"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "Sistem"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "Avadanlıq"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "Çapçı yoxdur"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Heç İSA səs kartınız var?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -7331,69 +7331,69 @@ msgid ""
msgstr ""
"Qurulumdan sonra səs kartınızı qurğulamaq üçün \"sndconfig\" əmrini icra edin"
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Səs kartı tapılmadı. Qurulumdan sonra \"harddrake\"ni işə salın"
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "Qrafiki ara üz"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "Şəbəkə və İnternet"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, c-format
msgid "configured"
msgstr "quraşdırılıb"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Təhlükəsizlik"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "fəal"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "qeyri-fəal"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "Açılış"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%2$s üstündə %1$s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Xidmətlər: %d fəal, %d qeydli"
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Siz X-i quraşdırmadınız. Bundan əminsinizmi?"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, fuzzy, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -7406,12 +7406,12 @@ msgstr ""
"Qurulum davam edəcək ancaq kompüterinizi aça bilmək üçün\n"
" BootX ya da başqa vasitədən istifadə etməlisiniz"
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -7420,29 +7420,29 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, fuzzy, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Xahiş edirik, işlədilən açılış disketini %s sürücüsünə yerləşdirin"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -7453,19 +7453,19 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "Təbriklər"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırla"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -10259,7 +10259,7 @@ msgstr ""
msgid "unknown"
msgstr "na'məlum"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Alcatel speedtouch USB modem"
@@ -10509,7 +10509,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr ""
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, c-format
msgid "Select the network interface to configure:"
msgstr "Quraşdırılacaq şəbəkə ara üzünü seç:"
@@ -10667,7 +10667,7 @@ msgstr "Dialup: IP parametrləri"
msgid "IP parameters"
msgstr "IP parametrləri"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -10769,24 +10769,24 @@ msgstr ""
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr "Zeroconf qovşaq adı həlli"
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "%s şəbəkə avadanlığı qurulur (sürücü %s) "
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -10797,198 +10797,198 @@ msgstr ""
"Hər üzv nöqtəli onluq IP şəklində girilməlidir,\n"
"(misal üçün 1.2.3.4)."
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "DHCP ünvanı üçün qovşaq adı tə'yin edin"
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "DHCP qovşaq adı"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Netmask"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "Şəbəkə kartının id'sini izlə (laptoplar üçün faydalıdır)"
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr "Ani Şəbəkə Fəallaşdırılması (Network Hotplugging)"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "Açılışda başlat"
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "məhdudlaşdır"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "DHCP alıcısı"
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Bağlantı vaxt dolması (saniyə sonra)"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "DNS Verici IP'si"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/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"
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, 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"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "Xəbərdarlıq : %s IP ünvanı çox vaxt tutulmuş olur !"
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr "%s onsuzda istifadədədir\n"
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Səbəbsiz bir sürücü seçilir"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "Sistemin qurulumu"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, c-format
msgid "Operating Mode"
msgstr "İdrə Modu"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr "Ad-hoc"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr "İdarə edilən"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "Əsas"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "Təkrarlayıcı"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "İkinci"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "Avtomatik"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "Şəbəkə adı (ESSID)"
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "Şəbəkə ID-si"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "İşləmə tezliyi"
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr "Həssaslıq aralığı"
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr "Vuruş sıxlığı (v/s olaraq)"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -11002,17 +11002,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr "Fraqmentasiya"
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr "iwconfig əmri əlavə arqumentləri"
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -11023,12 +11023,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr "iwspy əmri əlavə arqumentləri"
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -11040,12 +11040,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr "iwpriv əmri əlavə arqumentləri"
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -11063,7 +11063,7 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
@@ -11072,7 +11072,7 @@ 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."
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
@@ -11081,37 +11081,37 @@ 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."
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr "PID"
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -11123,67 +11123,67 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr "Qovşaq adı (arzuya görə)"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Ev sahibi adı"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr "DNS vericisi 1"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr "DNS vericisi 2"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr "DNS vericisi 3"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, c-format
msgid "Search domain"
msgstr "Axtarış domeni"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Şəbəkə Keçidi (mis. %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "Şəbəkə keçidi avadanlığı"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, 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"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, 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"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -11192,67 +11192,67 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr "Zeroconf Qovşaq adı"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "Zeroconf qovşaq adı . (nöqtə) daxil edə bilməz"
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "Açılışda başlat"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "İndi internetə bağlanmağı sınamaq istəyirsiniz?"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "Bağlantınız sınanır..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Sistem indi İnternetə bağlıdır."
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, 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."
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -11261,7 +11261,7 @@ msgstr ""
"Sisteminiz İnternetə bağlı görünmür.\n"
"Bağlantınızı yenidən quraşdırın."
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -11270,7 +11270,7 @@ msgstr ""
"Təbrik edirik, internet və şəbəkə quraşdırılması bitdi.\n"
"\n"
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -11279,7 +11279,7 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -11290,28 +11290,28 @@ msgstr ""
"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."
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, 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"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr "(%s tapıldı)"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr "(tapıldı)"
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "Şəbəkə Quraşdırılması"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -11323,12 +11323,12 @@ msgstr ""
"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"
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, 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?"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -11339,7 +11339,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -11352,12 +11352,12 @@ msgstr ""
"\n"
"Davam etmək üçün \"%s\" düyməsinə basın."
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, 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 ?"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -11368,12 +11368,12 @@ msgstr ""
"İstifadə etmək istədiyinizi seçin.\n"
"\n"
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "İnternet bağlantısı"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -11382,34 +11382,49 @@ msgstr ""
"Gözlənilməyən xəta baş verdi:\n"
"%s"
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "FTP vəkili"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "Vəkil http://... şəklində olmalıdır."
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL 'ftp:' ya da 'http:' ilə başlamalıdır"
@@ -11431,7 +11446,7 @@ msgstr ""
"\t\teth0, ya da eth1 kabel bağlantıları üçün, \n"
"\t\tippp+ isdn bağlantısı üçün.\n"
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, fuzzy, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
@@ -11440,7 +11455,7 @@ msgstr ""
"%s\n"
"/usr/share/speedtouch içinə mgmt.o adı ilə köçürün"
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -11449,46 +11464,46 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "Xorg paketi qurula bilmir: %s"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "Siseminizdəki yazı növlərini silin"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "Disket daxil edin"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -11497,12 +11512,12 @@ 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"
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Disketə icazə xətası, %s avadanlığı bağlana bilmədi"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -11513,38 +11528,38 @@ msgstr ""
"Onu indi bir disket ya da windows bölməsi vasitəsiylə verə\n"
"bilərsiniz, ya da keçib daha sonra edə bilərsiniz."
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr "Disket işlət"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr "Windows bölməmi işlət"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr "Firmware köçürülməsi bacarılmadı, %s faylı tapılmadı"
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr "Firmware köçürülməsində müvəffəqiyyət"
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, 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..."
@@ -11637,7 +11652,7 @@ msgstr "ə'la"
msgid "maybe"
msgstr "bəlkə"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, fuzzy, c-format
msgid "Downloading file %s..."
msgstr "Fayllar göndərilir..."
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 1972e44bc..cef488722 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -61,7 +61,7 @@ msgid ""
"plug the key again, and launch Mandriva Move again."
msgstr ""
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "Перазагрузка"
@@ -143,14 +143,14 @@ msgstr "Канфігурацыя сыстэмы друку (прынтэры, з
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -433,7 +433,7 @@ msgid "Custom"
msgstr "Па выбару"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -613,7 +613,7 @@ msgstr "Ок"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -769,7 +769,7 @@ msgid ""
"other"
msgstr ""
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1269,7 +1269,7 @@ msgstr ""
msgid "All languages"
msgstr "Выбар мовы"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Краіна - рэгіён і мова"
@@ -1301,7 +1301,7 @@ msgid "Input method:"
msgstr ""
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2763,7 +2763,7 @@ msgstr "Памер: %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геаметрыя: %s цыліндраў, %s галовак, %s сектараў\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "Інфармацыя: "
@@ -2804,7 +2804,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "Паролі не супадаюць"
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -2882,7 +2882,7 @@ msgstr ""
msgid "Mandatory package %s is missing"
msgstr ""
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3269,7 +3269,7 @@ msgid "AGP controllers"
msgstr ""
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "Прынтэр"
@@ -3336,7 +3336,7 @@ msgid "Bridges and system controllers"
msgstr ""
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3347,7 +3347,7 @@ msgstr "Клавіятура"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "Мыш"
@@ -3666,7 +3666,7 @@ msgstr "Імя карыстальніку:"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -3938,7 +3938,7 @@ msgid ""
"server which can be used by other machines on your local network as well."
msgstr ""
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, fuzzy, c-format
msgid "Hardware clock set to GMT"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
@@ -4201,17 +4201,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, fuzzy, c-format
msgid "Replay"
msgstr "Граць"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "Аўтаматычны"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, fuzzy, c-format
msgid "Save packages selection"
msgstr "Асабісты выбар пакетаў"
@@ -4714,8 +4714,8 @@ msgid ""
"system, you can click on the button and choose a different driver."
msgstr ""
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, fuzzy, c-format
msgid "Sound card"
msgstr "Праграма гуказапісу"
@@ -4791,13 +4791,13 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, fuzzy, c-format
msgid "Timezone"
msgstr "Тэма"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr ""
@@ -4812,33 +4812,33 @@ msgstr "Унутраная ISDN карта"
msgid "Graphical Interface"
msgstr "Запуск X пры старце сістэмы"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "Сетка"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, fuzzy, c-format
msgid "Proxies"
msgstr "Проксі"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "Узровень бясьпекі"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Усталяванне загрузчыку"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -5592,7 +5592,7 @@ msgstr "важна"
msgid "You can not select/unselect this package"
msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr ""
@@ -5741,13 +5741,13 @@ msgstr "Атрымалася памылка ўпарадкавання паке
msgid "Go on anyway?"
msgstr "Усё роўна працягваць?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "Агульныя зьвесткі"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, fuzzy, c-format
msgid "not configured"
msgstr "Настроіць панэль"
@@ -5931,7 +5931,7 @@ msgstr "Прагляд даступных пакетаў"
msgid "Looking for available packages..."
msgstr "Прагляд даступных пакетаў"
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Выбар люстра для атрымання пакетаў"
@@ -6039,12 +6039,12 @@ msgstr "Настройка пасля ўсталявання"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr ""
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -6057,142 +6057,142 @@ msgid ""
"Do you want to install the updates?"
msgstr ""
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, fuzzy, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, fuzzy, c-format
msgid "Unable to contact mirror %s"
msgstr "Немагчыма адчыніць файл %s\n"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, fuzzy, c-format
msgid "Would you like to try again?"
msgstr "Дрэнны выбар, паспрабуйце яшче\n"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Які ваш часавы пояс?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сэервер:"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "Сістэма"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "Абсталяваньне"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "Аддалены сэервер CUPS"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, fuzzy, c-format
msgid "No printer"
msgstr "Імя друкаркі"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, fuzzy, c-format
msgid "Do you have an ISA sound card?"
msgstr "Ці ёсць у вас іншы?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, fuzzy, c-format
msgid "Graphical interface"
msgstr "Запуск X пры старце сістэмы"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, fuzzy, c-format
msgid "Network & Internet"
msgstr "Сеткавы інтэрфейс"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, fuzzy, c-format
msgid "configured"
msgstr "Настроіць панэль"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Бясьпека"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr ""
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "выключаны"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, fuzzy, c-format
msgid "Boot"
msgstr "Манітор"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr ""
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, fuzzy, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Меню не было захавана. Ці сапраўды вы жадаеце выйсці?"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "Падрыхтоўка загрузчыка"
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -6201,12 +6201,12 @@ msgid ""
"root fs is: root=%s"
msgstr ""
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -6215,29 +6215,29 @@ msgstr ""
"Памылка ўсталявання aboot, \n"
"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, fuzzy, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "Стварэнне дыскеты для ўсталявання"
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -6247,19 +6247,19 @@ msgstr ""
"Некаторыя крокі не завершаны.\n"
"Вы сапраўды жадаеце выйсці зараз?"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, fuzzy, c-format
msgid "Congratulations"
msgstr "Прыміце віншаванні!"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, fuzzy, c-format
msgid "Generate auto install floppy"
msgstr "Стварэнне дыскеты для ўсталявання"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -9016,7 +9016,7 @@ msgstr ""
msgid "unknown"
msgstr "невядома"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr ""
@@ -9266,7 +9266,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr ""
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, fuzzy, c-format
msgid "Select the network interface to configure:"
msgstr "Пазначце сеткавы інтэрфейс"
@@ -9423,7 +9423,7 @@ msgstr "Настроіць проксі сэрвэры"
msgid "IP parameters"
msgstr "Інтэрнэт"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -9525,24 +9525,24 @@ msgstr ""
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr ""
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, fuzzy, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "Настрйка драйверу Solaris"
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -9553,198 +9553,198 @@ msgstr ""
"Кожны пункт павінен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
"натацыі (напрыклад, 1.2.3.4)."
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr ""
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, fuzzy, c-format
msgid "DHCP host name"
msgstr "Імя машыны"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Маска сеткі"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, fuzzy, c-format
msgid "Network Hotplugging"
msgstr "Сетка"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr ""
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "абмежаванне"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr ""
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Настройка далучэння да Інтэрнэту"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "IP сэервера SMB"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr ""
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, fuzzy, c-format
msgid "%s already in use\n"
msgstr "%s ужо знойдзены "
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "X сэервер"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "Усталяванне сістэмы"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "Рэжым злучэння"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr ""
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, fuzzy, c-format
msgid "Managed"
msgstr "Мэнэджэр файлаў"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, fuzzy, c-format
msgid "Master"
msgstr "Прайгравальнік дыскаў"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, fuzzy, c-format
msgid "Repeater"
msgstr "Цыклічна"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, fuzzy, c-format
msgid "Secondary"
msgstr "Нядзеля"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "Аўтаматычна"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr ""
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, fuzzy, c-format
msgid "Network ID"
msgstr "Сетка"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr ""
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, fuzzy, c-format
msgid "Bitrate (in b/s)"
msgstr "Бітрэйт: %d kb/s"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr ""
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -9758,17 +9758,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, fuzzy, c-format
msgid "Fragmentation"
msgstr "Аўтэнтыфікацыя"
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -9779,12 +9779,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -9796,12 +9796,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -9819,51 +9819,51 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr "PID"
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -9876,67 +9876,67 @@ msgstr ""
"напрыклад ‟mybox.mylab.myco.com”.\n"
"Вы можаце таксама ўвесці IP адрас шлюзу, калі ён у вас ёсць."
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "Імя машыны"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Імя машыны"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, fuzzy, c-format
msgid "DNS server 1"
msgstr "NIS сэервер:"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, fuzzy, c-format
msgid "DNS server 2"
msgstr "NIS сэервер:"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, fuzzy, c-format
msgid "DNS server 3"
msgstr "NIS сэервер:"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, fuzzy, c-format
msgid "Search domain"
msgstr "Шукаць: "
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "Прылада-шлюз"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, fuzzy, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, fuzzy, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -9945,88 +9945,88 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, fuzzy, c-format
msgid "Zeroconf Host name"
msgstr "Імя машыны"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "Аўтаматычны"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ці жадаеце зараз паспрабаваць далучыцца да Інтэрнэту?"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr ""
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, fuzzy, c-format
msgid "The system is now connected to the Internet."
msgstr "Далучэнне да Інтэрнэту"
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"\n"
msgstr ""
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -10034,28 +10034,28 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, c-format
msgid "(detected on port %s)"
msgstr ""
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr ""
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr ""
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "Канфігурацыя сеткі"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -10064,12 +10064,12 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr "Зьмяненьні не былі захаваныя. Ці жадаеце працягнуць?"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -10077,7 +10077,7 @@ msgid ""
"%s"
msgstr ""
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -10086,12 +10086,12 @@ msgid ""
"Press \"%s\" to continue."
msgstr ""
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, fuzzy, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "Якую канфігурацыю Xorg вы жадаеце атрымаць?"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -10099,46 +10099,61 @@ msgid ""
"\n"
msgstr ""
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, fuzzy, c-format
msgid "Internet connection"
msgstr "Сумеснае Інтэрнэт-злучэнне"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
"%s"
msgstr ""
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "Настройка proxy кэшуючых сэервераў"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "FTP proxy"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "Proxy павінен быць http://..."
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr ""
@@ -10154,12 +10169,12 @@ msgid ""
"\t\tippp+ for a isdn connection.\n"
msgstr ""
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -10168,58 +10183,58 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "Усталяванне пакету %s"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "У вашай сістэме няма ніводнага сеткавага адаптара!"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, fuzzy, c-format
msgid "Insert floppy"
msgstr "Усталёўка"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
"press %s"
msgstr ""
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Куды вы жадаеце манціраваць прыладу %s?"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -10227,38 +10242,38 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, fuzzy, c-format
msgid "Use a floppy"
msgstr "Захаванне на дыскету"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, fuzzy, c-format
msgid "Use my Windows partition"
msgstr "Вылічэнне межаў файлавай сістэмы Windows"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "Прыміце віншаванні!"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr "Канфігурацыя сыстэмы друку (прынтэры, заданьні, клясы, ...)"
@@ -10348,7 +10363,7 @@ msgstr "добра"
msgid "maybe"
msgstr "можа быць"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, fuzzy, c-format
msgid "Downloading file %s..."
msgstr "Вызначэнне прыладаў..."
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index becfacb1d..47b1341cf 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\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"
@@ -66,7 +66,7 @@ msgid ""
"plug the key again, and launch Mandriva Move again."
msgstr ""
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "Престартира"
@@ -148,14 +148,14 @@ msgstr "Моля, изберете ниво на сигурност..."
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -436,7 +436,7 @@ msgid "Custom"
msgstr "Клиентска"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -617,7 +617,7 @@ msgstr "Ok"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -777,7 +777,7 @@ msgid ""
"other"
msgstr ""
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1291,7 +1291,7 @@ msgstr "Използва уникод по подразбиране"
msgid "All languages"
msgstr "Избор на език"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
@@ -1323,7 +1323,7 @@ msgid "Input method:"
msgstr "Мрежов метод:"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2817,7 +2817,7 @@ msgstr "Размер: %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "Информация: "
@@ -2858,7 +2858,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "Ключовете за криптиране не съвпадат"
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -2939,7 +2939,7 @@ msgstr "Инсталиране на пакета %s"
msgid "Mandatory package %s is missing"
msgstr "Задължителният пакет %s липсва"
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3344,7 +3344,7 @@ msgid "AGP controllers"
msgstr "AGP контролери"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "Принтер"
@@ -3411,7 +3411,7 @@ msgid "Bridges and system controllers"
msgstr "Бриджове и системни контролери"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3422,7 +3422,7 @@ msgstr "Клавиатура"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "Мишка"
@@ -3804,7 +3804,7 @@ msgstr "Потребителско име"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -4210,7 +4210,7 @@ msgid ""
"server which can be used by other machines on your local network as well."
msgstr ""
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "Хадруерният ви часовник е настроен по GMT"
@@ -4582,17 +4582,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Подготвя дискета за автоматична инсталация"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr "Повтори"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "Автоматизиран"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "Запази избор на пакети"
@@ -5310,8 +5310,8 @@ msgstr ""
"Ако забележите,че намерената звукова карта не отговаря на истината,\n"
"можете да цъкнете на бутона и да изберете друг драйвер."
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "Звукова карта"
@@ -5387,13 +5387,13 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "Часова зона"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "TV карта"
@@ -5408,33 +5408,33 @@ msgstr "ISDN карта"
msgid "Graphical Interface"
msgstr "Графичен интерфейс"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "Мрежа"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, fuzzy, c-format
msgid "Proxies"
msgstr "Профил "
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "Ниво на защита"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "Защитна стена"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -6388,7 +6388,7 @@ msgstr "Важност:"
msgid "You can not select/unselect this package"
msgstr "Не можете да отбележете/деотбележете този пакет"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, fuzzy, c-format
msgid "due to missing %s"
msgstr "липсва kdesu"
@@ -6538,13 +6538,13 @@ msgstr "Появи се грешка при инсталиране на паке
msgid "Go on anyway?"
msgstr "Да продължа ли все пак ?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "Обобщение"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "не е конфигуриран"
@@ -6736,7 +6736,7 @@ msgstr "Търся налични пакети и препостроявам rpm
msgid "Looking for available packages..."
msgstr "Търся налични пакети..."
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Изберете огледален сървър,от който да получите пакетите"
@@ -6848,12 +6848,12 @@ msgstr "След инсталационна настройка"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr "Обновяване"
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -6866,7 +6866,7 @@ msgid ""
"Do you want to install the updates?"
msgstr ""
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
@@ -6874,67 +6874,67 @@ msgstr ""
"Свързване с Mandriva Linux web сайт за получаване на списъка с налични "
"огледални сървъри..."
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Свързване с огледалния сървър за получаване на списъка с пакетите"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Не мога да се свръжа с огледален сървър' %s"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "Желаете ли да опитате пак ?"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Коя е времевата ви зона ?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "NTP сървър"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "Система"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "Хардуер"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "Отдалечен CUPS сървър"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "Няма принтер"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Имате ли ISA звукова карта?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -6943,69 +6943,69 @@ msgstr ""
"Изпълнете \"sndconfig\" след инсталация за да конфигурирате вашата звукова "
"карта"
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Няма открита звукова карта. Опитайте \"harddrake\" след инсталацията"
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "Графичен интерфайс"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "Мрежа и интернет"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, fuzzy, c-format
msgid "configured"
msgstr "пренастройка"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Сигурност"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "активирано"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "изключен"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "Зареждане"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Услуги: %d активирани от %d регистрирани"
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Вие не сте конфигурирали X. Сигурни ли сте, че искате това?"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "Подготовка на bootloader"
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, fuzzy, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -7018,12 +7018,12 @@ msgstr ""
"Инсталацията ще продължи, но ще трябва\n"
"да иползвате BootX, за да стартирате машината си"
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "Искате ли да използвате aboot ?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -7032,29 +7032,29 @@ msgstr ""
"Грешка при инсталиране на aboot, \n"
"да се опитам ли да продължа инсталацията дори, ако това унижтожи първия дял ?"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Сложете празна дискета в устройство %s"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, fuzzy, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Сложете стартиращата дискета в устройство %s"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "Подготвям дискета с автоматична инсталация"
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -7065,19 +7065,19 @@ msgstr ""
"\n"
"Наистина ли искате да излезете сега ?"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "Поздравления"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr "Подготви дискета за автоматична инсталация"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -9865,7 +9865,7 @@ msgstr ""
msgid "unknown"
msgstr "неизвестен"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, fuzzy, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Alcatel speedtouch USB"
@@ -10115,7 +10115,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr ""
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, fuzzy, c-format
msgid "Select the network interface to configure:"
msgstr "Изберете мрежов интерфейс"
@@ -10273,7 +10273,7 @@ msgstr "Параметри"
msgid "IP parameters"
msgstr "Параметри"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -10375,24 +10375,24 @@ msgstr ""
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, fuzzy, c-format
msgid "Zeroconf hostname resolution"
msgstr "Име на Zeroconf хост:"
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, fuzzy, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "Настройка на мрежовото устройство %s"
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -10403,198 +10403,198 @@ msgstr ""
"Всяко устройство трябва да бъде въведено като IP адрес\n"
"с точково-десетично означение (например, 1.2.3.4)."
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Получаване на име от DHCP адрес"
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "Име на DHCP хост"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Мрежова маска"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "Проследяване на ID на мрежовата карта (полезно при лаптопи)"
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr "Мрежов Hotplugging"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "Изпълнение при стартиране"
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, fuzzy, c-format
msgid "Metric"
msgstr "ограничи"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "DHCP клиент"
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Timeout на връзката (в сек)"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "DNS сървър IP"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP адресът трябва да бъде във формат 1.2.3.4"
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr ""
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr ""
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, fuzzy, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Избор на случаен драйвер"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, fuzzy, c-format
msgid "Install a new driver"
msgstr "Инсталиране на системата"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, fuzzy, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "Моля, въведете име на хост или IP."
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, fuzzy, c-format
msgid "Operating Mode"
msgstr "Разширени функиции"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr ""
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr "Управляем"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "Главен"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "Повтаряем"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "Вторичен"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "Автоматично"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr ""
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, fuzzy, c-format
msgid "Network ID"
msgstr "Мрежа"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr ""
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr ""
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr ""
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -10608,17 +10608,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, fuzzy, c-format
msgid "Fragmentation"
msgstr "Игрална станция"
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr ""
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -10629,12 +10629,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr ""
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -10646,12 +10646,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr ""
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -10669,51 +10669,51 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr "Процес"
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -10726,67 +10726,67 @@ msgstr ""
"като ``mybox.mylab.myco.com''.\n"
"Можете също да въведете IP адреса на Вашия gateway, ако имате такъв"
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, fuzzy, c-format
msgid "Host name (optional)"
msgstr "Първи DNS сървър (по избор)"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Име на хост:"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, fuzzy, c-format
msgid "DNS server 1"
msgstr "DNS сървър"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, fuzzy, c-format
msgid "DNS server 2"
msgstr "DNS сървър"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, fuzzy, c-format
msgid "DNS server 3"
msgstr "DNS сървър"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, fuzzy, c-format
msgid "Search domain"
msgstr "NIS домейн"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (напр. %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "Gateway устройство"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "DNS сървъра трябва да бъде във формат 1.2.3.4"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -10795,67 +10795,67 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr "Име на Zeroconf хост:"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, fuzzy, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Искате ли да стартирате връзката си при зареждане ?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Искате ли да стартирате връзката си при зареждане ?"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, fuzzy, c-format
msgid "Automatically at boot"
msgstr "Изпълнение при стартиране"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr ""
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, fuzzy, c-format
msgid "How do you want to dial this connection?"
msgstr "Искате ли да стартирате връзката си при зареждане ?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Искате ли сега да опитате връзка към Интернет ?"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "Изпробване на връзката..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Системата в момента е свързана към Интернет."
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "За ваша сигурност, сега тя ще бъдете отвързана."
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -10864,7 +10864,7 @@ msgstr ""
"Системата не изглежда свързана към Интернет.\n"
"Опитайте се да пренастроите връзката."
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -10873,7 +10873,7 @@ msgstr ""
"Поздравления, мрежовата и интернет настройката е завършена.\n"
"\n"
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -10882,7 +10882,7 @@ msgstr ""
"След като стане това, препоръчваме ви да рестартирате X\n"
"средата си, за да избегнете проблеми със смяната името на хоста."
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -10893,28 +10893,28 @@ msgstr ""
"Проверете вашата връзка през net_monitor или mcc. Ако вашата връзка не "
"работи , вие трябва да преконфигурирате."
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, fuzzy, c-format
msgid "(detected on port %s)"
msgstr "засечен на порт %s"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, fuzzy, c-format
msgid "(detected %s)"
msgstr "засечена %s"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, fuzzy, c-format
msgid "(detected)"
msgstr "засечена "
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "Настройка на мрежата"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -10926,12 +10926,12 @@ msgstr ""
"Цъкнете Ok, за да запазите настройката, или Отмяна, за да пренастоите "
"Интернет и мрежовата си връзка.\n"
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr "Мрежата се нуждае от престартиране. Искате ли да я престартирам?"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -10942,7 +10942,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -10956,12 +10956,12 @@ msgstr ""
"\n"
"Натиснете \"%s\", за да продължите."
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "Настройката завърши,желаете ли да я приложите ?"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -10972,46 +10972,61 @@ msgstr ""
"Изберете този, който искате да използвате.\n"
"\n"
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "Интернет връзка"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
"%s"
msgstr ""
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "Настройка на proxy"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "FTP proxy"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "Proxy-сървъра трябва да е http://..."
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL трябва да е започва с 'ftp:' или 'http:'"
@@ -11027,12 +11042,12 @@ msgid ""
"\t\tippp+ for a isdn connection.\n"
msgstr ""
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -11041,46 +11056,46 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "Инсталиране на пакета %s"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "Изтрива шрифтове от вашата система"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "Сложете дискета във флопито"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -11089,12 +11104,12 @@ msgstr ""
"Сложете FAT форматирана дискета в устройство %s с %s в главната директория и "
"натиснете %s"
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Къде искате да монтирате устройство %s ?"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -11102,38 +11117,38 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, fuzzy, c-format
msgid "Use a floppy"
msgstr "Запази на дискета"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, fuzzy, c-format
msgid "Use my Windows partition"
msgstr "Изчислявам границите на Windows файловата система"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "Поздравления !"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr "Моля, изберете ниво на сигурност..."
@@ -11227,7 +11242,7 @@ msgstr "добър"
msgid "maybe"
msgstr "става"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, fuzzy, c-format
msgid "Downloading file %s..."
msgstr "Изпращам файлове..."
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 292fc5fa4..d21a6137f 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\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"
@@ -78,7 +78,7 @@ msgstr ""
"আনপ্লাগ করুন এবং রইট প্রটেকশন অপসরন করে আবার\n"
"ইউএসবি ডিস্ক প্লাগ-ইন করে ম্যান্ড্রিব মুভ চালু করুন।"
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "রিবুট"
@@ -186,14 +186,14 @@ msgstr "অনুগ্রহ করে অপেক্ষা করুন, ড
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -494,7 +494,7 @@ msgid "Custom"
msgstr "ব্যবস্থা"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -672,7 +672,7 @@ msgstr "ঠিক আছে"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -842,7 +842,7 @@ msgid ""
"other"
msgstr "অনান্য"
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1358,7 +1358,7 @@ msgstr "স্বাভাবিকভাবে ইউনিকোড ব্য
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
@@ -1390,7 +1390,7 @@ msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2923,7 +2923,7 @@ msgstr "সাইজ: %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "জ্যামিতি: %s-গুলি সিলিন্ডার, %s-গুলি হেড, %s-গুলি সেক্টর\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "তথ্য:"
@@ -2963,7 +2963,7 @@ msgstr "এই এনক্রিপশন কী টি খুবই সাধ
msgid "The encryption keys do not match"
msgstr "এনক্রিপশন কীগুলি মিলছেনা"
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -3043,7 +3043,7 @@ msgstr "%s প্যাকেজটি ইনস্টল করা যায়
msgid "Mandatory package %s is missing"
msgstr "%s আবশ্যিক প্যাকেজ নেই"
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3462,7 +3462,7 @@ msgid "AGP controllers"
msgstr "AGP কন্ট্রোলার সমূহ"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "প্রিন্টার"
@@ -3529,7 +3529,7 @@ msgid "Bridges and system controllers"
msgstr "ব্রীজ এবং সিস্টেম কন্ট্রোলার সমূহ"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3540,7 +3540,7 @@ msgstr "কি-বোর্ড"
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "মাউস"
@@ -3965,7 +3965,7 @@ msgstr "ইউজারের নাম"
# পরবর্তি
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -4356,7 +4356,7 @@ msgid ""
"server which can be used by other machines on your local network as well."
msgstr ""
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
@@ -4650,17 +4650,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "সয়ংক্রিয়-ইনস্টল ফ্লপি তৈরী করো"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr "জবাব"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "সয়ংক্রিয়ভাবে"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "প্যাকেজের নির্বাচন সংরক্ষণ করে রাখো"
@@ -5355,8 +5355,8 @@ msgstr ""
"যদি আপনি জানান যে আসলে এই সাউন্ড কার্ডটি আপনার সিস্টেমে উপস্থিত নেই, তাহলে আপনি\n"
"বাটনে ক্লিক করুন এবং অন্য একটি ড্রাইভার বেছে নিন।"
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "সাউন্ডকার্ড"
@@ -5432,13 +5432,13 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "টাইমজোন"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "টিভি কার্ড"
@@ -5453,33 +5453,33 @@ msgstr "ISDN কার্ড"
msgid "Graphical Interface"
msgstr "গ্রাফিকাল ইন্টারফেস"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "নেটওয়ার্ক"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, c-format
msgid "Proxies"
msgstr "প্রক্সিসমূহ"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "সিকউরিটি লেভেল"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "ফায়ারওয়াল"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "বুটলোডার"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -6299,7 +6299,7 @@ msgstr "প্রাধান্য:"
msgid "You can not select/unselect this package"
msgstr "আপনি এই প্যাকেজটি নির্বাচন/অ-নির্বাচন করতে পারবেন না"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr "%s না থাকার কারনে"
@@ -6449,13 +6449,13 @@ msgstr "এই প্যাকেজগুলি ইনস্টল করতে
msgid "Go on anyway?"
msgstr "তবুও যাব?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "সারাংশ"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "কনফিগার করা হয়নি"
@@ -6652,7 +6652,7 @@ msgstr "উপস্থিত প্যাকেজসমুহ পর্যব
msgid "Looking for available packages..."
msgstr "বরাদ্দকৃত প্যাকেজসমূহ খোঁজা হচ্ছে..."
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "আপনি একটি মিরর পছন্দ করুন যেখান থেকে প্যাকেজগুলি নেবেন"
@@ -6767,12 +6767,12 @@ msgstr "ইনস্টলের পরের কনফিগারেশন"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr "আপডেট"
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -6793,73 +6793,73 @@ msgstr ""
"\n"
"আপনি কি ইনস্টল আপডেট করতে চান?"
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
msgstr "উপস্থিত মিররের তালিকার জন্য Mandriva Linux-এ সংযুক্ত করা হচ্ছে..."
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "প্যাকেজের তালিকার জন্য মিররের সাথে সংযুক্ত করা হচ্ছে..."
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "%s মিররের সাথে সংযুক্ত হওয়া গেলনা"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "আপনি কি আবার চেষ্টা করতে চান?"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "আপনার টাইমজোন কি?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "NTP সার্ভার"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "সি"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "হার্ডওয়্যার"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "দূরবর্তী CUPS সার্ভার"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "কোন প্রিন্টার নেই"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "আপনার কি একটি ISA সাউন্ড কার্ড আছে?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -6868,70 +6868,70 @@ msgstr ""
"ইনস্টল শেষ হবার পরে সাউন্ড কার্ড কনফিগার করার জন্য \"alsaconf\" অথবা \"sndconfig"
"\" চালাও"
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "কোন সাউন্ডকার্ড সনাক্ত হয়নি, ইনস্টলের পরে \"harddrake\" দিয়ে চেষ্টা করুন"
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "গ্রাফিকাল ইন্টারফেস"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "নেটওয়ার্ট এবং ইন্টারনেট"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, c-format
msgid "configured"
msgstr "কনফিগার করা হয়েছে"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "সিকিউরিটি"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "সক্রিয় হয়েছে"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "অকার্যকর করা হয়েছে"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "বুট"
# -PO: example: lilo-graphic on /dev/hda1
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s -এ %s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "সার্ভিস সমূহ: %d সক্রিয় হয়েছে %d রেজিষ্টারের জন্য"
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "আপনি X কনফিগার করেননি। আপনি কি নিশ্চিত এরকমটি চান?"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "Bootloader প্রস্তুত করা হচ্ছে..."
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -6944,12 +6944,12 @@ msgstr ""
"BootX বা অন্য কোন কিছু ব্যবহার করতে হবে। root fs এর জন্য কার্নেল প্রেরিত মান হবে: "
"root=%s"
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "আপনি কি aboot ব্যবহার করতে চান?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -6958,7 +6958,7 @@ msgstr ""
"Aboot ইনস্টলে ব্যর্থ হয়েছে,\n"
"জোর করে ইনস্টলের চেষ্টা করবো যদিও সেটা প্রথম পার্টিশনকে নষ্ট করতে পারে?"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -6966,22 +6966,22 @@ msgid ""
msgstr ""
"এই নিরাপত্তা লেভেলে, উইন্ডোজ পার্টিশনের ফাইলে প্রবেশ শুধুমাত্র অ্যাডমিনিস্ট্রেটরের আছে।"
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ড্রাইভে একটি ফাঁকা ফ্লপি ঢোকান"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "ড্রাইভারের ডিস্কের জন্য অন্য একটি ফ্লপি ঢোকান"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "সয়ং ইনস্টল ফ্লপি তৈরী করা হচ্ছে..."
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -6992,19 +6992,19 @@ msgstr ""
"\n"
"আপনি কি এখন বের হতে চান?"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "স্বাগতম"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr "সয়ংক্রিয় ইনস্টল ফ্লপি প্রস্তুত করো"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -9836,7 +9836,7 @@ msgstr ""
msgid "unknown"
msgstr "অজানা"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Alcatel speedtouch ইউএসবি মডেম"
@@ -10088,7 +10088,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr "BPALogin ব্যবহার করুন (Telstra এর জন্য প্রয়োজন)"
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, c-format
msgid "Select the network interface to configure:"
msgstr "কনফিগার করার জন্য নেটওয়ার্কের ইন্টারফেস পছন্দ করুন:"
@@ -10249,7 +10249,7 @@ msgstr "ডায়েলআপ: IP প্যারামিটার"
msgid "IP parameters"
msgstr "IP প্যারামিটারসমূহ"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -10352,24 +10352,24 @@ msgstr "আপনি নিজেই একটি ড্রাইভার ল
msgid "Use a Windows driver (with ndiswrapper)"
msgstr "একটি উইন্ডোজ ড্রাইভার ব্যবহার করুন (ndiswrapper এর সাথে)"
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr "Zeroconf হোস্টের নাম রেজ্যুলুশন"
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "%s নেটওয়ার্ক যন্ত্রটি কন্‌ফিগার হচ্ছে (ড্রাইভার %s)"
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -10380,207 +10380,207 @@ msgstr ""
"প্রত্যেক আইটেম একটি আই-পি অ্যাড্রেস হিসেবে dotted-decimal নোটেশনে দিতে \n"
"হবে (উদাহরণস্বরুপ, 1.2.3.4)"
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "DHCP ঠিকানা থেকে পাওয়া হোস্টের নাম"
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "DHCP হোস্টের নাম"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "নেটমাস্ক"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr "নেটওয়ার্ক কার্ড আই-ডি ট্র্যাক করো (ল্যাপটপের জন্য ভাল)"
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr "নেটওয়ার্ক Hotplugging"
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "বুটের সময় চালু হবে"
# সাম: পরিমাপক বা মেট্রিক (as in metric system)
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, c-format
msgid "Metric"
msgstr "মেট্রিক"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "DHCP ক্লায়েন্ট"
# sam
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, c-format
msgid "DHCP timeout (in seconds)"
msgstr "DHCP টাইমআউট (সেকেন্ডে)"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, c-format
msgid "Get DNS servers from DHCP"
msgstr "DHCP থেকে DNS সার্ভারগুলো দেখাও "
# সাম
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr "DHCP থেকে YP সার্ভারগুলো দেখাও "
# সাম
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr "DHCP থেকে NTPD সার্ভারগুলো দেখাও "
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ঠিকানা 1.2.3.4-এর মত হতে হবে"
# সাম
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "নেটমাস্ক 255.255.224.0 এই ফরম্যাটে হতে হবে"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "নির্দেশ : সাধারনত %s IP ঠিকানাগুলি রিজার্ভ থাকে !"
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr "%s ইতিমধ্যেই ব্যবহৃত হচ্ছে\n"
# সাম
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, c-format
msgid "Choose an ndiswrapper driver"
msgstr "একটি ndiswrapper ড্রাইভার বেছে নিন"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr ""
# সাম
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Install a new driver"
msgstr "একটি নতুন ড্রাইভার ইনস্টল করুন"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr ""
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "কার্ডের ওয়্যারলেস প্যারামিটার প্রবেশ করান"
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, c-format
msgid "Operating Mode"
msgstr "কার্যকারিতার ধরন"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr "Echo request (ping)"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr "ব্যবস্থা হয়েছে"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "মাষ্টার"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "রিপিটার"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "মাধ্যমিক"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "সয়ংক্রিয়"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "নেটওয়ার্কের নাম (ESSID)"
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr ""
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr ""
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "নেটওয়ার্ক ID"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "কার্যকারিতার ফ্রিকুয়েন্সি"
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr "প্রতিক্রিয়াশীল থ্রেশল্ড"
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr "বিটরেট (b/s-এ)"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
# sam=
# parameter has been translated as প্যারামিটার
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -10604,17 +10604,17 @@ msgstr ""
"হয়ে যায়। আপনি এই প্যারামিটারটি স্বয়ংক্রিয়, নির্ধারিত, বা বন্ধও সেট\n"
"করতে পারেন।"
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr "ফ্রাগমেন্টেশন"
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr "Iwকন্‌ফিগ কমান্ড অতিরিক্ত আর্গুমেন্ট"
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -10631,12 +10631,12 @@ msgstr ""
# -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
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr "Iwস্পাই কমান্ড অতিরিক্ত আর্গুমেন্ট"
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, fuzzy, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -10651,12 +10651,12 @@ msgstr ""
"তালিকা সেট করা এবং তার প্রতিটির সংযোগ এর মান সংক্রান্ত তথ্য পড়ার জন্য।\n"
"\n"
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr "iwpriv কমান্ড অতিরিক্ত আর্গুমেন্ট"
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -10674,7 +10674,7 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
@@ -10683,7 +10683,7 @@ msgstr ""
"ফ্রিকোয়েন্সির শেষে k, M বা G থাকতে হবে (উদাহরণস্বরুপ,২.৪৬ গিগাহার্জ ফ্রিকোয়েন্সীর "
"জন্য \"2.46G\"),অথবা অনেকগুলো '0' (শূণ্য) যোগ করুন।"
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
@@ -10692,37 +10692,37 @@ msgstr ""
"ফ্রিকোয়েন্সির শেষে k, M বা G থাকতে হবে (উদাহরণস্বরুপ,১১M এর জন্য \"11M\"),অথবা "
"অনেকগুলো '0' (শূণ্য) যোগ করুন।"
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr ""
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr ""
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr ""
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr ""
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr ""
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -10735,69 +10735,69 @@ msgstr ""
"যেমন ``mybox.mylab.myco.com''।\n"
"যদি আপনার কোন গেটওয়ে থাকে তাহলে তার আই-পি অ্যাড্রেস দিন"
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
"শেষ কিন্তু সবচেয়ে ছোট নয় আপনি আপনার ডি-এন-এস সার্ভারের আই-পি অ্যাড্রেসগুলো টাইপ "
"করে দিতে পারেন।"
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr "হোস্টের নাম (ঐচ্ছিক)"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "হোস্টের নাম"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr "DNS সার্ভার ১"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr "DNS সার্ভার ২"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr "DNS সার্ভার ৩"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, c-format
msgid "Search domain"
msgstr "ডোমেইনের খোঁজ"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr "ডিফল্টভাবে ডোমেইন সন্ধান যোগ্যতা-সম্পন্ন হোস্ট-নেম থেকে নির্দিষ্ত হবে"
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "গেটওয়ে (e.g. %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "গেটওয়ে ডিভাইস"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "DNS সার্ভারের ঠিকানা 1.2.3.4-এর মত হতে হবে"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "গেটওয়ে ঠিকানা 1.2.3.4-এর মত হতে হবে"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -10810,69 +10810,69 @@ msgstr ""
"পারে না সেই রিসোর্স ভাগাভাগিতে সাহায্য করবে।\n"
"এটি বেশিরভাগ নেটওয়ার্কের ক্ষেত্রে জরুরী নয়।"
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr "Zeroconf হোস্টের নাম"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr "Zeroconf হোস্টের নামে অবশ্যই a থাকবে না ।"
# সাম
# বুট হবার সাথে সাথে
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "আপনি কি ব্যবহারকারীদের সংযোগ স্থাপন শুরু করতে দিতে চান?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "আপনি কি বুট হবার সাথে সাথে সংযোগ স্থাপন করতে চান?"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, c-format
msgid "Automatically at boot"
msgstr "বুট এর সময় সয়ংক্রিয় ভাবে"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr "সিস্টেম ট্রে'তে নেট অ্যাপলেট ব্যবহার করে"
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr "হাতে হাতে (ইন্টারফেস এখনও বুট হওয়ার সময় সক্রিয় হবে)"
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, c-format
msgid "How do you want to dial this connection?"
msgstr "আপনি কিভাবে ডায়াল করে এই সংযোগ স্থাপন করতে চান?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "আপনি কি এখন ইন্টার্নেটের সাথে সংযুক্ত হবার চেষ্টা করবেন?"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "আপনার কানেকশন পরীক্ষা করা হচ্ছে..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "সিস্টেম এখন ইন্টারনেটে সংযুক্ত হবে।"
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "নিরাপত্তা কারণে, এটা এখন বিচ্ছিন্ন হবে।"
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -10881,7 +10881,7 @@ msgstr ""
"সিস্টেম ইন্টারনেটে সংযুক্ত আছে বলে মনে হয় না।\n"
"আপনার সংযুক্তি পুনরায় কন্‌ফিগার করার চেষ্টা করুন।"
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -10890,7 +10890,7 @@ msgstr ""
"অভিনন্দন, নেটওয়ার্ক এবং ইন্টারনেট কন্‌ফিগারেশন শেষ হয়ে গেছে।\n"
"।\n"
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
@@ -10899,7 +10899,7 @@ msgstr ""
"এটা হয়ে যাবার পর, আমরা সুপারিশ করি যে হোস্টনেমের সংক্রান্ত সমস্যাগুলো এড়ানোর জন্য "
"আপনার X এনভায়রনমেন্ট পুনরায় চালু করুন।"
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -10910,29 +10910,29 @@ msgstr ""
"net_monitor বা mcc এর মাধ্যমে আপনার সংযুক্ত পরীক্ষা করুন। যদি আপনার সংযুক্তি কাজ না "
"করে, তাহলে আপনাকে পুনরায় কন্‌ফিগারেশন করতে হবে।"
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, 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"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr "(%s সনাক্ত হয়েছে)"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr "(সনাক্ত হয়েছে)"
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "নেটওয়ার্ক কনফিগারেশন"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -10945,12 +10945,12 @@ msgstr ""
"কন্‌ফিগারেশন বজায় রাখতে ঠিক আছে'তে ক্লিক করুন, অথবা আপনার ইন্টারনেট এবং নেটওয়ার্ক "
"সংযুক্তি পুনরায়পুনরায় কন্‌ফিগার করতে বাতিল ক্লিক করুন।\n"
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr "নোটওয়ার্কের রিষ্টার্টের প্রয়োজন। আপনি কি রি-ষ্টার্ট করতে চান?"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -10961,7 +10961,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -10974,12 +10974,12 @@ msgstr ""
"\n"
" অগ্রসর হবার জন্য \"%s\" চাপুন।"
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr "কনফিগারেশন সম্পূর্ন হয়েছে, আপনি কি সেটিংগুলি প্রয়োগ করতে চান?"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -10990,12 +10990,12 @@ msgstr ""
"যেটি আপনি ব্যবহার করতে চান বেছে নিন।\n"
"\n"
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "ইন্টারনেট সংযোগ"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -11004,34 +11004,49 @@ msgstr ""
"একটি অনাকাঙ্খিত ভুল ঘটে গেছে:\n"
"%s"
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "প্রক্সিসমূহের কনফিগারেশন"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
"my_caching_server:8080)"
msgstr ""
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "HTTP প্রক্সি"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "FTP প্রক্সি"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "প্রক্সি http://..... হওয়া উচিত্‍‌"
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL 'ftp:' অথবা 'http:' দিয়ে শুরু হওয়া উচিত্‍‌"
@@ -11053,7 +11068,7 @@ msgstr ""
"\t\teth0, বা ক্যাবল সংযুক্তির জন্য eth1, \n"
"\t\tippp+ একটি isdn সংযুক্তির জন্য।\n"
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, fuzzy, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
@@ -11062,7 +11077,7 @@ msgstr ""
"%s\n"
"এবং mgmt.o-টি /usr/share/speedtouch-এ কপি করে দিন"
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -11074,47 +11089,47 @@ msgstr ""
"\n"
"আপনি http://eciadsl.flashtux.org/ থেকে ড্রাইভার পেতে পারেন"
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "%s প্যাকেজগুলি ইনস্টল করা গেলোনা!"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
"%s"
msgstr ""
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, fuzzy, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "আপনার সিস্টেম থেকে ফন্ট মুছে ফেলুন"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr ""
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "ফ্লপি প্রবেশ করান"
# বহু কথা বলতে হচ্ছে। ব্যবহারকারী হাঁফসে যাবে ;)
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -11123,12 +11138,12 @@ msgstr ""
"%s ড্রাইভে FAT ফরম্যাট করা একটি ফ্লপি প্রবেশ করান যার রুট ডিরেক্টরিতে %s আছে এবং %"
"s চাপুন"
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "ফ্লপি ব্যবহার করা যাচ্ছেনা, %s ডিভাইস মাউন্ট করা সম্ভব হয়নি"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -11139,38 +11154,38 @@ msgstr ""
"আপনি ফ্লপি দিয়ে বা উইন্ডোজ পার্টিশন থেকে এখন এটা সরবরাহ করতে পারেন,\n"
"বা পরে করার জন্য এখন উপেক্ষা করতে পারেন।"
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr "একটি ফ্লপি ব্যবহার করো"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr "আমার উইন্ডোজ পার্টিশন ব্যবহার করো"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr "ফার্মওয়্যার কপি ব্যার্থ হয়োছে, %s ফাইলটি পাওয়া যায়নি"
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "অভিনন্দন!"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr "ফার্মওয়্যার কপি সফল হয়েছে"
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, fuzzy, c-format
msgid "Please wait, running device configuration commands..."
msgstr "অনুগ্রহ করে অপেক্ষা করুন, ডিভাইসগুলি সনাক্ত এবং কনফিগার করা হচ্ছে..."
@@ -11265,7 +11280,7 @@ msgid "maybe"
msgstr "হয়তোবা"
# সাম
-#: pkgs.pm:473
+#: pkgs.pm:474
#, c-format
msgid "Downloading file %s..."
msgstr "%s ফাইল ডাউনলোড করা হচ্ছে..."
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index c55ccc4fd..a6e642983 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2005-12-04 12:48+0800\n"
+"POT-Creation-Date: 2005-12-08 21:52+0800\n"
"PO-Revision-Date: 2005-11-30 16:22+0100\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -62,7 +62,7 @@ msgid ""
"plug the key again, and launch Mandriva Move again."
msgstr ""
-#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1331
+#: ../move/move.pm:468 help.pm:409 install_steps_interactive.pm:1328
#, c-format
msgid "Reboot"
msgstr "Adlañsañ"
@@ -147,14 +147,14 @@ msgstr ""
#: network/ndiswrapper.pm:27 network/ndiswrapper.pm:42
#: network/ndiswrapper.pm:89 network/ndiswrapper.pm:101
#: network/netconnect.pm:838 network/netconnect.pm:867
-#: network/netconnect.pm:967 network/netconnect.pm:971
-#: network/netconnect.pm:975 network/netconnect.pm:980
-#: network/netconnect.pm:1125 network/netconnect.pm:1129
-#: network/netconnect.pm:1248 network/netconnect.pm:1253
-#: network/netconnect.pm:1273 network/netconnect.pm:1432
-#: network/thirdparty.pm:319 network/thirdparty.pm:326
-#: network/thirdparty.pm:370 network/thirdparty.pm:372
-#: network/thirdparty.pm:393 network/thirdparty.pm:417
+#: network/netconnect.pm:966 network/netconnect.pm:970
+#: network/netconnect.pm:974 network/netconnect.pm:979
+#: network/netconnect.pm:1124 network/netconnect.pm:1128
+#: network/netconnect.pm:1247 network/netconnect.pm:1252
+#: network/netconnect.pm:1272 network/netconnect.pm:1431
+#: network/thirdparty.pm:321 network/thirdparty.pm:328
+#: network/thirdparty.pm:372 network/thirdparty.pm:374
+#: network/thirdparty.pm:395 network/thirdparty.pm:419
#: printer/printerdrake.pm:244 printer/printerdrake.pm:251
#: printer/printerdrake.pm:276 printer/printerdrake.pm:422
#: printer/printerdrake.pm:427 printer/printerdrake.pm:440
@@ -434,7 +434,7 @@ msgid "Custom"
msgstr "Personelañ"
#: Xconfig/main.pm:127 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 install_steps_interactive.pm:1331
+#: install_steps_interactive.pm:86 install_steps_interactive.pm:1328
#: printer/printerdrake.pm:882 printer/printerdrake.pm:899
#: printer/printerdrake.pm:4523 printer/printerdrake.pm:4987
#: standalone/drakhosts:263 standalone/drakroam:230 standalone/draksplash:93
@@ -614,7 +614,7 @@ msgstr "Mat eo"
#: Xconfig/resolution_and_depth.pm:373 diskdrake/smbnfs_gtk.pm:80 help.pm:89
#: help.pm:444 install_steps_gtk.pm:455 install_steps_interactive.pm:431
-#: install_steps_interactive.pm:839 interactive.pm:120 interactive.pm:437
+#: install_steps_interactive.pm:836 interactive.pm:120 interactive.pm:437
#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
#: interactive/stdio.pm:39 interactive/stdio.pm:142
#: printer/printerdrake.pm:3859 standalone/drakautoinst:215
@@ -773,7 +773,7 @@ msgid ""
"other"
msgstr "hini all"
-#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:473
+#: any.pm:142 harddrake/sound.pm:192 interactive.pm:474 pkgs.pm:474
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:376
#: standalone/service_harddrake:208
@@ -1275,7 +1275,7 @@ msgstr "Implijit Unicode dre ziouer"
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:960
+#: any.pm:842 help.pm:566 help.pm:855 install_steps_interactive.pm:957
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
@@ -1307,7 +1307,7 @@ msgid "Input method:"
msgstr "Hentenn enkas :"
#: any.pm:858 install_any.pm:422 network/netconnect.pm:318
-#: network/netconnect.pm:323 network/netconnect.pm:1239 network/wireless.pm:7
+#: network/netconnect.pm:323 network/netconnect.pm:1238 network/wireless.pm:7
#: printer/printerdrake.pm:105
#, c-format
msgid "None"
@@ -2785,7 +2785,7 @@ msgstr "Ment : %s\n"
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: diskdrake/interactive.pm:1284 network/thirdparty.pm:329
+#: diskdrake/interactive.pm:1284 network/thirdparty.pm:331
#, c-format
msgid "Info: "
msgstr "Titouroù : "
@@ -2826,7 +2826,7 @@ msgstr ""
msgid "The encryption keys do not match"
msgstr "An alc'hwezoù enrinegadur ne glot ket"
-#: diskdrake/interactive.pm:1338 network/netconnect.pm:1075
+#: diskdrake/interactive.pm:1338 network/netconnect.pm:1074
#: standalone/drakconnect:419 standalone/drakroam:120
#, c-format
msgid "Encryption key"
@@ -2906,7 +2906,7 @@ msgstr "N'eo ket evit staliañ ar pakad %s !"
msgid "Mandatory package %s is missing"
msgstr "Mankout a ra ar pakad ret %s"
-#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1316
+#: do_pkgs.pm:35 harddrake/sound.pm:275 install_steps_interactive.pm:1313
#: keyboard.pm:388 network/ndiswrapper.pm:95 network/netconnect.pm:472
#: printer/printerdrake.pm:1416 printer/printerdrake.pm:2494
#: printer/printerdrake.pm:2609 printer/printerdrake.pm:2930
@@ -3313,7 +3313,7 @@ msgid "AGP controllers"
msgstr "Kartennoù AGP"
#: harddrake/data.pm:324 help.pm:186 help.pm:855
-#: install_steps_interactive.pm:992
+#: install_steps_interactive.pm:989
#, c-format
msgid "Printer"
msgstr "Moullerez"
@@ -3380,7 +3380,7 @@ msgid "Bridges and system controllers"
msgstr "Pontoù ha kontrolleroù ar reizhiad"
#: harddrake/data.pm:449 help.pm:855 install_steps_interactive.pm:119
-#: install_steps_interactive.pm:952 standalone/finish-install:37
+#: install_steps_interactive.pm:949 standalone/finish-install:37
#: standalone/keyboarddrake:29
#, c-format
msgid "Keyboard"
@@ -3391,7 +3391,7 @@ msgstr "Stokellaoueg"
msgid "Tablet and touchscreen"
msgstr "Tablezenn ha skramm stekiñ"
-#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:985
+#: harddrake/data.pm:471 help.pm:855 install_steps_interactive.pm:982
#, c-format
msgid "Mouse"
msgstr "Logodenn"
@@ -3718,7 +3718,7 @@ msgstr "Anv arveriad"
#: help.pm:51 help.pm:431 help.pm:681 install_steps_gtk.pm:237
#: install_steps_gtk.pm:682 interactive.pm:436 interactive/newt.pm:321
-#: network/thirdparty.pm:383 printer/printerdrake.pm:3861
+#: network/thirdparty.pm:385 printer/printerdrake.pm:3861
#: standalone/drakTermServ:384 standalone/drakbackup:4074
#: standalone/drakbackup:4168 standalone/drakbackup:4185
#: standalone/drakbackup:4203 ugtk2.pm:490
@@ -3998,7 +3998,7 @@ msgid ""
"server which can be used by other machines on your local network as well."
msgstr ""
-#: help.pm:217 install_steps_interactive.pm:887
+#: help.pm:217 install_steps_interactive.pm:884
#, c-format
msgid "Hardware clock set to GMT"
msgstr "War GMT eo an eurier periantel"
@@ -4261,17 +4261,17 @@ msgstr ""
msgid "Generate auto-install floppy"
msgstr "Krouiñ ur bladennig staliañ emgefreek"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Replay"
msgstr "Adseniñ"
-#: help.pm:409 install_steps_interactive.pm:1342
+#: help.pm:409 install_steps_interactive.pm:1339
#, c-format
msgid "Automated"
msgstr "Emgefreek"
-#: help.pm:409 install_steps_interactive.pm:1345
+#: help.pm:409 install_steps_interactive.pm:1342
#, c-format
msgid "Save packages selection"
msgstr "Enrollañ diuzadenn an pakadoù"
@@ -4776,8 +4776,8 @@ msgid ""
"system, you can click on the button and choose a different driver."
msgstr ""
-#: help.pm:788 help.pm:855 install_steps_interactive.pm:1019
-#: install_steps_interactive.pm:1036
+#: help.pm:788 help.pm:855 install_steps_interactive.pm:1016
+#: install_steps_interactive.pm:1033
#, c-format
msgid "Sound card"
msgstr "Kartenn gwelet"
@@ -4853,13 +4853,13 @@ msgid ""
"idea to review this setup."
msgstr ""
-#: help.pm:855 install_steps_interactive.pm:883
-#: install_steps_interactive.pm:978 standalone/drakclock:100
+#: help.pm:855 install_steps_interactive.pm:880
+#: install_steps_interactive.pm:975 standalone/drakclock:100
#, c-format
msgid "Timezone"
msgstr "Takad-eur"
-#: help.pm:855 install_steps_interactive.pm:1052
+#: help.pm:855 install_steps_interactive.pm:1049
#, c-format
msgid "TV card"
msgstr "Kartenn pellwel"
@@ -4874,33 +4874,33 @@ msgstr "Kartenn ISDN"
msgid "Graphical Interface"
msgstr "Ketal Kevregañ"
-#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1070
+#: help.pm:855 install_any.pm:1733 install_steps_interactive.pm:1067
#: standalone/drakbackup:2040
#, c-format
msgid "Network"
msgstr "Rouedad"
-#: help.pm:855 install_steps_interactive.pm:1082
+#: help.pm:855 install_steps_interactive.pm:1079
#, c-format
msgid "Proxies"
msgstr "Proksioù"
-#: help.pm:855 install_steps_interactive.pm:1093
+#: help.pm:855 install_steps_interactive.pm:1090
#, c-format
msgid "Security Level"
msgstr "Live an surentez"
-#: help.pm:855 install_steps_interactive.pm:1107 network/drakfirewall.pm:189
+#: help.pm:855 install_steps_interactive.pm:1104 network/drakfirewall.pm:189
#, c-format
msgid "Firewall"
msgstr "Moger tan"
-#: help.pm:855 install_steps_interactive.pm:1123
+#: help.pm:855 install_steps_interactive.pm:1120
#, c-format
msgid "Bootloader"
msgstr "C'harger loc'hañ"
-#: help.pm:855 install_steps_interactive.pm:1136 services.pm:114
+#: help.pm:855 install_steps_interactive.pm:1133 services.pm:114
#: services.pm:157 services.pm:193
#, c-format
msgid "Services"
@@ -5680,7 +5680,7 @@ msgstr "Talvoudegezh : "
msgid "You can not select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
-#: install_steps_gtk.pm:340 network/thirdparty.pm:329
+#: install_steps_gtk.pm:340 network/thirdparty.pm:331
#, c-format
msgid "due to missing %s"
msgstr "peogwir %s zo manket"
@@ -5829,13 +5829,13 @@ msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: install_steps_gtk.pm:582 install_steps_interactive.pm:938 steps.pm:30
+#: install_steps_gtk.pm:582 install_steps_interactive.pm:935 steps.pm:30
#, c-format
msgid "Summary"
msgstr "Evit diverriñ"
-#: install_steps_gtk.pm:605 install_steps_interactive.pm:934
-#: install_steps_interactive.pm:1083
+#: install_steps_gtk.pm:605 install_steps_interactive.pm:931
+#: install_steps_interactive.pm:1080
#, c-format
msgid "not configured"
msgstr "n'eo ket kefluniet"
@@ -6019,7 +6019,7 @@ msgstr "Emaon o klask ar pakadoù hegerz hag adsevel ar stlennvon rpm ..."
msgid "Looking for available packages..."
msgstr "Emaon o klask ar pakadoù hegerz ..."
-#: install_steps_interactive.pm:430 install_steps_interactive.pm:838
+#: install_steps_interactive.pm:430 install_steps_interactive.pm:835
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
@@ -6127,12 +6127,12 @@ msgstr "Kefluniadur goude staliañ"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: install_steps_interactive.pm:811
+#: install_steps_interactive.pm:808
#, c-format
msgid "Updates"
msgstr "Bremañaat"
-#: install_steps_interactive.pm:812
+#: install_steps_interactive.pm:809
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -6152,7 +6152,7 @@ msgstr ""
"\n"
"Mennout a rit staliañ anezho ?"
-#: install_steps_interactive.pm:833
+#: install_steps_interactive.pm:830
#, c-format
msgid ""
"Contacting Mandriva Linux web site to get the list of available mirrors..."
@@ -6160,67 +6160,67 @@ msgstr ""
"O taremprediñ al lec'hienn Mandriva Linux evit kaout roll ar pakadoù "
"hegerz ..."
-#: install_steps_interactive.pm:852
+#: install_steps_interactive.pm:849
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz ..."
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Unable to contact mirror %s"
msgstr "Ne m'eus ket daremprediñ ar melezour %s"
-#: install_steps_interactive.pm:856
+#: install_steps_interactive.pm:853
#, c-format
msgid "Would you like to try again?"
msgstr "Mennout a rit klask adarre ?"
-#: install_steps_interactive.pm:883 standalone/drakclock:45
+#: install_steps_interactive.pm:880 standalone/drakclock:45
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: install_steps_interactive.pm:888
+#: install_steps_interactive.pm:885
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: install_steps_interactive.pm:896
+#: install_steps_interactive.pm:893
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"
-#: install_steps_interactive.pm:951 install_steps_interactive.pm:959
-#: install_steps_interactive.pm:977 install_steps_interactive.pm:984
-#: install_steps_interactive.pm:1135 services.pm:133
+#: install_steps_interactive.pm:948 install_steps_interactive.pm:956
+#: install_steps_interactive.pm:974 install_steps_interactive.pm:981
+#: install_steps_interactive.pm:1132 services.pm:133
#: standalone/drakbackup:1585
#, c-format
msgid "System"
msgstr "Reizhiad"
-#: install_steps_interactive.pm:991 install_steps_interactive.pm:1018
-#: install_steps_interactive.pm:1035 install_steps_interactive.pm:1051
-#: install_steps_interactive.pm:1062
+#: install_steps_interactive.pm:988 install_steps_interactive.pm:1015
+#: install_steps_interactive.pm:1032 install_steps_interactive.pm:1048
+#: install_steps_interactive.pm:1059
#, c-format
msgid "Hardware"
msgstr "Periantel"
-#: install_steps_interactive.pm:997 install_steps_interactive.pm:1006
+#: install_steps_interactive.pm:994 install_steps_interactive.pm:1003
#, c-format
msgid "Remote CUPS server"
msgstr "Servijer CUPS a-bell"
-#: install_steps_interactive.pm:997
+#: install_steps_interactive.pm:994
#, c-format
msgid "No printer"
msgstr "Moullerez ebet"
-#: install_steps_interactive.pm:1039
+#: install_steps_interactive.pm:1036
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Hag ur gartenn gwelet ISA hoc'h eus ?"
-#: install_steps_interactive.pm:1041
+#: install_steps_interactive.pm:1038
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -6229,70 +6229,70 @@ msgstr ""
"Seveniñ « alsaconf » pe « sndconfig » goude staliañ evit kefluniañ ho "
"kartenn klevet"
-#: install_steps_interactive.pm:1043
+#: install_steps_interactive.pm:1040
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"N'eus kartenn gwelet kavet ebet. Kargañ « harddrake » goude ar staliadur"
-#: install_steps_interactive.pm:1063
+#: install_steps_interactive.pm:1060
#, c-format
msgid "Graphical interface"
msgstr "Ketal kevregañ"
-#: install_steps_interactive.pm:1069 install_steps_interactive.pm:1081
+#: install_steps_interactive.pm:1066 install_steps_interactive.pm:1078
#, c-format
msgid "Network & Internet"
msgstr "Rouedad hag Internet"
-#: install_steps_interactive.pm:1083
+#: install_steps_interactive.pm:1080
#, c-format
msgid "configured"
msgstr "kefluniet"
-#: install_steps_interactive.pm:1092 install_steps_interactive.pm:1106
+#: install_steps_interactive.pm:1089 install_steps_interactive.pm:1103
#: security/level.pm:55 steps.pm:20
#, c-format
msgid "Security"
msgstr "Diogelroez"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "activated"
msgstr "bevaatet"
-#: install_steps_interactive.pm:1111
+#: install_steps_interactive.pm:1108
#, c-format
msgid "disabled"
msgstr "diweredekaet"
-#: install_steps_interactive.pm:1122
+#: install_steps_interactive.pm:1119
#, c-format
msgid "Boot"
msgstr "Lañsañ"
#. -PO: example: lilo-graphic on /dev/hda1
-#: install_steps_interactive.pm:1126 printer/printerdrake.pm:961
+#: install_steps_interactive.pm:1123 printer/printerdrake.pm:961
#, c-format
msgid "%s on %s"
msgstr "%s war %s"
-#: install_steps_interactive.pm:1140 services.pm:175
+#: install_steps_interactive.pm:1137 services.pm:175
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Servijoù : %d bev diwar %d enskrivet"
-#: install_steps_interactive.pm:1152
+#: install_steps_interactive.pm:1149
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "N'eo ket kefluniet X. Ha fellout a ra deoc'h da vat ober an dra-mañ ?"
-#: install_steps_interactive.pm:1233
+#: install_steps_interactive.pm:1230
#, c-format
msgid "Preparing bootloader..."
msgstr "O prientiñ ar c'harger loc'hañ ..."
-#: install_steps_interactive.pm:1243
+#: install_steps_interactive.pm:1240
#, c-format
msgid ""
"You appear to have an OldWorld or Unknown machine, the yaboot bootloader "
@@ -6301,12 +6301,12 @@ msgid ""
"root fs is: root=%s"
msgstr ""
-#: install_steps_interactive.pm:1249
+#: install_steps_interactive.pm:1246
#, c-format
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot ?"
-#: install_steps_interactive.pm:1252
+#: install_steps_interactive.pm:1249
#, c-format
msgid ""
"Error installing aboot, \n"
@@ -6315,29 +6315,29 @@ msgstr ""
"Fazi en ur staliañ aboot,\n"
"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-#: install_steps_interactive.pm:1269
+#: install_steps_interactive.pm:1266
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: install_steps_interactive.pm:1298 standalone/drakautoinst:76
+#: install_steps_interactive.pm:1295 standalone/drakautoinst:76
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: install_steps_interactive.pm:1303
+#: install_steps_interactive.pm:1300
#, c-format
msgid "Please insert another floppy for drivers disk"
msgstr "Lakait ur bladennig all evit sturieroù el lenner"
-#: install_steps_interactive.pm:1305
+#: install_steps_interactive.pm:1302
#, c-format
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek ..."
-#: install_steps_interactive.pm:1317
+#: install_steps_interactive.pm:1314
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -6348,19 +6348,19 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremañ ?"
-#: install_steps_interactive.pm:1327 standalone/draksambashare:422
+#: install_steps_interactive.pm:1324 standalone/draksambashare:422
#: standalone/draksambashare:529 standalone/drakups:120 standalone/drakups:159
#: standalone/logdrake:452 standalone/logdrake:458
#, c-format
msgid "Congratulations"
msgstr "Brav !"
-#: install_steps_interactive.pm:1335 install_steps_interactive.pm:1336
+#: install_steps_interactive.pm:1332 install_steps_interactive.pm:1333
#, c-format
msgid "Generate auto install floppy"
msgstr "Krouiñ ur bladennig staliañ emgefreek"
-#: install_steps_interactive.pm:1337
+#: install_steps_interactive.pm:1334
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
@@ -9126,7 +9126,7 @@ msgstr ""
msgid "unknown"
msgstr "anavez"
-#: network/netconnect.pm:120 network/thirdparty.pm:219
+#: network/netconnect.pm:120 network/thirdparty.pm:220
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "Modem Alcatel speedtouch USB"
@@ -9376,7 +9376,7 @@ msgid "Use BPALogin (needed for Telstra)"
msgstr "Implij BPALogin (red eo evit Telstra)"
#: network/netconnect.pm:349 network/netconnect.pm:671
-#: network/netconnect.pm:827 network/netconnect.pm:1172
+#: network/netconnect.pm:827 network/netconnect.pm:1171
#, c-format
msgid "Select the network interface to configure:"
msgstr "Dibabit an etrefas rouedad a kefluniañ :"
@@ -9530,7 +9530,7 @@ msgstr "Sifrennañ : Dibarzhoù IP"
msgid "IP parameters"
msgstr "Kefluniadur IP"
-#: network/netconnect.pm:603 network/netconnect.pm:943
+#: network/netconnect.pm:603 network/netconnect.pm:942
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:882
#: standalone/drakhosts:197 standalone/drakroam:122 standalone/drakups:286
@@ -9634,24 +9634,24 @@ msgstr "Assevel-dorn ur sturier"
msgid "Use a Windows driver (with ndiswrapper)"
msgstr "Implijit ur sturier Windows (gant ndiswrapper)"
-#: network/netconnect.pm:898
+#: network/netconnect.pm:897
#, c-format
msgid "Zeroconf hostname resolution"
msgstr ""
-#: network/netconnect.pm:899 network/netconnect.pm:930
+#: network/netconnect.pm:898 network/netconnect.pm:929
#, c-format
msgid "Configuring network device %s (driver %s)"
msgstr "O kefluniañ an drobarzhell rouedad %s (sturier : %s)"
-#: network/netconnect.pm:900
+#: network/netconnect.pm:899
#, c-format
msgid ""
"The following protocols can be used to configure a LAN connection. Please "
"choose the one you want to use"
msgstr ""
-#: network/netconnect.pm:931
+#: network/netconnect.pm:930
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
@@ -9662,198 +9662,198 @@ msgstr ""
"Pep mellad a zlefe bezañ skrivet evel ur chomlec'h IP e stumm\n"
"sifroù dekvel pikoù etrezo (da skouer 1.2.3.4)."
-#: network/netconnect.pm:938 standalone/drakconnect:373
+#: network/netconnect.pm:937 standalone/drakconnect:373
#, c-format
msgid "Assign host name from DHCP address"
msgstr "Adtapout an anv ostiz eus ar chomlec'h DHCP"
-#: network/netconnect.pm:939 standalone/drakconnect:375
+#: network/netconnect.pm:938 standalone/drakconnect:375
#, c-format
msgid "DHCP host name"
msgstr "Anv ostiz DHCP"
-#: network/netconnect.pm:944 standalone/drakconnect:321
+#: network/netconnect.pm:943 standalone/drakconnect:321
#: standalone/drakconnect:883 standalone/drakgw:181
#, c-format
msgid "Netmask"
msgstr "Maskl rouedad"
-#: network/netconnect.pm:946 standalone/drakconnect:437
+#: network/netconnect.pm:945 standalone/drakconnect:437
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: network/netconnect.pm:947 standalone/drakconnect:438
+#: network/netconnect.pm:946 standalone/drakconnect:438
#, c-format
msgid "Network Hotplugging"
msgstr ""
-#: network/netconnect.pm:949 standalone/drakconnect:432
+#: network/netconnect.pm:948 standalone/drakconnect:432
#, c-format
msgid "Start at boot"
msgstr "Loc'hañ pa loc'hañ an urzhiataer"
-#: network/netconnect.pm:951 standalone/drakconnect:460
+#: network/netconnect.pm:950 standalone/drakconnect:460
#, c-format
msgid "Metric"
msgstr "Metrik"
-#: network/netconnect.pm:952
+#: network/netconnect.pm:951
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr "Bevaat an hent-riboul IPv6 dre IPv4"
-#: network/netconnect.pm:954 standalone/drakconnect:369
+#: network/netconnect.pm:953 standalone/drakconnect:369
#: standalone/drakconnect:886
#, c-format
msgid "DHCP client"
msgstr "Kliant DHCP"
-#: network/netconnect.pm:956 standalone/drakconnect:379
+#: network/netconnect.pm:955 standalone/drakconnect:379
#, c-format
msgid "DHCP timeout (in seconds)"
msgstr "Amzer-hont DHCP (eil)"
-#: network/netconnect.pm:957 standalone/drakconnect:382
+#: network/netconnect.pm:956 standalone/drakconnect:382
#, c-format
msgid "Get DNS servers from DHCP"
msgstr "Adtapout ar servijerien DNS eus DHCP"
-#: network/netconnect.pm:958 standalone/drakconnect:383
+#: network/netconnect.pm:957 standalone/drakconnect:383
#, c-format
msgid "Get YP servers from DHCP"
msgstr "Adtapout ar servijerien YP eus DHCP"
-#: network/netconnect.pm:959 standalone/drakconnect:384
+#: network/netconnect.pm:958 standalone/drakconnect:384
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr "Adtapout ar servijerien NTPD eus DHCP"
-#: network/netconnect.pm:967 printer/printerdrake.pm:1876
+#: network/netconnect.pm:966 printer/printerdrake.pm:1876
#: standalone/drakconnect:676
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: network/netconnect.pm:971 standalone/drakconnect:680
+#: network/netconnect.pm:970 standalone/drakconnect:680
#, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "Er furmad 255.255.224.0 e tlefe bezañ ar maskl rouedad"
-#: network/netconnect.pm:975
+#: network/netconnect.pm:974
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "Diwallit : strizh eo ar chomlec'h IP %s boazamant !"
-#: network/netconnect.pm:980 standalone/drakTermServ:1856
+#: network/netconnect.pm:979 standalone/drakTermServ:1856
#: standalone/drakTermServ:1857 standalone/drakTermServ:1858
#, c-format
msgid "%s already in use\n"
msgstr "implijet eo %s c'hoazh\n"
-#: network/netconnect.pm:1020
+#: network/netconnect.pm:1019
#, c-format
msgid "Choose an ndiswrapper driver"
msgstr "Dibabit ur sturier ndiswrapper"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Use the ndiswrapper driver %s"
msgstr "Implijit ar sturier ndiswrapper %s"
-#: network/netconnect.pm:1022
+#: network/netconnect.pm:1021
#, c-format
msgid "Install a new driver"
msgstr "Staliañ ur sturier nevez"
-#: network/netconnect.pm:1034
+#: network/netconnect.pm:1033
#, c-format
msgid "Select a device:"
msgstr "Dibabit un drobarzhell :"
-#: network/netconnect.pm:1063
+#: network/netconnect.pm:1062
#, c-format
msgid "Please enter the wireless parameters for this card:"
msgstr "Roit an dibarzhoù ar gartenn-hep-neud-mañ mar plij :"
-#: network/netconnect.pm:1066 standalone/drakconnect:404
+#: network/netconnect.pm:1065 standalone/drakconnect:404
#: standalone/drakroam:52
#, c-format
msgid "Operating Mode"
msgstr "Mod labour"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Ad-hoc"
msgstr ""
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Managed"
msgstr "Meret"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Master"
msgstr "Mestr"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Repeater"
msgstr "Adkaser"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Secondary"
msgstr "Eil derez"
-#: network/netconnect.pm:1067
+#: network/netconnect.pm:1066
#, c-format
msgid "Auto"
msgstr "Emgefreek"
-#: network/netconnect.pm:1070 standalone/drakconnect:405
+#: network/netconnect.pm:1069 standalone/drakconnect:405
#: standalone/drakroam:115
#, c-format
msgid "Network name (ESSID)"
msgstr "Anv ar rouedad (ESSID)"
-#: network/netconnect.pm:1071 standalone/drakroam:116
+#: network/netconnect.pm:1070 standalone/drakroam:116
#, c-format
msgid "Encryption mode"
msgstr "Mod enrinegadur"
-#: network/netconnect.pm:1076
+#: network/netconnect.pm:1075
#, c-format
msgid "Allow access point roaming"
msgstr "Aotreañ ar c'hevreadennoù baleantour"
-#: network/netconnect.pm:1078 standalone/drakconnect:406
+#: network/netconnect.pm:1077 standalone/drakconnect:406
#, c-format
msgid "Network ID"
msgstr "Niv ar rouedad"
-#: network/netconnect.pm:1079 standalone/drakconnect:407
+#: network/netconnect.pm:1078 standalone/drakconnect:407
#, c-format
msgid "Operating frequency"
msgstr "Frekañs labour"
-#: network/netconnect.pm:1080 standalone/drakconnect:408
+#: network/netconnect.pm:1079 standalone/drakconnect:408
#, c-format
msgid "Sensitivity threshold"
msgstr ""
-#: network/netconnect.pm:1081 standalone/drakconnect:409
+#: network/netconnect.pm:1080 standalone/drakconnect:409
#, c-format
msgid "Bitrate (in b/s)"
msgstr "Feur (bit/e)"
-#: network/netconnect.pm:1082 standalone/drakconnect:420
+#: network/netconnect.pm:1081 standalone/drakconnect:420
#, c-format
msgid "RTS/CTS"
msgstr "RTS/CTS"
-#: network/netconnect.pm:1083
+#: network/netconnect.pm:1082
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
@@ -9867,17 +9867,17 @@ msgid ""
"or off."
msgstr ""
-#: network/netconnect.pm:1090 standalone/drakconnect:421
+#: network/netconnect.pm:1089 standalone/drakconnect:421
#, c-format
msgid "Fragmentation"
msgstr ""
-#: network/netconnect.pm:1091 standalone/drakconnect:422
+#: network/netconnect.pm:1090 standalone/drakconnect:422
#, c-format
msgid "iwconfig command extra arguments"
msgstr "arventennoù ouzhpenn an urzhiad iwconfig"
-#: network/netconnect.pm:1092
+#: network/netconnect.pm:1091
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
@@ -9888,12 +9888,12 @@ msgid ""
msgstr ""
#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
-#: network/netconnect.pm:1099 standalone/drakconnect:423
+#: network/netconnect.pm:1098 standalone/drakconnect:423
#, c-format
msgid "iwspy command extra arguments"
msgstr "arventennoù ouzhpenn an urzhiad iwspy"
-#: network/netconnect.pm:1100
+#: network/netconnect.pm:1099
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
@@ -9905,12 +9905,12 @@ msgid ""
"See iwpspy(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1109 standalone/drakconnect:424
+#: network/netconnect.pm:1108 standalone/drakconnect:424
#, c-format
msgid "iwpriv command extra arguments"
msgstr "arventennoù ouzhpenn an urzhiad iwpriv"
-#: network/netconnect.pm:1110
+#: network/netconnect.pm:1109
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
@@ -9928,51 +9928,51 @@ msgid ""
"See iwpriv(8) man page for further information."
msgstr ""
-#: network/netconnect.pm:1125
+#: network/netconnect.pm:1124
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1129
+#: network/netconnect.pm:1128
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
-#: network/netconnect.pm:1172
+#: network/netconnect.pm:1171
#, c-format
msgid "DVB configuration"
msgstr "Kefluniadur DVB"
-#: network/netconnect.pm:1173
+#: network/netconnect.pm:1172
#, c-format
msgid "DVB Adapter"
msgstr "Kartenn DVB"
-#: network/netconnect.pm:1190
+#: network/netconnect.pm:1189
#, c-format
msgid "DVB adapter settings"
msgstr "Kefluniadur ar gartenn DVB"
-#: network/netconnect.pm:1193
+#: network/netconnect.pm:1192
#, c-format
msgid "Adapter card"
msgstr ""
-#: network/netconnect.pm:1194
+#: network/netconnect.pm:1193
#, c-format
msgid "Net demux"
msgstr "Net demux"
-#: network/netconnect.pm:1195
+#: network/netconnect.pm:1194
#, c-format
msgid "PID"
msgstr "PID"
-#: network/netconnect.pm:1223
+#: network/netconnect.pm:1222
#, c-format
msgid ""
"Please enter your host name.\n"
@@ -9985,67 +9985,67 @@ msgstr ""
"evel « mabenveg.mastal.makomp.com ».\n"
"Gallout a rit ivez reiñ chomlec'h IP an dreuzell m'hoc'h eus unan."
-#: network/netconnect.pm:1228
+#: network/netconnect.pm:1227
#, c-format
msgid "Last but not least you can also type in your DNS server IP addresses."
msgstr ""
-#: network/netconnect.pm:1230 standalone/drakconnect:991
+#: network/netconnect.pm:1229 standalone/drakconnect:991
#, c-format
msgid "Host name (optional)"
msgstr "Anv ostiz (diret)"
-#: network/netconnect.pm:1230 standalone/drakhosts:197
+#: network/netconnect.pm:1229 standalone/drakhosts:197
#, c-format
msgid "Host name"
msgstr "Anv an ostiz"
-#: network/netconnect.pm:1232
+#: network/netconnect.pm:1231
#, c-format
msgid "DNS server 1"
msgstr "Servijer DNS 1"
-#: network/netconnect.pm:1233
+#: network/netconnect.pm:1232
#, c-format
msgid "DNS server 2"
msgstr "Servijer DNS 2"
-#: network/netconnect.pm:1234
+#: network/netconnect.pm:1233
#, c-format
msgid "DNS server 3"
msgstr "Servijer DNS 3"
-#: network/netconnect.pm:1235
+#: network/netconnect.pm:1234
#, c-format
msgid "Search domain"
msgstr "Domani glask"
-#: network/netconnect.pm:1236
+#: network/netconnect.pm:1235
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
-#: network/netconnect.pm:1237
+#: network/netconnect.pm:1236
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Treuzell (ex : %s)"
-#: network/netconnect.pm:1239
+#: network/netconnect.pm:1238
#, c-format
msgid "Gateway device"
msgstr "Trobarzhell an dreuzell"
-#: network/netconnect.pm:1248
+#: network/netconnect.pm:1247
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ chomlec'h ar servijer DNS"
-#: network/netconnect.pm:1253 standalone/drakconnect:685
+#: network/netconnect.pm:1252 standalone/drakconnect:685
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ chomlec'h ar dreuzell"
-#: network/netconnect.pm:1266
+#: network/netconnect.pm:1265
#, c-format
msgid ""
"If desired, enter a Zeroconf hostname.\n"
@@ -10054,67 +10054,67 @@ msgid ""
"It is not necessary on most networks."
msgstr ""
-#: network/netconnect.pm:1270
+#: network/netconnect.pm:1269
#, c-format
msgid "Zeroconf Host name"
msgstr "Anv ostiz Zeroconf"
-#: network/netconnect.pm:1273
+#: network/netconnect.pm:1272
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: network/netconnect.pm:1283
+#: network/netconnect.pm:1282
#, c-format
msgid "Do you want to allow users to start the connection?"
msgstr "Mennout a rit aotreañ an dud da lañsañ ar gevreadenn ?"
-#: network/netconnect.pm:1296
+#: network/netconnect.pm:1295
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "Mennout a rit lañsañ ar gevradenn pa loc'hañ ?"
-#: network/netconnect.pm:1312
+#: network/netconnect.pm:1311
#, c-format
msgid "Automatically at boot"
msgstr "Ent emgefreek pa loc'ho"
-#: network/netconnect.pm:1314
+#: network/netconnect.pm:1313
#, c-format
msgid "By using Net Applet in the system tray"
msgstr "Dre implig an arloadig rouedad e barlenn ar reizhiad"
-#: network/netconnect.pm:1316
+#: network/netconnect.pm:1315
#, c-format
msgid "Manually (the interface would still be activated at boot)"
msgstr ""
-#: network/netconnect.pm:1325
+#: network/netconnect.pm:1324
#, c-format
msgid "How do you want to dial this connection?"
msgstr "Peanos mennit o sifrennañ ar gevradenn-mañ ?"
-#: network/netconnect.pm:1338
+#: network/netconnect.pm:1337
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "Fellout a ra deoc'h klask da gevreañ ouzh an Internet bremañ ?"
-#: network/netconnect.pm:1346 standalone/drakconnect:1023
+#: network/netconnect.pm:1345 standalone/drakconnect:1023
#, c-format
msgid "Testing your connection..."
msgstr "O klask da lakaat ho gevradenn ..."
-#: network/netconnect.pm:1371
+#: network/netconnect.pm:1370
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Kevreet ouzh an Internet eo ho reizhiad bremañ."
-#: network/netconnect.pm:1372
+#: network/netconnect.pm:1371
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: network/netconnect.pm:1373
+#: network/netconnect.pm:1372
#, c-format
msgid ""
"The system does not seem to be connected to the Internet.\n"
@@ -10123,7 +10123,7 @@ msgstr ""
"N'eo ket war ar reizhiad ar stumm da gevreañ ouzh internet.\n"
"Klaskit adgefluniañ ho gevreadenn."
-#: network/netconnect.pm:1388
+#: network/netconnect.pm:1387
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
@@ -10132,14 +10132,14 @@ msgstr ""
"Gourc'hemennoù, echu eo kefluniadur ar rouedad hag internet.\n"
"\n"
-#: network/netconnect.pm:1391
+#: network/netconnect.pm:1390
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: network/netconnect.pm:1392
+#: network/netconnect.pm:1391
#, c-format
msgid ""
"Problems occurred during configuration.\n"
@@ -10147,28 +10147,28 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: network/netconnect.pm:1403
+#: network/netconnect.pm:1402
#, c-format
msgid "(detected on port %s)"
msgstr "(kavet war ar porzh %s)"
#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected %s)"
msgstr "(kavet %s)"
-#: network/netconnect.pm:1405
+#: network/netconnect.pm:1404
#, c-format
msgid "(detected)"
msgstr "(kavet)"
-#: network/netconnect.pm:1406
+#: network/netconnect.pm:1405
#, c-format
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"
-#: network/netconnect.pm:1407
+#: network/netconnect.pm:1406
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
@@ -10177,13 +10177,13 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: network/netconnect.pm:1410
+#: network/netconnect.pm:1409
#, c-format
msgid "The network needs to be restarted. Do you want to restart it?"
msgstr ""
"Red eo da adloc'hañ ar rouedad. Fellout a ra deoc'h adloc'hañ anezhañ ?"
-#: network/netconnect.pm:1411
+#: network/netconnect.pm:1410
#, c-format
msgid ""
"A problem occurred while restarting the network: \n"
@@ -10194,7 +10194,7 @@ msgstr ""
"\n"
"%s"
-#: network/netconnect.pm:1412
+#: network/netconnect.pm:1411
#, c-format
msgid ""
"We are now going to configure the %s connection.\n"
@@ -10207,13 +10207,13 @@ msgstr ""
"\n"
"gwaskit « %s » evit kendelc'her"
-#: network/netconnect.pm:1413
+#: network/netconnect.pm:1412
#, c-format
msgid "Configuration is complete, do you want to apply settings?"
msgstr ""
"Echu eo ar gefluniadur, Ha fellout a ra deoc'h da arloañ ar gefluniadur-mañ ?"
-#: network/netconnect.pm:1414
+#: network/netconnect.pm:1413
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
@@ -10221,12 +10221,12 @@ msgid ""
"\n"
msgstr ""
-#: network/netconnect.pm:1415
+#: network/netconnect.pm:1414
#, c-format
msgid "Internet connection"
msgstr "Kevreadenn ouzh an internet"
-#: network/netconnect.pm:1432
+#: network/netconnect.pm:1431
#, c-format
msgid ""
"An unexpected error has happened:\n"
@@ -10235,12 +10235,12 @@ msgstr ""
"Degouezhet ez eus ur fazi dic'hortoz :\n"
"%s"
-#: network/network.pm:410
+#: network/network.pm:411
#, c-format
msgid "Proxies configuration"
msgstr "Kefluniadur proksioù"
-#: network/network.pm:411
+#: network/network.pm:412
#, c-format
msgid ""
"Here you can set up your proxies configuration (eg: http://"
@@ -10249,22 +10249,37 @@ msgstr ""
"Amañ e c'hellit kefluniañ ho prokis (da skouer http://"
"ma_servijer_krubuilh:8080) "
-#: network/network.pm:412
+#: network/network.pm:413
#, c-format
msgid "HTTP proxy"
msgstr "Proksi HTTP"
-#: network/network.pm:413
+#: network/network.pm:414
+#, c-format
+msgid "Use HTTP proxy for HTTPS connections"
+msgstr ""
+
+#: network/network.pm:415
+#, c-format
+msgid "HTTPS proxy"
+msgstr ""
+
+#: network/network.pm:416
#, c-format
msgid "FTP proxy"
msgstr "Proksi FTP"
-#: network/network.pm:416
+#: network/network.pm:420
#, c-format
msgid "Proxy should be http://..."
msgstr "http://... a zlefe bezañ ar proksi"
-#: network/network.pm:417
+#: network/network.pm:421
+#, c-format
+msgid "Proxy should be https?://..."
+msgstr ""
+
+#: network/network.pm:422
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "« http: » pe « ftp: » a zlefe bezañ ar proksi"
@@ -10286,12 +10301,12 @@ msgstr ""
"\t\teth0 pe eth1 evit ur gevreadenn gant ur fun,\n"
"\t\tippp+ evit ur gevreadenn ISDN.\n"
-#: network/thirdparty.pm:231
+#: network/thirdparty.pm:232
#, c-format
msgid "Copy the Alcatel microcode as mgmt.o in /usr/share/speedtouch/"
msgstr ""
-#: network/thirdparty.pm:240
+#: network/thirdparty.pm:241
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
@@ -10300,24 +10315,24 @@ msgid ""
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
-#: network/thirdparty.pm:319
+#: network/thirdparty.pm:321
#, c-format
msgid "Could not install the packages (%s)!"
msgstr "Ne m'eus ket staliañ ar pakadoù (%s) !"
-#: network/thirdparty.pm:327
+#: network/thirdparty.pm:329
#, c-format
msgid "Some packages (%s) are required but aren't available."
msgstr ""
-#: network/thirdparty.pm:328
+#: network/thirdparty.pm:330
#, c-format
msgid ""
"These packages can be found in Mandriva Club or in Mandriva commercial "
"releases."
msgstr ""
-#: network/thirdparty.pm:330
+#: network/thirdparty.pm:332
#, c-format
msgid ""
"The required files can also be installed from this URL:\n"
@@ -10326,22 +10341,22 @@ msgstr ""
"Moien zo da staliañ ar restroù red digant an URL-mañ :\n"
"%s"
-#: network/thirdparty.pm:370
+#: network/thirdparty.pm:372
#, c-format
msgid "Unable to find \"%s\" on your Windows system!"
msgstr "Ne m'eus ket bet kavout « %s » war ho reizhiad Windows !"
-#: network/thirdparty.pm:372
+#: network/thirdparty.pm:374
#, c-format
msgid "No Windows system has been detected!"
msgstr "Ne m'eus ket reizhiad Windows dinoet ebet !"
-#: network/thirdparty.pm:382
+#: network/thirdparty.pm:384
#, c-format
msgid "Insert floppy"
msgstr "Lakait ur bladennig"
-#: network/thirdparty.pm:383
+#: network/thirdparty.pm:385
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -10350,12 +10365,12 @@ msgstr ""
"Lakait ur bladennig el lenner %s gant %s er renkell gwrizienn ha neuze "
"gwaskit « %s »"
-#: network/thirdparty.pm:393
+#: network/thirdparty.pm:395
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Fazi moned ouzh ar bladennig, ne m'eus ket mountañ an drobarzhell %s"
-#: network/thirdparty.pm:403
+#: network/thirdparty.pm:405
#, c-format
msgid ""
"You need the Alcatel microcode.\n"
@@ -10363,38 +10378,38 @@ msgid ""
"or skip and do it later."
msgstr ""
-#: network/thirdparty.pm:407 network/thirdparty.pm:409
+#: network/thirdparty.pm:409 network/thirdparty.pm:411
#, c-format
msgid "Use a floppy"
msgstr "Implijit ur bladennig"
-#: network/thirdparty.pm:407
+#: network/thirdparty.pm:409
#, c-format
msgid "Use my Windows partition"
msgstr "Implij ma farzhadur Windows"
-#: network/thirdparty.pm:417
+#: network/thirdparty.pm:419
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: network/thirdparty.pm:422 standalone/drakautoinst:250
+#: network/thirdparty.pm:424 standalone/drakautoinst:250
#: standalone/drakvpn:888 standalone/scannerdrake:405
#, c-format
msgid "Congratulations!"
msgstr "Gourc'hemennoù !"
-#: network/thirdparty.pm:422
+#: network/thirdparty.pm:424
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
-#: network/thirdparty.pm:490
+#: network/thirdparty.pm:493
#, c-format
msgid "Looking for required software and drivers..."
msgstr ""
-#: network/thirdparty.pm:495
+#: network/thirdparty.pm:498
#, c-format
msgid "Please wait, running device configuration commands..."
msgstr "Gortozit mar plij, o seveniñ urzhiadoù kefluniañ an trobarzhell ..."
@@ -10484,7 +10499,7 @@ msgstr "brav"
msgid "maybe"
msgstr "marteze"
-#: pkgs.pm:473
+#: pkgs.pm:474
#, c-format
msgid "Downloading file %s..."
msgstr "Emaon oc'h enkargañ ar restr %s ..."
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index ce7f4ee65..f4ee31f01 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po