summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
blob: 2a26b46dd6f7eb49c13ae7fe8b5954000551c6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
#-########################################################################
#- This file implement many common shell commands:
#- true, false, cat, which, dirname, basename, rmdir, lsmod, grep, tr,
#- mount, umount, mkdir, mknod, ln, rm, chmod, chown, mkswap, swapon,
#- swapoff, ls, cp, ps, dd, head, tail, strings, hexdump, more, insmod,
#- modprobe, route, df, kill, lspci, lssbus, dmesg, sort, du, 
#-########################################################################
package commands; # $Id$

use diagnostics;
use strict;
use vars qw($printable_chars);

#-######################################################################################
#- misc imports
#-######################################################################################
use MDK::Common::System;
use common;

#-#####################################################################################
#- Globals
#-#####################################################################################
my $BUFFER_SIZE = 1024;

#-######################################################################################
#- Functions
#-######################################################################################
sub getopts {
    my $o = shift;
    my @r = map { '' } (@_ = split //, $_[0]);
    while (1) {
	local $_ = $o->[0];
	$_ && /^-/ or return @r;
	for (my $i = 0; $i < @_; $i++) { /$_[$i]/ and $r[$i] = $_[$i]; }
	shift @$o;
    }
    @r;
}

sub true { exit 0 }
sub false { exit 1 }
sub cat { @ARGV = @_; print while <> }
sub which { ARG: foreach (@_) { foreach my $c (split /:/, $ENV{PATH}) { -x "$c/$_" and print("$c/$_\n"), next ARG; }}}
sub dirname_ { print dirname(@_), "\n" }
sub basename_ { print basename(@_), "\n" }
sub rmdir_ { foreach (@_) { rmdir $_ or die "rmdir: can't remove $_\n" } }
sub lsmod { print "Module                  Size  Used by\n"; cat("/proc/modules"); }

sub grep_ {
    my ($h, $v, $i) = getopts(\@_, qw(hvi));
    @_ == 0 || $h and die "usage: grep <regexp> [files...]\n";
    my $r = shift;
    $r = qr/$r/i if $i;
    @ARGV = @_; (/$r/ ? $v || print : $v && print) while <>;
}

sub tr_ {
    my ($s, $c, $d) = getopts(\@_, qw(s c d));
    @_ >= 1 + (!$d || $s) or die "usage: tr [-c] [-s [-d]] <set1> <set2> [files...]\n    or tr [-c] -d <set1> [files...]\n";
    my $set1 = shift;
    my $set2; !$d || $s and $set2 = shift;
    @ARGV = @_;
    eval "(tr/$set1/$set2/$s$d$c, print) while <>";
}

sub mount {
    @_ or return cat("/proc/mounts");
    my ($t, $r) = getopts(\@_, qw(tr));
    my $fs = $t && shift;

    @_ == 2 or die "usage: mount [-r] [-t <fs>] <device> <dir>\n",
    "       (use -r for readonly)\n",
    "       (if /dev/ is left off the device name, a temporary node will be created)\n";

    my ($dev, $where) = @_;
    $fs ||= $where =~ /:/ ? "nfs" :
            $dev =~ /fd/ ? "vfat" : "ext2";

    require fs;
    require modules;
    modules::load_deps("/modules/modules.dep");
    fs::mount($dev, $where, $fs, $r);
}

sub umount {
    @_ == 1 or die "umount expects a single argument\n";

    require fs;
    fs::umount($_[0]);
}

sub mkdir_ {
    my ($rec) = getopts(\@_, qw(p));

    my $mkdir; $mkdir = sub {
	my $root = dirname $_[0];
	if (-e $root) {
	    -d $root or die "mkdir: error creating directory $_[0]: $root is a file and i won't delete it\n";
	} else {
	    $rec or die "mkdir: $root does not exist (try option -p)\n";
	    &$mkdir($root);
	}
	$rec and -d $_[0] and return;
	mkdir $_[0], 0755 or die "mkdir: error creating directory $_: $!\n";
    };
    &$mkdir($_) foreach @_;
}


sub mknod {
    if (@_ == 1) {
	require devices;
	eval { devices::make($_[0]) }; $@ and die "mknod: failed to create $_[0]\n";
    } elsif (@_ == 4) {
	require c;
	my $mode = $ {{"b" => c::S_IFBLK(), "c" => c::S_IFCHR()}}{$_[1]} or die "unknown node type $_[1]\n";
	syscall_('mknod', my $a = $_[0], $mode | 0600, makedev($_[2], $_[3])) or die "mknod failed: $!\n";
    } else { die "usage: mknod <path> [b|c] <major> <minor> or mknod <path>\n"; }
}

sub ln {
    my ($force, $soft) = getopts(\@_, qw(fs));
    @_ >= 1 or die "usage: ln [-s] [-f] <source> [<dest>]\n";

    my ($source, $dest) = @_;
    $dest ||= basename($source);

    $force and unlink $dest;

    ($soft ? symlink($source, $dest) : link($source, $dest)) or die "ln failed: $!\n";
}

sub rm {
    my ($rec, undef) = getopts(\@_, qw(rf));

    my $rm; $rm = sub {
	foreach (@_) {
	    if (!-l $_ && -d $_) {
		$rec or die "$_ is a directory\n";
		&$rm(glob_($_));
		rmdir $_ or die "can't remove directory $_: $!\n";
	    } else { unlink $_ or die "rm of $_ failed: $!\n" }
	}
    };
    &$rm(@_);
}

sub chmod_ {
    @_ >= 2 or die "usage: chmod <mode> <files>\n";

    my $mode = shift;
    $mode =~ /^[0-7]+$/ or die "illegal mode $mode\n";

    foreach (@_) { chmod oct($mode), $_ or die "chmod failed $_: $!\n" }
}

sub chown_ {
    my ($rec, undef) = getopts(\@_, qw(r));
    local $_ = shift or die "usage: chown [-r] name[.group] <files>\n";

    my ($name, $group) = (split('\.'), $_);

    my ($uid, $gid) = (getpwnam($name) || $name, getgrnam($group) || $group);

    my $chown; $chown = sub {
	foreach (@_) {
	    chown $uid, $gid, $_ or die "chown of file $_ failed: $!\n";
	    -d $_ && $rec and &$chown(glob_($_));
	}
    };
    &$chown(@_);
}

sub mkswap {
    @_ == 1 or die "mkswap <device>\n";
    require swap;
    swap::enable($_[0], 0);
}

sub swapon {
    @_ == 1 or die "swapon <file>\n";
    require swap;
    swap::swapon($_[0]);
}
sub swapoff {
    @_ == 1 or die "swapoff <file>\n";
    require swap;
    swap::swapoff($_[0]);
}

sub uncpio {
    @_ and die "uncpio reads from stdin\n";

#    cpioInstallArchive(gzdopen(0, "r"), NULL, 0, NULL, NULL, &fail);
}


sub rights {
    my $r = '-' x 9;
    my @rights = (qw(x w r x w r x w r), ['t', 0], ['s', 3], ['s', 6]);
    for (my $i = 0; $i < @rights; $i++) {
	if (vec(pack("S", $_[0]), $i, 1)) {
	    my ($val, $place) = $i >= 9 ? @{$rights[$i]} : ($rights[$i], $i);
	    my $old = \substr($r, 8 - $place, 1);
	    $$old = ($$old eq '-' && $i >= 9) ? uc $val : $val;
	}
    }
    my @types = split //, "_pc_d_b_-_l_s";
    $types[$_[0] >> 12 & 0xf] . $r;
}

sub displaySize {
    my $m = $_[0] >> 12;
    $m == 4 || $m == 8 || $m == 10;
}

sub ls {
    my ($l , $h) = getopts(\@_, qw(lh));
    $h and die "usage: ls [-l] <files...>\n";

    @_ or @_ = '.';
    @_ == 1 && -d $_[0] and @_ = glob_($_[0]);
    foreach (sort @_) {
	if ($l) {
	    my @s = lstat or warn("can't stat file $_\n"), next;
	    formline(
"@<<<<<<<<< @<<<<<<< @<<<<<<< @>>>>>>>> @>>>>>>>>>>>>>>> @*\n",
		     rights($s[2]), getpwuid $s[4] || $s[4], getgrgid $s[5] || $s[5],
		     displaySize($s[2]) ? $s[7] : join(", ", unmakedev($s[6])),
		     scalar localtime $s[9], -l $_ ? "$_ -> " . readlink $_ : $_);
	    print $^A; $^A = '';
	} else { print "$_\n"; }
    }
}
sub cp {
    my ($force) = getopts(\@_, qw(f));
    @_ >= 2 or die "usage: cp [-f] <sources> <dest>\n(this cp does -Rl by default)\n";

    my $cp; $cp = sub {
	my $dest = pop @_;

	@_ or return;
	@_ == 1 || -d $dest or die "cp: copying multiple files, but last argument ($dest) is not a directory\n";

	foreach my $src (@_) {
	    my $dest = $dest;
	    -d $dest and $dest .= "/" . basename($src);

	    if (-e $dest) {
		$force ? unlink $dest : die "file $dest already exist\n";
	    }

	    if (-d $src) {
		-d $dest or mkdir $dest, (stat($src))[2] or die "mkdir: can't create directory $dest: $!\n";
		&$cp(glob_($src), $dest);
	    } elsif (-l $src) {
		unless (symlink((readlink($src) || die "readlink failed: $!"), $dest)) {
		    my $msg = "symlink: can't create symlink $dest: $!\n";
		    $force ? warn $msg : die $msg;		    
		}
	    } else {
		local (*F, *G);
		open F, $src or die "can't open $src for reading: $!\n";
		open G, "> $dest" or $force or die "can't create $dest : $!\n";
		local $_;
		while (<F>) { print G $_ }
		chmod((stat($src))[2], $dest);
	    }
	}
    };
    &$cp(@_);
}

sub ps {
    @_ and die "usage: ps\n";
    my ($pid, $rss, $cpu, $cmd);
    my ($uptime) = split ' ', first(cat_("/proc/uptime"));
    my $hertz = 100;

    require c;
    my $page = c::getpagesize() / 1024;

    open PS, ">&STDOUT";
    format PS_TOP =
  PID   RSS %CPU CMD
.
    format PS =
@>>>> @>>>> @>>> @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
$pid, $rss, $cpu, $cmd
.
    foreach $pid (sort {$a <=> $b} grep { /\d+/ } all('/proc')) {
	 my @l = split(' ', cat_("/proc/$pid/stat"));
	 $cpu = sprintf "%2.1f", max(0, min(99, ($l[13] + $l[14]) * 100 / $hertz / ($uptime - $l[21] / $hertz)));
	 $rss = (split ' ', cat_("/proc/$pid/stat"))[23] * $page;
	 (($cmd) = cat_("/proc/$pid/cmdline")) =~ s/\0/ /g;
	 $cmd ||= (split ' ', (cat_("/proc/$pid/stat"))[0])[1];
	 write PS;
    }
}


sub dd {
    my $u = "usage: dd [-h] [-p] [if=<file>] [of=<file>] [bs=<number>] [count=<number>]\n";
    my ($help, $percent) = getopts(\@_, qw(hp));
    die $u if $help;
    my %h = (if => *STDIN, of => *STDOUT, bs => 512, count => undef);
    foreach (@_) {
	/(.*?)=(.*)/ && exists $h{$1} or die $u;
	$h{$1} = $2;
    }
    local (*IF, *OF); my ($tmp, $nb, $read);
    ref $h{if} eq 'GLOB' ? *IF = $h{if} : sysopen(IF, $h{if}, 0   ) || die "error: can't open file $h{if}\n";
    ref $h{of} eq 'GLOB' ? *OF = $h{of} : sysopen(OF, $h{of}, 0x41) || die "error: can't open file $h{of}\n";

    $h{bs} = removeXiBSuffix($h{bs});

    for ($nb = 0; !$h{count} || $nb < $h{count}; $nb++) {
	printf "\r%02.1d%%", 100 * $nb / $h{count} if $h{count} && $percent;
	$read = sysread(IF, $tmp, $h{bs}) or $h{count} ? die "error: can't read block $nb\n" : last;
	syswrite(OF, $tmp) or die "error: can't write block $nb\n";
	$read < $h{bs} and $read = 1, last;
    }
    print STDERR "\r$nb+$read records in\n";
    print STDERR   "$nb+$read records out\n";
}

sub head_tail {
    my ($h, $n) = getopts(\@_, qw(hn));
    $h || @_ < to_bool($n) and die "usage: $0 [-h] [-n lines] [<file>]\n";
    $n = $n ? shift : 10;
    local *F; @_ ? open(F, $_[0]) || die "error: can't open file $_[0]\n" : (*F = *STDIN);

    local $_;
    if ($0 eq 'head') {
	while (<F>) { $n-- or return; print }
    } else {
	@_ = (); while (<F>) { push @_, $_; @_ > $n and shift; }
	print @_;
    }
}
sub head { $0 = 'head'; &head_tail }
sub tail { $0 = 'tail'; &head_tail }

sub strings {
    my ($h, $o, $n) = getopts(\@_, qw(hon));
    $h and die "usage: strings [-o] [-n min-length] [<files>]\n";
    $n = $n ? shift : 4;
    $/ = "\0"; @ARGV = @_; my $l = 0; while (<>) {
	while (/[$printable_chars]{$n,}/og) {
	    printf "%07d ", ($l + length $') if $o;
	    print "$&\n" ;
	}
	$l += length;
    } continue { $l = 0 if eof }
}

sub hexdump {
    my $i = 0; $/ = \16; @ARGV = @_; while (<>) {
	printf "%08lX  ", $i; $i += 16;
	print join(" ", (map { sprintf "%02X", $_ } unpack("C*", $_)),
		   ($_ =~ s/[^$printable_chars]/./og, $_)[1]), "\n";
    }
}

sub more {
    @ARGV = @_;
    require devices;
    my $tty = devices::make('tty');
    local *IN; open IN, "<$tty" or die "can't open $tty\n";
    my $n = 0; while (<>) {
	if (++$n == 25) {
	    my $v = <IN>;
	    $v =~ /^q/ and exit 0;
	    $n = 0;
	}
	print
    }
}

sub pack_ {
    my $t;
    foreach (@_) {
	if (-d $_) {
	    pack_(glob_($_));
	} else {
	    print -s $_, "\n";
	    print $_, "\n";

	    local *F;
	    open F, $_ or die "can't read file $_: $!\n";
	    while (read F, $t, $BUFFER_SIZE) { print $t; }
	}
    }
}

sub unpack_ {
    my $t;
    @_ == 1 or die "give me one and only one file to unpack\n";
    local *F;
    open F, $_[0] or die "can't open file $_: $!\n";
    while (1) {
	my $size = chomp_(scalar <F>);
	defined $size or last;
	$size =~ /^\d+$/ or die "bad format (can't find file size)\n";
	my $filename = chomp_(scalar <F>) or die "expecting filename\n";

	print "$filename\n";
	my $dir = dirname($filename);
	-d $dir or mkdir_('-p', $dir);

	local *G;
	open G, "> $filename" or die "can't write file $filename: $!\n";
	while ($size) {
	    $size -= read(F, $t, min($size, $BUFFER_SIZE)) || die "data for file $filename is missing\n";
	    print G $t or die "error writing to file $filename: $!\n";
	}
    }
}

sub insmod {
    my ($h) = getopts(\@_, qw(h));
    $h || @_ == 0 and die "usage: insmod <module> [options]\n";
    my $f = local $_ = shift;

    require run_program;

    #- try to install the module if it exist else extract it from archive.
    #- needed for cardmgr.
    unless (-r $f) {
	$_ = $1 if m@.*/([^/]*)\.o@;
	unless (-r ($f = "/lib/modules/$_.o")) {
	    $f = "/tmp/$_.o";
	    my $cz = "/lib/modules" . (arch() eq 'sparc64' && "64") . ".cz"; -e $cz or $cz .= "2";
	    if (-e $cz) {
		eval {
		    require packdrake;
		    my $packer = new packdrake($cz, quiet => 1);
		    $packer->extract_archive("/tmp", "$_.o");
		};
	    } elsif (-e "/lib/modules.cpio.bz2") {
		run_program::run("cd /tmp ; $ENV{LD_LOADER} bzip2 -cd /lib/modules.cpio.bz2 | $ENV{LD_LOADER} cpio -i $_.o");
	    } else {
		die "unable to find an archive for modules";
	    }
	}
    }
    -r $f or die "can't find module $_";
    run_program::run(["/usr/bin/insmod_", "insmod"], "-f", $f, @_) or die("insmod $_ failed");
    unlink $f;
}

sub modprobe {
    my ($h) = getopts(\@_, qw(h));
    $h || @_ == 0 and die "usage: modprobe <module> [options]\n";
    my $name = shift;
    require modules;
    modules::load_deps("/modules/modules.dep");
    modules::load($name, '', @_);
}

sub route {
    @_ == 0 or die "usage: route\nsorry, no modification handled\n";
    my ($titles, @l) = cat_("/proc/net/route");
    my @titles = split ' ', $titles;
    my %l;
    open ROUTE, ">&STDOUT";
    format ROUTE_TOP =
Destination    Gateway        Mask           Iface
.
    format ROUTE =
@<<<<<<<<<<<<  @<<<<<<<<<<<<  @<<<<<<<<<<<<  @<<<<<<<
$l{Destination}, $l{Gateway}, $l{Mask}, $l{Iface}
.
    foreach (@l) {
	/^\s*$/ and next;
	@l{@titles} = split;
	$_ = join ".", reverse map { hex } unpack "a2a2a2a2", $_ foreach @l{qw(Destination Gateway Mask)};
	$l{Destination} = 'default' if $l{Destination} eq "0.0.0.0";
	$l{Gateway}     = '*'       if $l{Gateway}     eq "0.0.0.0";
	write ROUTE;
    }
}

sub df {
    my ($h) = getopts(\@_, qw(h));
    my ($dev, $size, $free, $used, $use, $mntpoint);
    open DF, ">&STDOUT";
    format DF_TOP =
Filesystem          Size      Used    Avail     Use  Mounted on
.
    format DF =
@<<<<<<<<<<<<<<<< @>>>>>>> @>>>>>>> @>>>>>>> @>>>>>% @<<<<<<<<<<<<<<<<<<<<<<<<<
$dev, $size, $used, $free, $use, $mntpoint
.
    my %h;
    foreach (cat_("/proc/mounts"), cat_("/etc/mtab")) {
	($dev, $mntpoint) = split;
	$h{$dev} = $mntpoint;
    }
    foreach $dev (sort keys %h) {
	($size, $free) = MDK::Common::System::df($mntpoint = $h{$dev});
	$size or next;

	$use = int (100 * ($size - $free) / $size);
	$used = $size - $free;
	if ($h) {
	    $used = int ($used / 1024) . "M";
	    $size = int ($size / 1024) . "M";
	    $free = int ($free / 1024) . "M";
	}
	write DF if $size;
    }
}

sub kill {
    my $signal = 15;
    @_ or die "usage: kill [-<signal>] pids\n";
    $signal = (shift, $1)[1] if $_[0] =~ /^-(.*)/;
    kill $signal, @_ or die "kill failed: $!\n";
}

sub lspci {
    require detect_devices;
    print join "\n", detect_devices::stringlist(), '';
}
*lssbus = *lspci;

sub dmesg { print cat_("/tmp/syslog"); }

sub sort {
    my ($n, $h) = getopts(\@_, qw(nh));
    $h and die "usage: sort [-n] [<file>]\n";
    local *F; @_ ? open(F, $_[0]) || die "error: can't open file $_[0]\n" : (*F = *STDIN);
    if ($n) {
	print sort { $a <=> $b } <F>;
    } else {
	print sort <F>;
    }
}

sub du {
    my ($s, $h) = getopts(\@_, qw(sh));
    $h || !$s and die "usage: du -s [<directories>]\n";

    my $f; $f = sub {
	my ($e) = @_;
	my $s = (lstat($e))[12];
	$s += sum(map { &$f($_) } glob_("$e/*")) if !-l $e && -d $e;
	$s;
    };
    print &$f($_) >> 1, "\t$_\n" foreach @_ ? @_ : glob_("*");
}

sub  install_cpio($$;@) {
    my ($dir, $name, @more) = @_; 

    return "$dir/$name" if -e "$dir/$name";

    my $cpio = "$dir.cpio.bz2";
    -e $cpio or return;

    eval { rm("-r", $dir) };
    mkdir $dir, 0755;
    require run_program;
    
    my $more = join " ", map { $_ && "$_ $_/*" } @more;
    run_program::run("cd $dir ; $ENV{LD_LOADER} bzip2 -cd $cpio | $ENV{LD_LOADER} cpio -id $name $name/* $more");

    "$dir/$name";
}

sub bug {
    my ($h) = getopts(\@_, "h");
    $h and die "usage: bug\nput file report.bug on fat formatted floppy\n";

    require detect_devices;
    mount devices::make(detect_devices::floppy()), "/fd0";

    require install_any;
    output("/fd0/report.bug", install_any::report_bug("/mnt")); #- no other way :-(
    umount "/fd0";
    common::sync();
}

sub loadkeys {
    my ($h) = getopts(\@_, "h");
    $h || @_ != 1 and die "usage: loadkeys <keyboard>\n";

    require keyboard;
    keyboard::setup($_[0]);
}

sub sync { common::sync() }

#-######################################################################################
#- Wonderful perl :(
#-######################################################################################
1; #

0 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181
# translation of drakx-net-hi.po to हिन्दी, भारत (Hindi, India)
# Copyright (C) 2003,2004 Free Software Foundation, Inc.
# धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>, 2003, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-hi\n"
"POT-Creation-Date: 2008-05-19 14:44+0200\n"
"PO-Revision-Date: 2004-04-04 21:54+0530\n"
"Last-Translator: धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
"Language-Team: हिन्दी (Hindi) <dysxhi@yahoo.co.in>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"

#: ../bin/drakconnect-old:45
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "नेटवर्क संरचना (%d ऐडाप्टर)"

#: ../bin/drakconnect-old:64 ../bin/drakinvictus:105
#, c-format
msgid "Interface"
msgstr "इन्टरफ़ेस"

#: ../bin/drakconnect-old:64 ../bin/drakconnect-old:208 ../bin/drakhosts:196
#: ../lib/network/connection/ethernet.pm:133 ../lib/network/netconnect.pm:614
#: ../lib/network/vpn/openvpn.pm:221
#, c-format
msgid "IP address"
msgstr "आईपी पता"

#: ../bin/drakconnect-old:64 ../bin/drakids:258 ../bin/drakvpn-old:839
#: ../lib/network/netconnect.pm:458
#, c-format
msgid "Protocol"
msgstr "प्रोटोकॉल"

#: ../bin/drakconnect-old:64 ../lib/network/netconnect.pm:444
#, c-format
msgid "Driver"
msgstr "चालक"

#: ../bin/drakconnect-old:64
#, c-format
msgid "State"
msgstr "अवस्था"

#: ../bin/drakconnect-old:79
#, c-format
msgid "Hostname: "
msgstr "होस्ट का नाम:"

#: ../bin/drakconnect-old:81
#, c-format
msgid "Configure hostname..."
msgstr "होस्टनाम को संरचित करें..."

#: ../bin/drakconnect-old:95 ../bin/drakconnect-old:171
#, c-format
msgid "LAN configuration"
msgstr "स्थानीय क्षेत्र नेटवर्क संरचना"

#: ../bin/drakconnect-old:100
#, c-format
msgid "Configure Local Area Network..."
msgstr "स्थानीय नेटवर्क क्षेत्र को संरचित किया जा रहा है..."

#: ../bin/drakconnect-old:106 ../bin/draknfs:186 ../bin/net_applet:170
#, c-format
msgid "Help"
msgstr "सहायता"

#: ../bin/drakconnect-old:108 ../bin/drakinvictus:140
#, c-format
msgid "Apply"
msgstr "प्रयोग करें"

#: ../bin/drakconnect-old:110 ../bin/drakconnect-old:263
#: ../bin/draknetprofile:133 ../bin/net_monitor:347
#, c-format
msgid "Cancel"
msgstr "निरस्त"

#: ../bin/drakconnect-old:111 ../bin/drakconnect-old:178
#: ../bin/drakconnect-old:265 ../bin/draknetprofile:135 ../bin/net_monitor:348
#, c-format
msgid "Ok"
msgstr "ठीक"

#: ../bin/drakconnect-old:113 ../bin/drakgw:345 ../bin/draksambashare:228
#: ../bin/drakvpn-old:97 ../bin/drakvpn-old:127
#: ../lib/network/connection_manager.pm:82
#: ../lib/network/connection_manager.pm:195
#: ../lib/network/connection_manager.pm:212
#: ../lib/network/connection_manager.pm:295 ../lib/network/drakvpn.pm:49
#: ../lib/network/netcenter.pm:33 ../lib/network/netconnect.pm:185
#: ../lib/network/netconnect.pm:207 ../lib/network/netconnect.pm:304
#: ../lib/network/netconnect.pm:714 ../lib/network/thirdparty.pm:354
#: ../lib/network/thirdparty.pm:369
#, c-format
msgid "Please wait"
msgstr "कृपया प्रतीक्षा करें"

#: ../bin/drakconnect-old:115
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "कृपया प्रतीक्षा करें... संरचना को लागू करें"

#: ../bin/drakconnect-old:141
#, c-format
msgid "Deactivate now"
msgstr "अब निष्क्रिय करें"

#: ../bin/drakconnect-old:141
#, c-format
msgid "Activate now"
msgstr "अभी सक्रिय करें"

#: ../bin/drakconnect-old:175
#, c-format
msgid ""
"You do not have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
"आपके पास कोई संरचित इन्टरफ़ेस नहीं है ।\n"
"'Configure' पर सर्वप्रथम क्लिक करके इन्हें संरचित करें"

#: ../bin/drakconnect-old:189
#, c-format
msgid "LAN Configuration"
msgstr "स्थानीय क्षेत्र नेटवर्क संरचना"

#: ../bin/drakconnect-old:201
#, c-format
msgid "Adapter %s: %s"
msgstr "ऐडाप्टर %s: %s"

#: ../bin/drakconnect-old:209 ../bin/drakgw:177
#: ../lib/network/connection/ethernet.pm:140
#, c-format
msgid "Netmask"
msgstr "नेटमास्क"

#: ../bin/drakconnect-old:210
#, c-format
msgid "Boot Protocol"
msgstr "बूट प्रोटोकॉल"

#: ../bin/drakconnect-old:211
#, c-format
msgid "Started on boot"
msgstr "बूट के समय आरम्भ"

#: ../bin/drakconnect-old:212 ../lib/network/connection/ethernet.pm:151
#, c-format
msgid "DHCP client"
msgstr "डी०एच०सी०पी० ग्राहक"

#: ../bin/drakconnect-old:247
#, fuzzy, c-format
msgid ""
"This interface has not been configured yet.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""
"इस इन्टरफ़ेस को अभी तक संरचित नहीं किया गया है ।\n"
"मैनड्रिव नियंत्रण केन्द्र से \"एक इन्टरफ़ेस को जोड़े\" सहायक को चलायें"

#: ../bin/drakconnect-old:247 ../bin/net_applet:102
#, c-format
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "एक नये नेटवर्क इन्टरफ़ेस को स्थापित करें (लैन, आईएसडीएन, ऐडीएसएल, ...)"

#: ../bin/drakconnect-old:273 ../bin/drakconnect-old:305
#: ../lib/network/drakconnect.pm:16
#, c-format
msgid "No IP"
msgstr "कोई एलपी नहीं"

#: ../bin/drakconnect-old:306 ../lib/network/drakconnect.pm:17
#, c-format
msgid "No Mask"
msgstr "कोई मास्क नहीं"

#: ../bin/drakconnect-old:307 ../lib/network/drakconnect.pm:18
#, c-format
msgid "up"
msgstr "ऊपर"

#: ../bin/drakconnect-old:307 ../lib/network/drakconnect.pm:18
#, c-format
msgid "down"
msgstr "नीचे"

#: ../bin/drakgw:71
#, c-format
msgid "Internet Connection Sharing"
msgstr "इन्टरनेट संबध सहभाजिता"

#: ../bin/drakgw:75
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""

#: ../bin/drakgw:91
#, c-format
msgid ""
"The setup of Internet Connection Sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"इन्टरनेट संबंध सहभाजिता को पहिले से ही स्थापित करा जा चुका है । \n"
"यह वर्तमान में सक्रिय है । \n"
"\n"
"आप क्या करना चाहते है?"

#: ../bin/drakgw:95
#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"इन्टरनेट संबंध सहभाजिता की स्थापना पहिले से ही हो गयी है \n"
"यह वर्तमान में निष्क्रिय है । \n"
"\n"
"आप क्या करना चाहते है?"

#: ../bin/drakgw:101
#, c-format
msgid "Disable"
msgstr "निष्क्रियता"

#: ../bin/drakgw:101
#, c-format
msgid "Enable"
msgstr "सक्रियता"

#: ../bin/drakgw:101
#, c-format
msgid "Reconfigure"
msgstr "पुनःसंरचना"

#: ../bin/drakgw:122
#, c-format
msgid "Please select the network interface directly connected to the internet."
msgstr ""

#: ../bin/drakgw:123 ../lib/network/netconnect.pm:360
#: ../lib/network/netconnect.pm:395
#, c-format
msgid "Net Device"
msgstr "नेट उपकरण"

#: ../bin/drakgw:141
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
"आपके तंत्र पर सिर्फ़ एक संरचित नेटवर्क ऐडाप्टर है:\n"
"\n"
"%s\n"
"\n"
"इस ऐडाप्टर के साथ, मै आपके स्थानीय नेटवर्क क्षेत्र को स्थापित करने जा रहा हूँ ।"

#: ../bin/drakgw:152
#, c-format
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "कृपया चयन करें कौन सा नेटवर्क ऐटाप्टर आपके स्थानीय नेटवर्क के साथ संबंधित होगा ।"

#: ../bin/drakgw:173
#, fuzzy, c-format
msgid "Local Area Network settings"
msgstr "स्थानीय नेटवर्क का पता"

#: ../bin/drakgw:176 ../lib/network/vpn/openvpn.pm:227
#, fuzzy, c-format
msgid "Local IP address"
msgstr "आईपी पता"

#: ../bin/drakgw:178
#, c-format
msgid "The internal domain name"
msgstr "आंतरिक डोमेन का नाम"

#: ../bin/drakgw:184 ../bin/drakhosts:100 ../bin/drakhosts:245
#: ../bin/drakhosts:252 ../bin/drakhosts:259 ../bin/drakinvictus:72
#: ../bin/draknetprofile:140 ../bin/draknfs:88 ../bin/draknfs:109
#: ../bin/draknfs:279 ../bin/draknfs:412 ../bin/draknfs:414 ../bin/draknfs:417
#: ../bin/draknfs:509 ../bin/draknfs:516 ../bin/draknfs:579 ../bin/draknfs:586
#: ../bin/draknfs:593 ../bin/draksambashare:392 ../bin/draksambashare:399
#: ../bin/draksambashare:402 ../bin/draksambashare:454
#: ../bin/draksambashare:478 ../bin/draksambashare:551
#: ../bin/draksambashare:629 ../bin/draksambashare:696
#: ../bin/draksambashare:796 ../bin/draksambashare:803
#: ../bin/draksambashare:942 ../bin/draksambashare:1096
#: ../bin/draksambashare:1115 ../bin/draksambashare:1147
#: ../bin/draksambashare:1246 ../bin/draksambashare:1348
#: ../bin/draksambashare:1357 ../bin/draksambashare:1379
#: ../bin/draksambashare:1388 ../bin/draksambashare:1407
#: ../bin/draksambashare:1416 ../bin/draksambashare:1428
#: ../lib/network/connection/xdsl.pm:339
#: ../lib/network/connection_manager.pm:60
#: ../lib/network/connection_manager.pm:66
#: ../lib/network/connection_manager.pm:77
#: ../lib/network/connection_manager.pm:85
#: ../lib/network/connection_manager.pm:166
#: ../lib/network/connection_manager.pm:170 ../lib/network/drakvpn.pm:45
#: ../lib/network/drakvpn.pm:52 ../lib/network/ndiswrapper.pm:30
#: ../lib/network/ndiswrapper.pm:45 ../lib/network/ndiswrapper.pm:118
#: ../lib/network/ndiswrapper.pm:124 ../lib/network/netconnect.pm:134
#: ../lib/network/netconnect.pm:187 ../lib/network/netconnect.pm:233
#: ../lib/network/netconnect.pm:274 ../lib/network/netconnect.pm:823
#: ../lib/network/thirdparty.pm:123 ../lib/network/thirdparty.pm:141
#: ../lib/network/thirdparty.pm:232 ../lib/network/thirdparty.pm:234
#: ../lib/network/thirdparty.pm:255
#, c-format
msgid "Error"
msgstr "त्रुटि"

#: ../bin/drakgw:184
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"%s की वर्तमान संरचना में संभावित स्थानीय-क्षेत्र-नेटवर्क (LAN) पते के साथ विरोधाभास पाया "
"गया !\n"

#: ../bin/drakgw:200
#, fuzzy, c-format
msgid "Domain Name Server (DNS) configuration"
msgstr "टर्मिनल सर्वर संरचना"

#: ../bin/drakgw:204
#, c-format
msgid "Use this gateway as domain name server"
msgstr ""

#: ../bin/drakgw:205
#, c-format
msgid "The DNS Server IP"
msgstr "डीएनएस सर्वर आईपी"

#: ../bin/drakgw:232
#, c-format
msgid ""
"DHCP Server Configuration.\n"
"\n"
"Here you can select different options for the DHCP server configuration.\n"
"If you do not know the meaning of an option, simply leave it as it is."
msgstr ""
"डीएचसीपी सर्वर संरचना।\n"
"\n"
"यहाँ आप डीएचसीपी सर्वर संरचना  के लिए, विभिन्न विकल्पों का चयन कर सकते है ।\n"
"यदि आपको किसी विकल्प का अर्थ ज्ञात नहीं है, तो उसको जैसे-का-तैसा छोड़ दें ।"

#: ../bin/drakgw:239
#, fuzzy, c-format
msgid "Use automatic configuration (DHCP)"
msgstr "स्वतः पुनः संरचना"

#: ../bin/drakgw:240
#, c-format
msgid "The DHCP start range"
msgstr "डी०एच०सी०पी० आरम्भिक श्रंखला"

#: ../bin/drakgw:241
#, c-format
msgid "The DHCP end range"
msgstr "डीएचसीपी अंतिम सीमा"

#: ../bin/drakgw:242
#, c-format
msgid "The default lease (in seconds)"
msgstr "डीफ़ाल्ट पट्टा (क्षणों में)"

#: ../bin/drakgw:243
#, c-format
msgid "The maximum lease (in seconds)"
msgstr "अधिकतम पट्टा (क्षणों में)"

#: ../bin/drakgw:266
#, c-format
msgid "Proxy caching server (SQUID)"
msgstr ""

#: ../bin/drakgw:270
#, c-format
msgid "Use this gateway as proxy caching server"
msgstr ""

#: ../bin/drakgw:271
#, c-format
msgid "Admin mail"
msgstr ""

#: ../bin/drakgw:272
#, fuzzy, c-format
msgid "Visible hostname"
msgstr "सुदूर होस्ट का नाम"

#: ../bin/drakgw:273
#, fuzzy, c-format
msgid "Proxy port"
msgstr "गुण"

#: ../bin/drakgw:274
#, fuzzy, c-format
msgid "Cache size (MB)"
msgstr "कैश का आकार"

#: ../bin/drakgw:293
#, fuzzy, c-format
msgid "Broadcast printer information"
msgstr "हार्ड ड्राइव सूचना"

#: ../bin/drakgw:304
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"आपके तंत्र पर कोई ईथरनेट ऐडाप्टर नहीं पहचाना जा सका । कृपया हार्डवेयर संरचना टूल को "
"चलायें ।"

#: ../bin/drakgw:310
#, c-format
msgid "Internet Connection Sharing is now enabled."
msgstr "इन्टरनेट संबंध सहभाजिता को अब सक्रिय है ।"

#: ../bin/drakgw:316
#, c-format
msgid "Internet Connection Sharing is now disabled."
msgstr "इन्टरनेट संबंध सहभाजिता अब निष्क्रिय है ।"

#: ../bin/drakgw:322
#, c-format
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP) and\n"
" a Transparent Proxy Cache server (SQUID)."
msgstr ""
"सभी कुछ संरचित हो गया है ।\n"
"स्वचालित नेटवर्क संरचना (डीएचसीपी) और एक पारदर्शी प्रोक्सी कैश सर्वर (स्क्यूडी) का उपयोग "
"करके, अपने स्थानीय नेटवर्क क्षेत्र पर आप अब अन्य कम्प्यूटरों के साथ इन्टरनेट संबंध को साझा कर "
"सकते है ।"

#: ../bin/drakgw:345
#, c-format
msgid "Disabling servers..."
msgstr "सर्वरों को निष्क्रिय किया जा रहा है..."

#: ../bin/drakgw:359
#, c-format
msgid "Firewalling configuration detected!"
msgstr "अग्नि-भीतिका संरचना खोजी गयी है !"

#: ../bin/drakgw:360
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"चेतावनी! एक अग्नि भीतिका संरचना पहिले से विद्यमान पायी गयी है । संसाधन के उपरान्त आपको "
"कुछ दोष-निवारणों को स्वंम ही लगाने की आवश्यकता होगी ।"

#: ../bin/drakgw:365
#, c-format
msgid "Configuring..."
msgstr "संरचना की जा रही है..."

#: ../bin/drakgw:366
#, c-format
msgid "Configuring firewall..."
msgstr ""

#: ../bin/drakhosts:100
#, c-format
msgid "Please add an host to be able to modify it."
msgstr ""

#: ../bin/drakhosts:110
#, fuzzy, c-format
msgid "Please modify information"
msgstr "विस्तृत सूचना"

#: ../bin/drakhosts:111
#, fuzzy, c-format
msgid "Please delete information"
msgstr "विस्तृत सूचना"

#: ../bin/drakhosts:112
#, fuzzy, c-format
msgid "Please add information"
msgstr "विस्तृत सूचना"

#: ../bin/drakhosts:116
#, c-format
msgid "IP address:"
msgstr "आईपी पता:"

#: ../bin/drakhosts:117
#, fuzzy, c-format
msgid "Host name:"
msgstr "होस्ट का नाम"

#: ../bin/drakhosts:118
#, fuzzy, c-format
msgid "Host Aliases:"
msgstr "होस्ट का नाम"

#: ../bin/drakhosts:122 ../bin/drakhosts:128 ../bin/draksambashare:229
#: ../bin/draksambashare:250 ../bin/draksambashare:396
#: ../bin/draksambashare:625 ../bin/draksambashare:792
#, c-format
msgid "Error!"
msgstr "त्रुटि !"

#: ../bin/drakhosts:122
#, c-format
msgid "Please enter a valid IP address."
msgstr "कृपया एक वैध आईपी पता बताएँ।"

#: ../bin/drakhosts:128
#, fuzzy, c-format
msgid "Same IP is already in %s file."
msgstr "%s पहिले से ही उपयोग में है\n"

#: ../bin/drakhosts:196 ../lib/network/connection/ethernet.pm:211
#, c-format
msgid "Host name"
msgstr "होस्ट का नाम"

#: ../bin/drakhosts:196
#, fuzzy, c-format
msgid "Host Aliases"
msgstr "होस्ट का नाम"

#: ../bin/drakhosts:206 ../bin/drakhosts:236
#, fuzzy, c-format
msgid "Manage hosts definitions"
msgstr "कनेक्शनों का प्रबंधन"

#: ../bin/drakhosts:222 ../bin/drakhosts:249
#, c-format
msgid "Modify entry"
msgstr ""

#: ../bin/drakhosts:241 ../bin/draknfs:575 ../bin/draksambashare:1341
#: ../bin/draksambashare:1372 ../bin/draksambashare:1403
#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Add"
msgstr "जोड़ें"

#: ../bin/drakhosts:242
#, fuzzy, c-format
msgid "Add entry"
msgstr "प्रिंटर जोड़ें"

#: ../bin/drakhosts:245
#, c-format
msgid "Failed to add host."
msgstr ""

#: ../bin/drakhosts:248 ../bin/draknfs:582 ../bin/draksambashare:1298
#: ../bin/draksambashare:1343 ../bin/draksambashare:1374
#: ../bin/draksambashare:1411
#, c-format
msgid "Modify"
msgstr "परिवर्तन"

#: ../bin/drakhosts:252
#, c-format
msgid "Failed to Modify host."
msgstr ""

#: ../bin/drakhosts:255 ../bin/drakids:92 ../bin/drakids:101
#: ../bin/draknfs:589 ../bin/draksambashare:1299 ../bin/draksambashare:1351
#: ../bin/draksambashare:1382 ../bin/draksambashare:1419
#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Remove"
msgstr "हटाना"

#: ../bin/drakhosts:259
#, c-format
msgid "Failed to remove host."
msgstr ""

#: ../bin/drakhosts:262 ../bin/drakinvictus:141 ../bin/draknetprofile:174
#: ../bin/net_applet:171 ../lib/network/drakroam.pm:118
#: ../lib/network/netcenter.pm:132
#, c-format
msgid "Quit"
msgstr "निकास"

#: ../bin/drakids:28
#, fuzzy, c-format
msgid "Allowed addresses"
msgstr "सभी उपयोगकर्ताओं को अनुमति"

#: ../bin/drakids:40 ../bin/drakids:68 ../bin/drakids:187 ../bin/drakids:196
#: ../bin/drakids:221 ../bin/drakids:230 ../bin/drakids:240 ../bin/drakids:332
#: ../bin/net_applet:110 ../bin/net_applet:261
#: ../lib/network/drakfirewall.pm:262 ../lib/network/drakfirewall.pm:266
#, fuzzy, c-format
msgid "Interactive Firewall"
msgstr "अग्नि-भीतिका"

#: ../bin/drakids:68 ../bin/drakids:187 ../bin/drakids:196 ../bin/drakids:221
#: ../bin/drakids:230 ../bin/drakids:240 ../bin/drakids:332
#: ../bin/net_applet:261
#, fuzzy, c-format
msgid "Unable to contact daemon"
msgstr "%s मिरर प्रणाली से संबंध स्थापित करने में असमर्थ"

#: ../bin/drakids:79 ../bin/drakids:107
#, c-format
msgid "Log"
msgstr "लॉग"

#: ../bin/drakids:83 ../bin/drakids:102
#, fuzzy, c-format
msgid "Allow"
msgstr "सभी"

#: ../bin/drakids:84 ../bin/drakids:93
#, c-format
msgid "Block"
msgstr ""

#: ../bin/drakids:85 ../bin/drakids:94 ../bin/drakids:103 ../bin/drakids:114
#: ../bin/drakids:127 ../bin/drakids:135 ../bin/draknfs:191
#: ../bin/net_monitor:120
#, c-format
msgid "Close"
msgstr "बन्द"

#: ../bin/drakids:88
#, fuzzy, c-format
msgid "Allowed services"
msgstr "सभी उपयोगकर्ताओं को अनुमति"

#: ../bin/drakids:97
#, fuzzy, c-format
msgid "Blocked services"
msgstr "बैक-अप उपयोगकर्ता संचिकायें"

#: ../bin/drakids:111
#, fuzzy, c-format
msgid "Clear logs"
msgstr "सभी को साफ़"

#: ../bin/drakids:112 ../bin/drakids:117
#, c-format
msgid "Blacklist"
msgstr ""

#: ../bin/drakids:113 ../bin/drakids:130
#, c-format
msgid "Whitelist"
msgstr ""

#: ../bin/drakids:121
#, fuzzy, c-format
msgid "Remove from blacklist"
msgstr "एलवीएम से हटायें"

#: ../bin/drakids:122
#, c-format
msgid "Move to whitelist"
msgstr ""

#: ../bin/drakids:134
#, fuzzy, c-format
msgid "Remove from whitelist"
msgstr "एलवीएम से हटायें"

#: ../bin/drakids:253
#, c-format
msgid "Date"
msgstr "तारीख"

#: ../bin/drakids:254
#, fuzzy, c-format
msgid "Remote host"
msgstr "सुदूर"

#: ../bin/drakids:255 ../lib/network/vpn/openvpn.pm:115
#, c-format
msgid "Type"
msgstr "प्रकार"

#: ../bin/drakids:256 ../bin/drakids:289
#, c-format
msgid "Service"
msgstr "सेवा"

#: ../bin/drakids:257
#, c-format
msgid "Network interface"
msgstr "नेटवर्क इन्टरफ़ेस"

#: ../bin/drakids:288
#, c-format
msgid "Application"
msgstr "ऐप्लीकेशन"

#: ../bin/drakids:290
#, c-format
msgid "Status"
msgstr "स्थिति"

#: ../bin/drakids:292
#, fuzzy, c-format
msgid "Allowed"
msgstr "सभी"

#: ../bin/drakids:293
#, c-format
msgid "Blocked"
msgstr ""

#: ../bin/drakinvictus:36
#, fuzzy, c-format
msgid "Invictus Firewall"
msgstr "अग्नि-भीतिका"

#: ../bin/drakinvictus:53
#, fuzzy, c-format
msgid "Start as master"
msgstr "बूट के समय आरम्भ"

#: ../bin/drakinvictus:72
#, fuzzy, c-format
msgid "A password is required."
msgstr "कूट-शब्द आवश्यक"

#: ../bin/drakinvictus:100
#, c-format
msgid ""
"This tool allows to set up network interfaces failover and firewall "
"replication."
msgstr ""

#: ../bin/drakinvictus:102
#, c-format
msgid "Network redundancy (leave empty if interface is not used)"
msgstr ""

#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Real address"
msgstr "मैक पता"

#: ../bin/drakinvictus:105
#, fuzzy, c-format
msgid "Virtual shared address"
msgstr "Sainfo स्रोत पता"

#: ../bin/drakinvictus:105
#, c-format
msgid "Virtual ID"
msgstr ""

#: ../bin/drakinvictus:110 ../lib/network/netconnect.pm:596
#: ../lib/network/vpn/vpnc.pm:56
#, c-format
msgid "Password"
msgstr "कूट-शब्द"

#: ../bin/drakinvictus:114
#, fuzzy, c-format
msgid "Firewall replication"
msgstr "संचिका चयन"

#: ../bin/drakinvictus:116
#, c-format
msgid "Synchronize firewall conntrack tables"
msgstr ""

#: ../bin/drakinvictus:123
#, fuzzy, c-format
msgid "Synchronization network interface"
msgstr "एकसारीकरण औजार"

#: ../bin/drakinvictus:132
#, fuzzy, c-format
msgid "Connection mark bit"
msgstr "कनेक्शन"

#: ../bin/draknetprofile:37
#, fuzzy, c-format
msgid "Network profiles"
msgstr "नेटवर्क विकल्प"

#: ../bin/draknetprofile:67
#, fuzzy, c-format
msgid "Profile"
msgstr "प्रोफ़ाइल्स"

#: ../bin/draknetprofile:126
#, c-format
msgid "New profile..."
msgstr "नयी प्रोफ़ाइल..."

#: ../bin/draknetprofile:129
#, c-format
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one):"
msgstr ""
"प्रोफ़ाइल का नाम जिसका निर्माण किया जाना है (नयी प्रोफ़ाइल का निर्माण वर्तमान "
"प्रोफ़ाइल की एक प्रतिलिपि के रूप में होगा):"

#: ../bin/draknetprofile:140
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr "\"%s\" प्रोफ़ाइल पहिले से विद्यमान है !"

#: ../bin/draknetprofile:156 ../bin/draknetprofile:158
#: ../lib/network/drakvpn.pm:70 ../lib/network/drakvpn.pm:100
#: ../lib/network/ndiswrapper.pm:103 ../lib/network/netconnect.pm:481
#, c-format
msgid "Warning"
msgstr "चेतावनी"

#: ../bin/draknetprofile:156
#, c-format
msgid "You can not delete the default profile"
msgstr ""

#: ../bin/draknetprofile:158
#, c-format
msgid "You can not delete the current profile"
msgstr "आप वर्तमान प्रोफ़ाइल को मिटा नहीं सकते है"

#: ../bin/draknetprofile:168
#, c-format
msgid ""
"This tool allows to activate an existing network profile, and to manage "
"(clone, delete) profiles."
msgstr ""

#: ../bin/draknetprofile:168
#, c-format
msgid "To modify a profile, you have to activate it first."
msgstr ""

#: ../bin/draknetprofile:171
#, c-format
msgid "Activate"
msgstr "क्रियाशील"

#: ../bin/draknetprofile:172
#, fuzzy, c-format
msgid "Clone"
msgstr "कनेक्ट"

#: ../bin/draknetprofile:173
#, c-format
msgid "Delete"
msgstr "मिटायें"

#: ../bin/draknfs:44
#, c-format
msgid "map root user as anonymous"
msgstr ""

#: ../bin/draknfs:45
#, c-format
msgid "map all users to anonymous user"
msgstr ""

#: ../bin/draknfs:46
#, c-format
msgid "No user UID mapping"
msgstr ""

#: ../bin/draknfs:47
#, c-format
msgid "allow real remote root access"
msgstr ""

#: ../bin/draknfs:61 ../bin/draknfs:62 ../bin/draknfs:63
#: ../bin/draksambashare:174 ../bin/draksambashare:175
#: ../bin/draksambashare:176
#, c-format
msgid "/_File"
msgstr "/संचिका (_F)"

#: ../bin/draknfs:62 ../bin/draksambashare:175
#, c-format
msgid "/_Write conf"
msgstr ""

#: ../bin/draknfs:63 ../bin/draksambashare:176
#, c-format
msgid "/_Quit"
msgstr "/निर्गम (_Q)"

#: ../bin/draknfs:63 ../bin/draksambashare:176
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: ../bin/draknfs:66 ../bin/draknfs:67 ../bin/draknfs:68
#, fuzzy, c-format
msgid "/_NFS Server"
msgstr "डीएनएस के सर्वर"

#: ../bin/draknfs:67 ../bin/draksambashare:180
#, c-format
msgid "/_Restart"
msgstr ""

#: ../bin/draknfs:68 ../bin/draksambashare:181
#, c-format
msgid "/R_eload"
msgstr ""

#: ../bin/draknfs:87
#, c-format
msgid "NFS server"
msgstr "एनएफ़एस सर्वर"

#: ../bin/draknfs:87
#, c-format
msgid "Restarting/Reloading NFS server..."
msgstr ""

#: ../bin/draknfs:88
#, c-format
msgid "Error Restarting/Reloading NFS server"
msgstr ""

#: ../bin/draknfs:104 ../bin/draksambashare:245
#, fuzzy, c-format
msgid "Directory Selection"
msgstr "दिशानिर्देश"

#: ../bin/draknfs:109 ../bin/draksambashare:250
#, c-format
msgid "Should be a directory."
msgstr "को एक निर्देशिका होना चाहिए ।"

#: ../bin/draknfs:140
#, c-format
msgid ""
"<span weight=\"bold\">NFS clients</span> may be specified in a number of "
"ways:\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">single host:</span> a host either by an "
"abbreviated name recognized be the resolver, fully qualified domain name, or "
"an IP address\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">netgroups:</span> NIS netgroups may be given "
"as @group.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">wildcards:</span> machine names may contain "
"the wildcard characters * and ?. For instance: *.cs.foo.edu  matches all  "
"hosts  in the domain cs.foo.edu.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">IP networks:</span> you can also export "
"directories to all hosts on an IP (sub-)network simultaneously. for example, "
"either `/255.255.252.0' or  `/22'  appended to the network base address "
"result.\n"
msgstr ""

#: ../bin/draknfs:155
#, c-format
msgid ""
"<span weight=\"bold\">User ID options</span>\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">map root user as anonymous:</span> map "
"requests from uid/gid 0 to the anonymous uid/gid (root_squash).\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">allow real remote root access:</span> turn "
"off root squashing. This option is mainly useful for diskless clients "
"(no_root_squash).\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">map all users to anonymous user:</span> map "
"all uids and gids to the anonymous  user (all_squash). Useful for NFS-"
"exported public FTP directories, news spool directories, etc. The opposite "
"option is no user UID mapping (no_all_squash), which is the default "
"setting.\n"
"\n"
"\n"
"<span foreground=\"royalblue3\">anonuid and anongid:</span> explicitly set "
"the uid and gid of the anonymous account.\n"
msgstr ""

#: ../bin/draknfs:171
#, c-format
msgid "Synchronous access:"
msgstr ""

#: ../bin/draknfs:172
#, fuzzy, c-format
msgid "Secured Connection:"
msgstr "इन्टरनेट संबंध"

#: ../bin/draknfs:173
#, c-format
msgid "Read-Only share:"
msgstr ""

#: ../bin/draknfs:174
#, c-format
msgid "Subtree checking:"
msgstr ""

#: ../bin/draknfs:176
#, c-format
msgid "Advanced Options"
msgstr ""

#: ../bin/draknfs:177
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> this option requires that requests "
"originate on an internet port less than IPPORT_RESERVED (1024). This option "
"is on by default."
msgstr ""

#: ../bin/draknfs:178
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> allow either only read or both "
"read and write requests on this NFS volume. The default is to disallow any "
"request which changes the filesystem. This can also be made explicit by "
"using this option."
msgstr ""

#: ../bin/draknfs:179
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> disallows the NFS server to "
"violate the NFS protocol and to reply to requests before any changes made by "
"these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""

#: ../bin/draknfs:180
#, c-format
msgid ""
"<span foreground=\"royalblue3\">%s</span> enable subtree checking which can "
"help improve security in some cases, but can decrease reliability. See "
"exports(5) man page for more details."
msgstr ""

#: ../bin/draknfs:185 ../bin/draksambashare:623 ../bin/draksambashare:790
#, c-format
msgid "Information"
msgstr "सूचना"

#: ../bin/draknfs:266
#, c-format
msgid "Directory"
msgstr "डिरेक्ट्री"

#: ../bin/draknfs:270
#, c-format
msgid "Draknfs entry"
msgstr ""

#: ../bin/draknfs:279
#, c-format
msgid "Please add an NFS share to be able to modify it."
msgstr ""

#: ../bin/draknfs:353 ../bin/draksambashare:598
#, c-format
msgid "Advanced options"
msgstr "विस्तृत विकल्प"

#: ../bin/draknfs:368
#, c-format
msgid "NFS directory"
msgstr ""

#: ../bin/draknfs:369 ../bin/draksambashare:381 ../bin/draksambashare:588
#: ../bin/draksambashare:767
#, c-format
msgid "Directory:"
msgstr "डिरेक्ट्री:"

#: ../bin/draknfs:370
#, fuzzy, c-format
msgid "Host access"
msgstr "होस्ट का नाम"

#: ../bin/draknfs:371
#, c-format
msgid "Access:"
msgstr "पहुँच:"

#: ../bin/draknfs:372
#, c-format
msgid "User ID Mapping"
msgstr ""

#: ../bin/draknfs:373
#, c-format
msgid "User ID:"
msgstr "उपयोक्ता पहचान:"

#: ../bin/draknfs:374
#, c-format
msgid "Anonymous user ID:"
msgstr ""

#: ../bin/draknfs:375
#, c-format
msgid "Anonymous Group ID:"
msgstr ""

#: ../bin/draknfs:412
#, fuzzy, c-format
msgid "Please specify a directory to share."
msgstr "कृपया इस कार्ड हेतु बेतार के पैरामीटरों को बतायें:"

#: ../bin/draknfs:414
#, c-format
msgid "Can't create this directory."
msgstr ""

#: ../bin/draknfs:417
#, c-format
msgid "You must specify hosts access."
msgstr ""

#: ../bin/draknfs:497
#, c-format
msgid "Share Directory"
msgstr ""

#: ../bin/draknfs:497
#, c-format
msgid "Hosts Wildcard"
msgstr ""

#: ../bin/draknfs:497
#, c-format
msgid "General Options"
msgstr "सामान्य विकल्प"

#: ../bin/draknfs:497
#, c-format
msgid "Custom Options"
msgstr ""

#: ../bin/draknfs:509 ../bin/draksambashare:396 ../bin/draksambashare:625
#: ../bin/draksambashare:792
#, c-format
msgid "Please enter a directory to share."
msgstr ""

#: ../bin/draknfs:516
#, c-format
msgid "Please use the modify button to set right access."
msgstr ""

#: ../bin/draknfs:531
#, c-format
msgid "Manage NFS shares"
msgstr ""

#: ../bin/draknfs:570
#, c-format
msgid "DrakNFS manage NFS shares"
msgstr ""

#: ../bin/draknfs:579
#, c-format
msgid "Failed to add NFS share."
msgstr ""

#: ../bin/draknfs:586
#, c-format
msgid "Failed to Modify NFS share."
msgstr ""

#: ../bin/draknfs:593
#, c-format
msgid "Failed to remove an NFS share."
msgstr ""

#: ../bin/draksambashare:64
#, c-format
msgid "User name"
msgstr "उपयोगकर्ता का नाम"

#: ../bin/draksambashare:71 ../bin/draksambashare:99
#, c-format
msgid "Share name"
msgstr "सहभाजिता का नाम"

#: ../bin/draksambashare:72 ../bin/draksambashare:100
#, fuzzy, c-format
msgid "Share directory"
msgstr "डिरेक्ट्री नहीं है"

#: ../bin/draksambashare:73 ../bin/draksambashare:101
#: ../bin/draksambashare:118
#, c-format
msgid "Comment"
msgstr "टिप्पणी"

#: ../bin/draksambashare:74 ../bin/draksambashare:119
#, fuzzy, c-format
msgid "Browseable"
msgstr "ब्राउज़"

#: ../bin/draksambashare:75
#, c-format
msgid "Public"
msgstr "सार्वजनिक"

#: ../bin/draksambashare:76 ../bin/draksambashare:124
#, c-format
msgid "Writable"
msgstr "लिखनेयोग्य"

#: ../bin/draksambashare:77 ../bin/draksambashare:165
#, fuzzy, c-format
msgid "Create mask"
msgstr "निर्माण करें"

#: ../bin/draksambashare:78 ../bin/draksambashare:166
#, fuzzy, c-format
msgid "Directory mask"
msgstr "बैक-अपों के साथ निर्देशिका"

#: ../bin/draksambashare:79
#, fuzzy, c-format
msgid "Read list"
msgstr "पठन"

#: ../bin/draksambashare:80 ../bin/draksambashare:125
#: ../bin/draksambashare:602
#, fuzzy, c-format
msgid "Write list"
msgstr "लेखन"

#: ../bin/draksambashare:81 ../bin/draksambashare:157
#, fuzzy, c-format
msgid "Admin users"
msgstr "उपयोगकर्ता जोड़ें"

#: ../bin/draksambashare:82 ../bin/draksambashare:158
#, fuzzy, c-format
msgid "Valid users"
msgstr "उपयोगकर्ता जोड़ें"

#: ../bin/draksambashare:83
#, fuzzy, c-format
msgid "Inherit Permissions"
msgstr "अनुमतियां"

#: ../bin/draksambashare:84 ../bin/draksambashare:159
#, fuzzy, c-format
msgid "Hide dot files"
msgstr "संचिकाओं को छुपाओं"

#: ../bin/draksambashare:85 ../bin/draksambashare:160
#, c-format
msgid "Hide files"
msgstr "संचिकाओं को छुपाओं"

#: ../bin/draksambashare:86 ../bin/draksambashare:164
#, fuzzy, c-format
msgid "Preserve case"
msgstr "वरीयतायें"

#: ../bin/draksambashare:87
#, fuzzy, c-format
msgid "Force create mode"
msgstr "आपका प्रिंटर मॉडल"

#: ../bin/draksambashare:88
#, fuzzy, c-format
msgid "Force group"
msgstr "पीएफ़एस समूह"

#: ../bin/draksambashare:89 ../bin/draksambashare:163
#, fuzzy, c-format
msgid "Default case"
msgstr "डिफ़ाल्ट उपयोगकर्ता"

#: ../bin/draksambashare:116
#, c-format
msgid "Printer name"
msgstr "मुद्रक नाम"

#: ../bin/draksambashare:117
#, c-format
msgid "Path"
msgstr "पथ"

#: ../bin/draksambashare:120 ../bin/draksambashare:594
#, fuzzy, c-format
msgid "Printable"
msgstr "सक्रियता"

#: ../bin/draksambashare:121
#, fuzzy, c-format
msgid "Print Command"
msgstr "निर्देश"

#: ../bin/draksambashare:122
#, fuzzy, c-format
msgid "LPQ command"
msgstr "निर्देश"

#: ../bin/draksambashare:123
#, c-format
msgid "Guest ok"
msgstr ""

#: ../bin/draksambashare:126 ../bin/draksambashare:167
#: ../bin/draksambashare:603
#, fuzzy, c-format
msgid "Inherit permissions"
msgstr "अनुमतियां"

#: ../bin/draksambashare:127
#, c-format
msgid "Printing"
msgstr "प्रिंटिंग"

#: ../bin/draksambashare:128
#, fuzzy, c-format
msgid "Create mode"
msgstr "कार्ड का मॉडल:"

#: ../bin/draksambashare:129
#, fuzzy, c-format
msgid "Use client driver"
msgstr "टेलीनेट सर्वर"

#: ../bin/draksambashare:155
#, fuzzy, c-format
msgid "Read List"
msgstr "सूची को हटायें"

#: ../bin/draksambashare:156
#, fuzzy, c-format
msgid "Write List"
msgstr "लेखन"

#: ../bin/draksambashare:161
#, fuzzy, c-format
msgid "Force Group"
msgstr "समूह"

#: ../bin/draksambashare:162
#, c-format
msgid "Force create group"
msgstr ""

#: ../bin/draksambashare:178 ../bin/draksambashare:179
#: ../bin/draksambashare:180 ../bin/draksambashare:181
#, fuzzy, c-format
msgid "/_Samba Server"
msgstr "वेब सर्वर"

#: ../bin/draksambashare:179
#, fuzzy, c-format
msgid "/_Configure"
msgstr "संरचना"

#: ../bin/draksambashare:183
#, c-format
msgid "/_Help"
msgstr "/सहायता (_H)"

#: ../bin/draksambashare:183
#, fuzzy, c-format
msgid "/_Samba Documentation"
msgstr "विखंडीकरण"

#: ../bin/draksambashare:189 ../bin/draksambashare:190
#, c-format
msgid "/_About"
msgstr "/के बारे में (_A)"

#: ../bin/draksambashare:189
#, c-format
msgid "/_Report Bug"
msgstr "/दोष के बारे में बतायें (_R)"

#: ../bin/draksambashare:190
#, c-format
msgid "/_About..."
msgstr "/के बारे में (_A)..."

#: ../bin/draksambashare:193
#, fuzzy, c-format
msgid "Draksambashare"
msgstr "सॉबा सर्वर"

#: ../bin/draksambashare:195
#, c-format
msgid "Copyright (C) %s by Mandriva"
msgstr ""

#: ../bin/draksambashare:197
#, c-format
msgid "This is a simple tool to easily manage Samba configuration."
msgstr ""

#: ../bin/draksambashare:199
#, c-format
msgid "Mandriva Linux"
msgstr "मैनड्रैकलिनक्स"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: ../bin/draksambashare:204
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr "धनञ्जय शर्मा (Dhananjaya Sharma)\n"

#: ../bin/draksambashare:228
#, c-format
msgid "Restarting/Reloading Samba server..."
msgstr ""

#: ../bin/draksambashare:229
#, c-format
msgid "Error Restarting/Reloading Samba server"
msgstr ""

#: ../bin/draksambashare:369 ../bin/draksambashare:567
#: ../bin/draksambashare:688
#, c-format
msgid "Open"
msgstr "खोलें"

#: ../bin/draksambashare:372
#, fuzzy, c-format
msgid "DrakSamba add entry"
msgstr "सॉबा सर्वर"

#: ../bin/draksambashare:376
#, fuzzy, c-format
msgid "Add a share"
msgstr "सॉबा सर्वर"

#: ../bin/draksambashare:379
#, fuzzy, c-format
msgid "Name of the share:"
msgstr "प्रमाणपत्र का नाम"

#: ../bin/draksambashare:380 ../bin/draksambashare:587
#: ../bin/draksambashare:768
#, c-format
msgid "Comment:"
msgstr "टिप्पणीः"

#: ../bin/draksambashare:392
#, c-format
msgid ""
"Share with the same name already exist or share name empty, please choose "
"another name."
msgstr ""

#: ../bin/draksambashare:399
#, c-format
msgid "Can't create the directory, please enter a correct path."
msgstr ""

#: ../bin/draksambashare:402 ../bin/draksambashare:623
#: ../bin/draksambashare:790
#, fuzzy, c-format
msgid "Please enter a Comment for this share."
msgstr "कृपया इस कार्ड हेतु बेतार के पैरामीटरों को बतायें:"

#: ../bin/draksambashare:439
#, c-format
msgid "pdf-gen - a PDF generator"
msgstr ""

#: ../bin/draksambashare:440
#, c-format
msgid "printers - all printers available"
msgstr ""

#: ../bin/draksambashare:444
#, c-format
msgid "Add Special Printer share"
msgstr ""

#: ../bin/draksambashare:447
#, c-format
msgid ""
"Goal of this wizard is to easily create a new special printer Samba share."
msgstr ""

#: ../bin/draksambashare:454
#, fuzzy, c-format
msgid "A PDF generator already exists."
msgstr "\"%s\" प्रोफ़ाइल पहिले से विद्यमान है !"

#: ../bin/draksambashare:478
#, fuzzy, c-format
msgid "Printers and print$ already exist."
msgstr "\"%s\" प्रोफ़ाइल पहिले से विद्यमान है !"

#: ../bin/draksambashare:528 ../bin/draksambashare:1191
#, c-format
msgid "Congratulations"
msgstr "बधाई हो"

#: ../bin/draksambashare:529
#, c-format
msgid "The wizard successfully added the printer Samba share"
msgstr ""

#: ../bin/draksambashare:551
#, c-format
msgid "Please add or select a Samba printer share to be able to modify it."
msgstr ""

#: ../bin/draksambashare:570
#, c-format
msgid "DrakSamba Printers entry"
msgstr ""

#: ../bin/draksambashare:583
#, c-format
msgid "Printer share"
msgstr ""

#: ../bin/draksambashare:586
#, c-format
msgid "Printer name:"
msgstr "प्रिंटर नामः"

#: ../bin/draksambashare:592 ../bin/draksambashare:773
#, fuzzy, c-format
msgid "Writable:"
msgstr "लेखन"

#: ../bin/draksambashare:593 ../bin/draksambashare:774
#, fuzzy, c-format
msgid "Browseable:"
msgstr "ब्राउज़"

#: ../bin/draksambashare:600
#, fuzzy, c-format
msgid "Printer access"
msgstr "इन्टरनेट पहुँच"

#: ../bin/draksambashare:604
#, c-format
msgid "Guest ok:"
msgstr ""

#: ../bin/draksambashare:605
#, fuzzy, c-format
msgid "Create mode:"
msgstr "कार्ड का मॉडल:"

#: ../bin/draksambashare:609
#, c-format
msgid "Printer command"
msgstr ""

#: ../bin/draksambashare:611
#, c-format
msgid "Print command:"
msgstr ""

#: ../bin/draksambashare:612
#, fuzzy, c-format
msgid "LPQ command:"
msgstr "निर्देश"

#: ../bin/draksambashare:613
#, c-format
msgid "Printing:"
msgstr "छाप रहे हैंः"

#: ../bin/draksambashare:629
#, c-format
msgid "create mode should be numeric. ie: 0755."
msgstr ""

#: ../bin/draksambashare:691
#, c-format
msgid "DrakSamba entry"
msgstr ""

#: ../bin/draksambashare:696
#, c-format
msgid "Please add or select a Samba share to be able to modify it."
msgstr ""

#: ../bin/draksambashare:719
#, fuzzy, c-format
msgid "Samba user access"
msgstr "सॉबा सर्वर"

#: ../bin/draksambashare:727
#, fuzzy, c-format
msgid "Mask options"
msgstr "आधार-भूत विकल्प"

#: ../bin/draksambashare:741
#, fuzzy, c-format
msgid "Display options"
msgstr "विकल्पों को बतायें"

#: ../bin/draksambashare:763
#, fuzzy, c-format
msgid "Samba share directory"
msgstr "डिरेक्ट्री नहीं है"

#: ../bin/draksambashare:766
#, fuzzy, c-format
msgid "Share name:"
msgstr "सहभाजिता का नाम"

#: ../bin/draksambashare:772
#, c-format
msgid "Public:"
msgstr ""

#: ../bin/draksambashare:796
#, c-format
msgid ""
"Create mask, create mode and directory mask should be numeric. ie: 0755."
msgstr ""

#: ../bin/draksambashare:803
#, c-format
msgid "Please create this Samba user: %s"
msgstr ""

#: ../bin/draksambashare:915
#, c-format
msgid "Add Samba user"
msgstr ""

#: ../bin/draksambashare:930
#, fuzzy, c-format
msgid "User information"
msgstr "मेरे विण्डो विभाजन का उपयोग करो"

#: ../bin/draksambashare:932
#, c-format
msgid "User name:"
msgstr "उपयोक्ता नामः"

#: ../bin/draksambashare:933
#, c-format
msgid "Password:"
msgstr "पासवर्ड: "

#: ../bin/draksambashare:1047
#, c-format
msgid "PDC - primary domain controller"
msgstr ""

#: ../bin/draksambashare:1048
#, c-format
msgid "Standalone - standalone server"
msgstr ""

#: ../bin/draksambashare:1054
#, c-format
msgid "Samba Wizard"
msgstr ""

#: ../bin/draksambashare:1057
#, fuzzy, c-format
msgid "Samba server configuration Wizard"
msgstr "विपत्र चेतावनी संरचना"

#: ../bin/draksambashare:1057
#, c-format
msgid ""
"Samba allows your server to behave as a file and print server for "
"workstations running non-Linux systems."
msgstr ""

#: ../bin/draksambashare:1073
#, c-format
msgid "PDC server: primary domain controller"
msgstr ""

#: ../bin/draksambashare:1073
#, c-format
msgid ""
"Server configured as a PDC is responsible for Windows authentication "
"throughout the domain."
msgstr ""

#: ../bin/draksambashare:1073
#, c-format
msgid ""
"Single server installations may use smbpasswd or tdbsam password backends"
msgstr ""

#: ../bin/draksambashare:1073
#, c-format
msgid ""
"Domain master = yes, causes the server to register the NetBIOS name <pdc "
"name>. This name will be recognized by other servers."
msgstr ""

#: ../bin/draksambashare:1090
#, c-format
msgid "Wins support:"
msgstr ""

#: ../bin/draksambashare:1091
#, fuzzy, c-format
msgid "admin users:"
msgstr "उपयोगकर्ता जोड़ें"

#: ../bin/draksambashare:1091
#, c-format
msgid "root @adm"
msgstr ""

#: ../bin/draksambashare:1092
#, c-format
msgid "Os level:"
msgstr ""

#: ../bin/draksambashare:1092
#, c-format
msgid ""
"The global os level option dictates the operating system level at which "
"Samba will masquerade during a browser election. If you wish to have Samba "
"win an election and become the master browser, you can set the level above "
"that of the operating system on your network with the highest current value. "
"ie: os level = 34"
msgstr ""

#: ../bin/draksambashare:1096
#, c-format
msgid "The domain is wrong."
msgstr ""

#: ../bin/draksambashare:1103
#, fuzzy, c-format
msgid "Workgroup"
msgstr "पीएफ़एस समूह"

#: ../bin/draksambashare:1103
#, c-format
msgid "Samba needs to know the Windows Workgroup it will serve."
msgstr ""

#: ../bin/draksambashare:1110 ../bin/draksambashare:1174
#, fuzzy, c-format
msgid "Workgroup:"
msgstr "पीएफ़एस समूह"

#: ../bin/draksambashare:1111
#, fuzzy, c-format
msgid "Netbios name:"
msgstr "होस्ट का नाम"

#: ../bin/draksambashare:1115
#, c-format
msgid "The Workgroup is wrong."
msgstr ""

#: ../bin/draksambashare:1122 ../bin/draksambashare:1132
#, fuzzy, c-format
msgid "Security mode"
msgstr "सुरक्षा नीतियां"

#: ../bin/draksambashare:1122
#, c-format
msgid ""
"User level: the client sends a session setup request directly following "
"protocol negotiation. This request provides a username and password."
msgstr ""

#: ../bin/draksambashare:1122
#, c-format
msgid "Share level: the client authenticates itself separately for each share"
msgstr ""

#: ../bin/draksambashare:1122
#, c-format
msgid ""
"Domain level: provides a mechanism for storing all user and group accounts "
"in a central, shared, account repository. The centralized account repository "
"is shared between domain (security) controllers."
msgstr ""

#: ../bin/draksambashare:1133
#, fuzzy, c-format
msgid "Hosts allow"
msgstr "होस्ट का नाम"

#: ../bin/draksambashare:1138
#, c-format
msgid "Server Banner."
msgstr ""

#: ../bin/draksambashare:1138
#, c-format
msgid ""
"The banner is the way this server will be described in the Windows "
"workstations."
msgstr ""

#: ../bin/draksambashare:1143
#, c-format
msgid "Banner:"
msgstr ""

#: ../bin/draksambashare:1147
#, c-format
msgid "The Server Banner is incorrect."
msgstr ""

#: ../bin/draksambashare:1154
#, c-format
msgid "Samba Log"
msgstr ""

#: ../bin/draksambashare:1154
#, c-format
msgid ""
"Log file: use file.%m to use a separate log file for each machine that "
"connects"
msgstr ""

#: ../bin/draksambashare:1154
#, c-format
msgid "Log level: set the log (verbosity) level (0 <= log level <= 10)"
msgstr ""

#: ../bin/draksambashare:1154
#, c-format
msgid "Max Log size: put a capping on the size of the log files (in Kb)."
msgstr ""

#: ../bin/draksambashare:1161 ../bin/draksambashare:1176
#, fuzzy, c-format
msgid "Log file:"
msgstr "प्रोफ़ाइल्स"

#: ../bin/draksambashare:1162
#, c-format
msgid "Max log size:"
msgstr ""

#: ../bin/draksambashare:1163
#, fuzzy, c-format
msgid "Log level:"
msgstr "स्तर"

#: ../bin/draksambashare:1168
#, c-format
msgid "The wizard collected the following parameters to configure Samba."
msgstr ""

#: ../bin/draksambashare:1168
#, c-format
msgid ""
"To accept these values, and configure your server, click the Next button or "
"use the Back button to correct them."
msgstr ""

#: ../bin/draksambashare:1168
#, c-format
msgid ""
"If you have previously create some shares, they will appear in this "
"configuration. Run 'drakwizard sambashare' to manage your shares."
msgstr ""

#: ../bin/draksambashare:1173
#, fuzzy, c-format
msgid "Samba type:"
msgstr "रास्ते का प्रकार"

#: ../bin/draksambashare:1175
#, c-format
msgid "Server banner:"
msgstr ""

#: ../bin/draksambashare:1191
#, c-format
msgid "The wizard successfully configured your Samba server."
msgstr ""

#: ../bin/draksambashare:1246
#, c-format
msgid "The Samba wizard has unexpectedly failed:"
msgstr ""

#: ../bin/draksambashare:1260
#, fuzzy, c-format
msgid "Manage Samba configuration"
msgstr "विपत्र चेतावनी संरचना"

#: ../bin/draksambashare:1348
#, c-format
msgid "Failed to Modify Samba share."
msgstr ""

#: ../bin/draksambashare:1357
#, c-format
msgid "Failed to remove a Samba share."
msgstr ""

#: ../bin/draksambashare:1364
#, c-format
msgid "File share"
msgstr ""

#: ../bin/draksambashare:1379
#, c-format
msgid "Failed to Modify."
msgstr ""

#: ../bin/draksambashare:1388
#, c-format
msgid "Failed to remove."
msgstr ""

#: ../bin/draksambashare:1395
#, c-format
msgid "Printers"
msgstr "प्रिंटर"

#: ../bin/draksambashare:1407
#, c-format
msgid "Failed to add user."
msgstr ""

#: ../bin/draksambashare:1416
#, c-format
msgid "Failed to change user password."
msgstr ""

#: ../bin/draksambashare:1428
#, c-format
msgid "Failed to delete user."
msgstr ""

#: ../bin/draksambashare:1433
#, c-format
msgid "Userdrake"
msgstr "यूज़रड्रैक"

#: ../bin/draksambashare:1441
#, c-format
msgid "Samba Users"
msgstr ""

#: ../bin/draksambashare:1449
#, c-format
msgid "Please configure your Samba server"
msgstr ""

#: ../bin/draksambashare:1449
#, c-format
msgid ""
"It seems this is the first time you run this tool.\n"
"A wizard will appear to configure a basic Samba server"
msgstr ""

#: ../bin/draksambashare:1457
#, c-format
msgid "DrakSamba manage Samba shares"
msgstr ""

#: ../bin/drakvpn-old:65
#, c-format
msgid "DrakVPN"
msgstr "ड्रैक वीपीएन"

#: ../bin/drakvpn-old:87
#, c-format
msgid "The VPN connection is enabled."
msgstr "वीपीएन कनेक्शन अब सक्रिय है ।"

#: ../bin/drakvpn-old:88
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
"\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"एक वीपीएन कनेक्शन की स्थापना को पहिले से ही किया जा चुका है । \n"
"\n"
"यह वर्तमान में सक्रिय है । \n"
"\n"
"आप क्या करना चाहते है?"

#: ../bin/drakvpn-old:93
#, c-format
msgid "disable"
msgstr "अशक्त"

#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119
#, c-format
msgid "reconfigure"
msgstr "पुनः संरचना"

#: ../bin/drakvpn-old:93 ../bin/drakvpn-old:119 ../bin/drakvpn-old:432
#, c-format
msgid "dismiss"
msgstr "खारिज"

#: ../bin/drakvpn-old:97
#, c-format
msgid "Disabling VPN..."
msgstr "वीपीएन को निष्क्रिय किया जा रहा है..."

#: ../bin/drakvpn-old:106
#, c-format
msgid "The VPN connection is now disabled."
msgstr "वीपीएन कनेक्शन अब निष्क्रिय है ।"

#: ../bin/drakvpn-old:113
#, c-format
msgid "VPN connection currently disabled"
msgstr "वीपीएन कनेक्शन वर्तमान में निष्क्रिय है"

#: ../bin/drakvpn-old:114
#, c-format
msgid ""
"The setup of a VPN connection has already been done.\n"
"\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"एक वीपीएन कनेक्शन की स्थापना को पहिले से ही किया जा चुका है । \n"
"\n"
"यह वर्तमान में सक्रिय है । \n"
"\n"
"आप क्या करना चाहते है?"

#: ../bin/drakvpn-old:119
#, c-format
msgid "enable"
msgstr "सक्रिय"

#: ../bin/drakvpn-old:127
#, c-format
msgid "Enabling VPN..."
msgstr "वीपीएन को सक्रिय़ किया जा रहा है..."

#: ../bin/drakvpn-old:133
#, c-format
msgid "The VPN connection is now enabled."
msgstr "वीपीएन कनेक्शन अब सक्रिय है ।"

#: ../bin/drakvpn-old:147 ../bin/drakvpn-old:164
#, c-format
msgid "Simple VPN setup."
msgstr "सरल वीपीएन स्थापना।"

#: ../bin/drakvpn-old:148
#, c-format
msgid ""
"You are about to configure your computer to use a VPN connection.\n"
"\n"
"With this feature, computers on your local private network and computers\n"
"on some other remote private networks, can share resources, through\n"
"their respective firewalls, over the Internet, in a secure manner. \n"
"\n"
"The communication over the Internet is encrypted. The local and remote\n"
"computers look as if they were on the same network.\n"
"\n"
"Make sure you have configured your Network/Internet access using\n"
"drakconnect before going any further."
msgstr ""

#: ../bin/drakvpn-old:165
#, c-format
msgid ""
"VPN connection.\n"
"\n"
"This program is based on the following projects:\n"
" - FreeSwan: \t\t\thttp://www.freeswan.org/\n"
" - Super-FreeSwan: \t\thttp://www.freeswan.ca/\n"
" - ipsec-tools: \t\t\thttp://ipsec-tools.sourceforge.net/\n"
" - ipsec-howto: \t\thttp://www.ipsec-howto.org\n"
" - the docs and man pages coming with the %s package\n"
"\n"
"Please read AT LEAST the ipsec-howto docs\n"
"before going any further."
msgstr ""

#: ../bin/drakvpn-old:208
#, c-format
msgid "Problems installing package %s"
msgstr "%s पैकेज के संसाधन में समस्या"

#: ../bin/drakvpn-old:222
#, c-format
msgid "Security Policies"
msgstr "सुरक्षा नीतियां"

#: ../bin/drakvpn-old:222
#, c-format
msgid "IKE daemon racoon"
msgstr ""

#: ../bin/drakvpn-old:224
#, c-format
msgid "Configuration file"
msgstr "संरचना संचिका"

#: ../bin/drakvpn-old:225
#, c-format
msgid ""
"Configuration step!\n"
"\n"
"You need to define the Security Policies and then to \n"
"configure the automatic key exchange (IKE) daemon. \n"
"The KAME IKE daemon we're using is called 'racoon'.\n"
"\n"
"What would you like to configure?\n"
msgstr ""

#: ../bin/drakvpn-old:245 ../bin/drakvpn-old:382
#, c-format
msgid "%s entries"
msgstr "%s प्रविष्टियां"

#: ../bin/drakvpn-old:246
#, c-format
msgid ""
"The %s file contents\n"
"is divided into sections.\n"
"\n"
"You can now:\n"
"\n"
"  - display, add, edit, or remove sections, then\n"
"  - commit the changes\n"
"\n"
"What would you like to do?\n"
msgstr ""
"इस %s संचिका की विषय-वस्तु\n"
"को विभागों में विभाजित कर दिया गया है।\n"
"\n"
"आप अब निम्न कर सकते है :\n"
"\n"
"  - विभागों को देखें, जोड़ें, संपादन करें या हटाएँ,\n"
"  - और फ़िर परिवर्तनों को प्रतिबद्ध करें\n"
"\n"
"आप क्या करना चाहते है ?\n"

#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid ""
"_:display here is a verb\n"
"Display"
msgstr "प्रदर्शन"

#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Edit"
msgstr "संपादन"

#: ../bin/drakvpn-old:253 ../bin/drakvpn-old:391
#, c-format
msgid "Commit"
msgstr "सौपना"

#: ../bin/drakvpn-old:267 ../bin/drakvpn-old:271 ../bin/drakvpn-old:406
#: ../bin/drakvpn-old:410
#, c-format
msgid ""
"_:display here is a verb\n"
"Display configuration"
msgstr "प्रदर्शन संरचना"

#: ../bin/drakvpn-old:272
#, c-format
msgid ""
"The %s file does not exist.\n"
"\n"
"This must be a new configuration.\n"
"\n"
"You'll have to go back and choose 'add'.\n"
msgstr ""
"यह %s संचिका विद्यमान नहीं है।\n"
"\n"
"इसको एक नयी संरचना होनी चाहिए।\n"
"\n"
"आपको पीछे जाना होगा और 'जोडें' का चयन करना होगा।\n"

#: ../bin/drakvpn-old:301
#, c-format
msgid ""
"Add a Security Policy.\n"
"\n"
"You can now add a Security Policy.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""
"एक सुरक्षा नीति को जोड़ें।\n"
"\n"
"आप अब एक सुरक्षा नीति जोड़ सकते है।\n"
"\n"
"जारी रहें का चयन करें जब आप सूचना को लिखने के लिए तैयार हो।\n"

#: ../bin/drakvpn-old:333 ../bin/drakvpn-old:523
#, c-format
msgid "Edit section"
msgstr "संपादन अनुभाग"

#: ../bin/drakvpn-old:334
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can choose here below the one you want to edit \n"
"and then click on next.\n"
msgstr ""
"आपकी %s संचिका में अनेकों विभाग या कनेक्शन है।\n"
"\n"
"आप निम्नलिखित में से एक का चयन कर सकते है जिसे आप संपादित करना चाहते है\n"
"और तदौपरान्त अगले पर क्लिक करें।\n"

#: ../bin/drakvpn-old:337 ../bin/drakvpn-old:357 ../bin/drakvpn-old:528
#: ../bin/drakvpn-old:574
#, c-format
msgid "Section names"
msgstr "अनुभाग के नाम"

#: ../bin/drakvpn-old:344
#, c-format
msgid ""
"Edit a Security Policy.\n"
"\n"
"You can now edit a Security Policy.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: ../bin/drakvpn-old:353 ../bin/drakvpn-old:570
#, c-format
msgid "Remove section"
msgstr "अनुभाग को हटाना"

#: ../bin/drakvpn-old:354 ../bin/drakvpn-old:571
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can choose here below the one you want to remove\n"
"and then click on next.\n"
msgstr ""

#: ../bin/drakvpn-old:383
#, c-format
msgid ""
"The racoon.conf file configuration.\n"
"\n"
"The contents of this file is divided into sections.\n"
"You can now:\n"
"  - display \t\t (display the file contents)\n"
"  - add\t\t\t (add one section)\n"
"  - edit \t\t\t (modify parameters of an existing section)\n"
"  - remove \t\t (remove an existing section)\n"
"  - commit \t\t (writes the changes to the real file)"
msgstr ""

#: ../bin/drakvpn-old:411
#, c-format
msgid ""
"The %s file does not exist\n"
"\n"
"This must be a new configuration.\n"
"\n"
"You'll have to go back and choose configure.\n"
msgstr ""

#: ../bin/drakvpn-old:425
#, c-format
msgid "racoon.conf entries"
msgstr ""

#: ../bin/drakvpn-old:426
#, c-format
msgid ""
"The 'add' sections step.\n"
"\n"
"Here below is the racoon.conf file skeleton:\n"
"\t'path'\n"
"\t'remote'\n"
"\t'sainfo' \n"
"\n"
"Choose the section you would like to add.\n"
msgstr ""

#: ../bin/drakvpn-old:432
#, c-format
msgid "path"
msgstr "रास्ता"

#: ../bin/drakvpn-old:432
#, c-format
msgid "remote"
msgstr "सुदूर"

#: ../bin/drakvpn-old:432
#, c-format
msgid "sainfo"
msgstr "एसऐइन्फ़ो"

#: ../bin/drakvpn-old:440
#, c-format
msgid ""
"The 'add path' section step.\n"
"\n"
"The path sections have to be on top of your racoon.conf file.\n"
"\n"
"Put your mouse over the certificate entry to obtain online help."
msgstr ""

#: ../bin/drakvpn-old:443
#, c-format
msgid "path type"
msgstr "रास्ते का प्रकार"

#: ../bin/drakvpn-old:447
#, c-format
msgid ""
"path include path: specifies a path to include\n"
"a file. See File Inclusion.\n"
"\tExample: path include '/etc/racoon'\n"
"\n"
"path pre_shared_key file: specifies a file containing\n"
"pre-shared key(s) for various ID(s). See Pre-shared key File.\n"
"\tExample: path pre_shared_key '/etc/racoon/psk.txt' ;\n"
"\n"
"path certificate path: racoon(8) will search this directory\n"
"if a certificate or certificate request is received.\n"
"\tExample: path certificate '/etc/cert' ;\n"
"\n"
"File Inclusion: include file \n"
"other configuration files can be included.\n"
"\tExample: include \"remote.conf\" ;\n"
"\n"
"Pre-shared key File: Pre-shared key file defines a pair\n"
"of the identifier and the shared secret key which are used at\n"
"Pre-shared key authentication method in phase 1."
msgstr ""

#: ../bin/drakvpn-old:467 ../bin/drakvpn-old:560
#, c-format
msgid "real file"
msgstr "वास्तविक संचिका"

#: ../bin/drakvpn-old:490
#, c-format
msgid ""
"Make sure you already have the path sections\n"
"on the top of your racoon.conf file.\n"
"\n"
"You can now choose the remote settings.\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: ../bin/drakvpn-old:507
#, c-format
msgid ""
"Make sure you already have the path sections\n"
"on the top of your %s file.\n"
"\n"
"You can now choose the sainfo settings.\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: ../bin/drakvpn-old:524
#, c-format
msgid ""
"Your %s file has several sections or connections.\n"
"\n"
"You can choose here in the list below the one you want\n"
"to edit and then click on next.\n"
msgstr ""

#: ../bin/drakvpn-old:535
#, c-format
msgid ""
"Your %s file has several sections.\n"
"\n"
"\n"
"You can now edit the remote section entries.\n"
"\n"
"Choose continue when you are done to write the data.\n"
msgstr ""

#: ../bin/drakvpn-old:544
#, c-format
msgid ""
"Your %s file has several sections.\n"
"\n"
"You can now edit the sainfo section entries.\n"
"\n"
"Choose continue when you are done to write the data."
msgstr ""

#: ../bin/drakvpn-old:552
#, c-format
msgid ""
"This section has to be on top of your\n"
"%s file.\n"
"\n"
"Make sure all other sections follow these path\n"
"sections.\n"
"\n"
"You can now edit the path entries.\n"
"\n"
"Choose continue or previous when you are done.\n"
msgstr ""

#: ../bin/drakvpn-old:559
#, c-format
msgid "path_type"
msgstr "path_type"

#: ../bin/drakvpn-old:599
#, c-format
msgid "Congratulations!"
msgstr "बधाईयां!"

#: ../bin/drakvpn-old:600
#, c-format
msgid ""
"Everything has been configured.\n"
"\n"
"You may now share resources through the Internet,\n"
"in a secure way, using a VPN connection.\n"
"\n"
"You should make sure that the tunnels shorewall\n"
"section is configured."
msgstr ""
"सभी-कुछ संरचित हो गया है।\n"
"\n"
"एक वीपीएन कनेक्शन का उपयोग करते हुए, एक सुरक्षित रूप से,\n"
"अब आप संसाधनों को इन्टरनेट के माध्यम से साझा कर सकते है।\n"
"\n"
"आपको यह सुनिश्चित कर लेना चाहिए कि टनल्स शोरवाल विभागसंरचित है।"

#: ../bin/drakvpn-old:620
#, c-format
msgid "Sainfo source address"
msgstr ""

#: ../bin/drakvpn-old:621
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\t203.178.141.209 is the source address\n"
"\n"
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.1.0/24 is the source address"
msgstr ""

#: ../bin/drakvpn-old:638
#, c-format
msgid "Sainfo source protocol"
msgstr "Sainfo स्रोत प्रोटोकॉल"

#: ../bin/drakvpn-old:639
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\tthe first 'any' allows any protocol for the source"
msgstr ""

#: ../bin/drakvpn-old:653
#, c-format
msgid "Sainfo destination address"
msgstr "Sainfo गंतव्य स्थान का पता"

#: ../bin/drakvpn-old:654
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\t203.178.141.218 is the destination address\n"
"\n"
"sainfo address 172.16.1.0/24 any address 172.16.2.0/24 any\n"
"\t172.16.2.0/24 is the destination address"
msgstr ""

#: ../bin/drakvpn-old:671
#, c-format
msgid "Sainfo destination protocol"
msgstr "Sainfo गंतव्य स्थान का प्रोटोकॉल"

#: ../bin/drakvpn-old:672
#, c-format
msgid ""
"sainfo (source_id destination_id | anonymous) { statements }\n"
"defines the parameters of the IKE phase 2\n"
"(IPsec-SA establishment).\n"
"\n"
"source_id and destination_id are constructed like:\n"
"\n"
"\taddress address [/ prefix] [[port]] ul_proto\n"
"\n"
"Examples: \n"
"\n"
"sainfo anonymous (accepts connections from anywhere)\n"
"\tleave blank this entry if you want anonymous\n"
"\n"
"sainfo address 203.178.141.209 any address 203.178.141.218 any\n"
"\tthe last 'any' allows any protocol for the destination"
msgstr ""

#: ../bin/drakvpn-old:686
#, c-format
msgid "PFS group"
msgstr "पीएफ़एस समूह"

#: ../bin/drakvpn-old:688
#, c-format
msgid ""
"define the group of Diffie-Hellman exponentiations.\n"
"If you do not require PFS then you can omit this directive.\n"
"Any proposal will be accepted if you do not specify one.\n"
"group is one of the following: modp768, modp1024, modp1536.\n"
"Or you can define 1, 2, or 5 as the DH group number."
msgstr ""

#: ../bin/drakvpn-old:693
#, c-format
msgid "Lifetime number"
msgstr "जीवनपर्यन्त संख्या"

#: ../bin/drakvpn-old:694
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
"posed in the phase 1 negotiations.  Any proposal will be\n"
"accepted, and the attribute(s) will not be proposed to\n"
"the peer if you do not specify it(them).  They can be\n"
"individually specified in each proposal.\n"
"\n"
"Examples: \n"
"\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 30 sec;\n"
"        lifetime time 30 sec;\n"
"        lifetime time 60 sec;\n"
"\tlifetime time 12 hour;\n"
"\n"
"So, here, the lifetime numbers are 1, 1, 30, 30, 60 and 12.\n"
msgstr ""

#: ../bin/drakvpn-old:710
#, c-format
msgid "Lifetime unit"
msgstr "जीवनपर्यन्त इकाई"

#: ../bin/drakvpn-old:712
#, c-format
msgid ""
"define a lifetime of a certain time which will be pro-\n"
"posed in the phase 1 negotiations.  Any proposal will be\n"
"accepted, and the attribute(s) will not be proposed to\n"
"the peer if you do not specify it(them).  They can be\n"
"individually specified in each proposal.\n"
"\n"
"Examples: \n"
"\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 1 min;    # sec,min,hour\n"
"        lifetime time 30 sec;\n"
"        lifetime time 30 sec;\n"
"        lifetime time 60 sec;\n"
"\tlifetime time 12 hour;\n"
"\n"
"So, here, the lifetime units are 'min', 'min', 'sec', 'sec', 'sec' and "
"'hour'.\n"
msgstr ""

#: ../bin/drakvpn-old:728 ../bin/drakvpn-old:813
#, c-format
msgid "Encryption algorithm"
msgstr "गूढ़लेखन ऐल्गोरिथम"

#: ../bin/drakvpn-old:730
#, c-format
msgid "Authentication algorithm"
msgstr "प्रमाणीकरण ऐल्गोरिथम"

#: ../bin/drakvpn-old:732
#, c-format
msgid "Compression algorithm"
msgstr "संकुचन ऐल्गोरिथम"

#: ../bin/drakvpn-old:733
#, c-format
msgid "deflate"
msgstr "डिफ़्रेल्ट"

#: ../bin/drakvpn-old:740
#, c-format
msgid "Remote"
msgstr "सुदूर"

#: ../bin/drakvpn-old:741
#, c-format
msgid ""
"remote (address | anonymous) [[port]] { statements }\n"
"specifies the parameters for IKE phase 1 for each remote node.\n"
"The default port is 500.  If anonymous is specified, the state-\n"
"ments apply to all peers which do not match any other remote\n"
"directive.\n"
"\n"
"Examples: \n"
"\n"
"remote anonymous\n"
"remote ::1 [8000]"
msgstr ""

#: ../bin/drakvpn-old:749
#, c-format
msgid "Exchange mode"
msgstr "एक्सचेंज मोड"

#: ../bin/drakvpn-old:751
#, c-format
msgid ""
"defines the exchange mode for phase 1 when racoon is the\n"
"initiator. Also it means the acceptable exchange mode\n"
"when racoon is responder. More than one mode can be\n"
"specified by separating them with a comma. All of the\n"
"modes are acceptable. The first exchange mode is what\n"
"racoon uses when it is the initiator.\n"
msgstr ""

#: ../bin/drakvpn-old:757
#, c-format
msgid "Generate policy"
msgstr "नीति का निर्माण"

#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "off"
msgstr "ऑफ़"

#: ../bin/drakvpn-old:758 ../bin/drakvpn-old:774 ../bin/drakvpn-old:787
#, c-format
msgid "on"
msgstr "ऑन"

#: ../bin/drakvpn-old:759
#, c-format
msgid ""
"This directive is for the responder.  Therefore you\n"
"should set passive on in order that racoon(8) only\n"
"becomes a responder.  If the responder does not have any\n"
"policy in SPD during phase 2 negotiation, and the direc-\n"
"tive is set on, then racoon(8) will choose the first pro-\n"
"posal in the SA payload from the initiator, and generate\n"
"policy entries from the proposal.  It is useful to nego-\n"
"tiate with the client which is allocated IP address\n"
"dynamically.  Note that inappropriate policy might be\n"
"installed into the responder's SPD by the initiator.  So\n"
"that other communication might fail if such policies\n"
"installed due to some policy mismatches between the ini-\n"
"tiator and the responder.  This directive is ignored in\n"
"the initiator case.  The default value is off."
msgstr ""

#: ../bin/drakvpn-old:773
#, c-format
msgid "Passive"
msgstr "अकर्मण्य"

#: ../bin/drakvpn-old:775
#, c-format
msgid ""
"If you do not want to initiate the negotiation, set this\n"
"to on.  The default value is off.  It is useful for a\n"
"server."
msgstr ""
"यदि आप बातचीत का आरंभीकरण नहीं करना चाहते है, तो इसे\n"
"ऑन पर स्थापित करे दें । डिफ़ाल्ट ऑफ़ है। यह एक सर्वर हेतु\n"
"उपयोगी होता है।"

#: ../bin/drakvpn-old:778
#, c-format
msgid "Certificate type"
msgstr "प्रमाणपत्र का प्रकार"

#: ../bin/drakvpn-old:780
#, c-format
msgid "My certfile"
msgstr "मेरी प्रमाणपत्र संचिका"

#: ../bin/drakvpn-old:781
#, c-format
msgid "Name of the certificate"
msgstr "प्रमाणपत्र का नाम"

#: ../bin/drakvpn-old:782
#, c-format
msgid "My private key"
msgstr "मेरी व्यक्तिगत कुँजी"

#: ../bin/drakvpn-old:783
#, c-format
msgid "Name of the private key"
msgstr "व्यक्तिगत कुँजी का नाम"

#: ../bin/drakvpn-old:784
#, c-format
msgid "Peers certfile"
msgstr "पीयर्स प्रमाणपत्रसंचिका"

#: ../bin/drakvpn-old:785
#, c-format
msgid "Name of the peers certificate"
msgstr "पीयर्स प्रमाणपत्र का नाम"

#: ../bin/drakvpn-old:786
#, c-format
msgid "Verify cert"
msgstr "प्रमाणपत्र का सत्यापन"

#: ../bin/drakvpn-old:788
#, c-format
msgid ""
"If you do not want to verify the peer's certificate for\n"
"some reason, set this to off.  The default is on."
msgstr ""
"यदि आप किसी कारणवश पीयर के प्रमाणपत्र को सत्यापित नहीं करना चाहते है,\n"
"तो इस ऑफ़ पर स्थापित कर दें । डिफ़ाल्ट ऑन है।"

#: ../bin/drakvpn-old:790
#, c-format
msgid "My identifier"
msgstr "मेरी पहचान"

#: ../bin/drakvpn-old:791
#, c-format
msgid ""
"specifies the identifier sent to the remote host and the\n"
"type to use in the phase 1 negotiation.  address, FQDN,\n"
"user_fqdn, keyid and asn1dn can be used as an idtype.\n"
"they are used like:\n"
"\tmy_identifier address [address];\n"
"\t\tthe type is the IP address.  This is the default\n"
"\t\ttype if you do not specify an identifier to use.\n"
"\tmy_identifier user_fqdn string;\n"
"\t\tthe type is a USER_FQDN (user fully-qualified\n"
"\t\tdomain name).\n"
"\tmy_identifier FQDN string;\n"
"\t\tthe type is a FQDN (fully-qualified domain name).\n"
"\tmy_identifier keyid file;\n"
"\t\tthe type is a KEY_ID.\n"
"\tmy_identifier asn1dn [string];\n"
"\t\tthe type is an ASN.1 distinguished name.  If\n"
"\t\tstring is omitted, racoon(8) will get DN from\n"
"\t\tSubject field in the certificate.\n"
"\n"
"Examples: \n"
"\n"
"my_identifier user_fqdn \"myemail@mydomain.com\""
msgstr ""
"प्रथम चरण की बातचीत में उपयोग किये जाने वाले प्रकार और\n"
"सुदूर होस्ट को भेजे गयी पहचान को निर्दिष्ट करें। address, FQDN,\n"
"user_fqdn, keyid और asn1dn को एक आईडीप्रकार भांति उपयोग किया जा सकता है।\n"
"इनको इस प्रकार से उपयोग किया जाता है:\n"
"\tmy_identifier address [address];\n"
"\t\tयह प्रकार आईपी पता है। यह डिफ़ाल्ट प्रकार है\n"
"\t\tयदि आपने एक पहचान को उपयोगार्थ नहीं निर्दिष्ट किया है।\n"
"\tmy_identifier user_fqdn string;\n"
"\t\tयह प्रकार एक USER_FQDN\n"
"\t\tउपयोगकर्ता पूर्ण-विशेषित डोमेन नाम) है।\n"
"\tmy_identifier FQDN string;\n"
"\t\tयह प्रकार एक FQDN (पूर्ण-विशेषित डोमेन नाम) है।\n"
"\tmy_identifier keyid file;\n"
"\t\tयह प्रकार एक KEY_ID है।\n"
"\tmy_identifier asn1dn [string];\n"
"\t\tयह प्रकार एक ASN.1 विशिष्टताप्राप्त नाम है। यदि\n"
"\t\tस्ट्रिंग को छोड़ दिया गया है, racoon(8) प्रमाणपत्र में विषय प्रविष्टी\n"
"\t\tDN से प्राप्त करेगा।\n"
"\n"
"उदाहरण : \n"
"\n"
"my_identifier user_fqdn \"myemail@mydomain.com\""

#: ../bin/drakvpn-old:811
#, c-format
msgid "Peers identifier"
msgstr "पीयर्स पहचान"

#: ../bin/drakvpn-old:812
#, c-format
msgid "Proposal"
msgstr "प्रस्ताव"

#: ../bin/drakvpn-old:814
#, c-format
msgid ""
"specify the encryption algorithm used for the\n"
"phase 1 negotiation. This directive must be defined. \n"
"algorithm is one of the following: \n"
"\n"
"DES, 3DES, blowfish, cast128 for oakley.\n"
"\n"
"For other transforms, this statement should not be used."
msgstr ""
"प्रथम चरण की बातचीत के लिए उपयोगार्थ गूढ़लेखन ऐल्गोरिथम को निर्दिष्ट करें।\n"
"इस निदेश को अवश्य परिभाषित किया जाना चाहिए।\n"
"ऐल्गोरिथम निम्न में से एक है: \n"
"\n"
"oakley के लिए DES, 3DES, blowfish, cast128।\n"
"\n"
"अन्य रूपांतरणों के लिए, इस वाक्य का उपयोग नहीं किया जाना चाहिए ।"

#: ../bin/drakvpn-old:821
#, c-format
msgid "Hash algorithm"
msgstr "हैस ऐल्गोरिथम"

#: ../bin/drakvpn-old:822
#, c-format
msgid "Authentication method"
msgstr "प्रमाणीकरण विधि"

#: ../bin/drakvpn-old:823
#, c-format
msgid "DH group"
msgstr "डीएच समूह"

#: ../bin/drakvpn-old:830
#, c-format
msgid "Command"
msgstr "निर्देश"

#: ../bin/drakvpn-old:831
#, c-format
msgid "Source IP range"
msgstr "स्रोत आईपी रेंज"

#: ../bin/drakvpn-old:832
#, c-format
msgid "Destination IP range"
msgstr "गंतव्य आईपी रेंज"

#: ../bin/drakvpn-old:833
#, c-format
msgid "Upper-layer protocol"
msgstr "ऊपरी-परत प्रोटोकॉल"

#: ../bin/drakvpn-old:833 ../bin/drakvpn-old:840
#, c-format
msgid "any"
msgstr "कोई"

#: ../bin/drakvpn-old:835
#, c-format
msgid "Flag"
msgstr "फ़्लैग"

#: ../bin/drakvpn-old:836
#, c-format
msgid "Direction"
msgstr "दिशानिर्देश"

#: ../bin/drakvpn-old:837
#, c-format
msgid "IPsec policy"
msgstr "आईपीसेक्क नीति"

#: ../bin/drakvpn-old:837
#, c-format
msgid "ipsec"
msgstr "आईपीसेक्स"

#: ../bin/drakvpn-old:837
#, c-format
msgid "discard"
msgstr "डिस्कार्ड"

#: ../bin/drakvpn-old:837
#, c-format
msgid "none"
msgstr "कुछ भी नहीं"

#: ../bin/drakvpn-old:840
#, c-format
msgid "Mode"
msgstr "मोड"

#: ../bin/drakvpn-old:840
#, c-format
msgid "tunnel"
msgstr "टनल"

#: ../bin/drakvpn-old:840
#, c-format
msgid "transport"
msgstr "ट्रान्सपोर्ट"

#: ../bin/drakvpn-old:842
#, c-format
msgid "Source/destination"
msgstr "स्रोत/गंतव्य स्थान"

#: ../bin/drakvpn-old:843
#, c-format
msgid "Level"
msgstr "स्तर"

#: ../bin/drakvpn-old:843
#, c-format
msgid "require"
msgstr "आवश्यक"

#: ../bin/drakvpn-old:843
#, c-format
msgid "default"
msgstr "डिफ़ाल्ट"

#: ../bin/drakvpn-old:843
#, c-format
msgid "use"
msgstr "उपयोग"

#: ../bin/drakvpn-old:843
#, c-format
msgid "unique"
msgstr "मौलिक"

#: ../bin/net_applet:94
#, fuzzy, c-format
msgid "Network is up on interface %s."
msgstr "नेटवर्क इन्टरफ़ेस"

#: ../bin/net_applet:95
#, fuzzy, c-format
msgid "IP address: %s"
msgstr "आईपी पता:"

#: ../bin/net_applet:96
#, fuzzy, c-format
msgid "Gateway: %s"
msgstr "गेटवे:"

#: ../bin/net_applet:97
#, c-format
msgid "Connected to %s (link level: %d %%)"
msgstr ""

#: ../bin/net_applet:99
#, fuzzy, c-format
msgid "Network is down on interface %s."
msgstr "नेटवर्क इन्टरफ़ेस"

#: ../bin/net_applet:101
#, fuzzy, c-format
msgid ""
"You do not have any configured Internet connection.\n"
"Run the \"%s\" assistant from the Mandriva Linux Control Center"
msgstr ""
"इस इन्टरफ़ेस को अभी तक संरचित नहीं किया गया है ।\n"
"मैनड्रिव नियंत्रण केन्द्र से \"%s\" सहायक को चलायें"

#: ../bin/net_applet:107 ../bin/net_monitor:475
#, c-format
msgid "Connect %s"
msgstr "%s को जोड़ें"

#: ../bin/net_applet:108 ../bin/net_monitor:475
#, c-format
msgid "Disconnect %s"
msgstr "%s से संबंध तोड़ें"

#: ../bin/net_applet:109
#, fuzzy, c-format
msgid "Monitor Network"
msgstr "नेटवर्क के द्वारा पुनः स्थापन"

#: ../bin/net_applet:111
#, c-format
msgid "Manage wireless networks"
msgstr ""

#: ../bin/net_applet:113
#, fuzzy, c-format
msgid "Manage VPN connections"
msgstr "कनेक्शनों का प्रबंधन"

#: ../bin/net_applet:117
#, c-format
msgid "Configure Network"
msgstr "नेटवर्क की संरचना"

#: ../bin/net_applet:119
#, fuzzy, c-format
msgid "Watched interface"
msgstr "इन्टरफ़ेसेस"

#: ../bin/net_applet:120 ../bin/net_applet:121 ../bin/net_applet:123
#, c-format
msgid "Auto-detect"
msgstr "स्वतः-खोज़ी"

#: ../bin/net_applet:128
#, c-format
msgid "Active interfaces"
msgstr ""

#: ../bin/net_applet:152
#, c-format
msgid "Profiles"
msgstr "प्रोफ़ाइल्स"

#: ../bin/net_applet:162 ../lib/network/connection.pm:218
#: ../lib/network/drakvpn.pm:62 ../lib/network/vpn/openvpn.pm:365
#: ../lib/network/vpn/openvpn.pm:379 ../lib/network/vpn/openvpn.pm:390
#, fuzzy, c-format
msgid "VPN connection"
msgstr "स्थानीय नेटवर्क क्षेत्र संबंध"

#: ../bin/net_applet:341
#, fuzzy, c-format
msgid "Network connection"
msgstr "नेटवर्क विकल्प"

#: ../bin/net_applet:425
#, c-format
msgid "More networks"
msgstr ""

#: ../bin/net_applet:452
#, c-format
msgid "Interactive Firewall automatic mode"
msgstr ""

#: ../bin/net_applet:457
#, c-format
msgid "Always launch on startup"
msgstr "शुरूवात में सदैव आरम्भ करें"

#: ../bin/net_applet:462
#, fuzzy, c-format
msgid "Wireless networks"
msgstr "बेतार सम्बंध"

#: ../bin/net_applet:469 ../bin/net_monitor:96
#, c-format
msgid "Settings"
msgstr "समायोजनायें"

#: ../bin/net_monitor:60 ../bin/net_monitor:65
#, c-format
msgid "Network Monitoring"
msgstr "नेटवर्क मॉनीट्रिंग"

#: ../bin/net_monitor:98
#, c-format
msgid "Connection type: "
msgstr "संबंध प्रकार: "

#: ../bin/net_monitor:101
#, c-format
msgid "Global statistics"
msgstr "ग्लोबल आकड़ें"

#: ../bin/net_monitor:104
#, c-format
msgid "Instantaneous"
msgstr "तत्काल"

#: ../bin/net_monitor:104
#, c-format
msgid "Average"
msgstr "औसतन"

#: ../bin/net_monitor:105
#, c-format
msgid ""
"Sending\n"
"speed:"
msgstr ""
"भेजा जा रहा है\n"
"गति:"

#: ../bin/net_monitor:105 ../bin/net_monitor:106 ../bin/net_monitor:111
#, c-format
msgid "unknown"
msgstr "अज्ञात"

#: ../bin/net_monitor:106
#, c-format
msgid ""
"Receiving\n"
"speed:"
msgstr ""
"प्राप्त किया जा रहा है\n"
"गति:"

#: ../bin/net_monitor:110
#, c-format
msgid ""
"Connection\n"
"time: "
msgstr ""
"संबंध\n"
"समय: "

#: ../bin/net_monitor:117
#, c-format
msgid "Use same scale for received and transmitted"
msgstr ""

#: ../bin/net_monitor:119
#, c-format
msgid "Wait please"
msgstr "कृपया प्रतीक्षा करें"

#: ../bin/net_monitor:136
#, c-format
msgid "Wait please, testing your connection..."
msgstr "कृपया प्रतीक्षा करें, आपके संबंध का परीक्षण हो रहा है..."

#: ../bin/net_monitor:191 ../bin/net_monitor:204
#, c-format
msgid "Disconnecting from Internet "
msgstr "इन्टरनेट से संबंध विच्छेद हो रहा है"

#: ../bin/net_monitor:191 ../bin/net_monitor:204
#, c-format
msgid "Connecting to Internet "
msgstr "इन्टरनेट से संबंध स्थापित हो रहा है"

#: ../bin/net_monitor:235
#, c-format
msgid "Disconnection from Internet failed."
msgstr "इन्टरनेट से संबंध-विच्छेद असफ़ल ।"

#: ../bin/net_monitor:236
#, c-format
msgid "Disconnection from Internet complete."
msgstr "इन्टरनेट से पूर्णताः संबंध तोड़ा गया ।"

#: ../bin/net_monitor:238
#, c-format
msgid "Connection complete."
msgstr "संबंध सम्पूर्ण ।"

#: ../bin/net_monitor:239
#, c-format
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandriva Linux Control Center."
msgstr ""
"संबंधीकरण की प्रक्रिया असफ़ल हो गई ।\n"
"मैनड्रिव नियंत्रण केन्द्र में अपनी संरचना को सत्यापित करें ।"

#: ../bin/net_monitor:344
#, c-format
msgid "Color configuration"
msgstr "रंग संरचना"

#: ../bin/net_monitor:401 ../bin/net_monitor:413
#, c-format
msgid "sent: "
msgstr "भेजना: "

#: ../bin/net_monitor:404 ../bin/net_monitor:417
#, c-format
msgid "received: "
msgstr "प्राप्त किया:"

#: ../bin/net_monitor:407
#, c-format
msgid "average"
msgstr "औसत"

#: ../bin/net_monitor:410
#, c-format
msgid "Local measure"
msgstr "स्थानीय माप"

#: ../bin/net_monitor:468
#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
msgstr ""
"चेतावनी, एक अन्य इन्टरनेट संबंध को खोजा गया है, सम्भव है कि आपका नेटवर्क उपयोग कर रहा हो"

#: ../bin/net_monitor:472
#, c-format
msgid "Connected"
msgstr "जुड़ा हुआ"

#: ../bin/net_monitor:472
#, c-format
msgid "Not connected"
msgstr "संबंध-विच्छेद है"

#: ../bin/net_monitor:479
#, c-format
msgid "No internet connection configured"
msgstr "कोई इन्टरनेट संबंध संरचित नहीं है"

#: ../lib/network/connection.pm:16
#, c-format
msgid "Unknown connection type"
msgstr "अज्ञात प्रकार का संबध"

#: ../lib/network/connection.pm:156
#, c-format
msgid "Network access settings"
msgstr ""

#: ../lib/network/connection.pm:157
#, c-format
msgid "Access settings"
msgstr ""

#: ../lib/network/connection.pm:158
#, c-format
msgid "Address settings"
msgstr ""

#: ../lib/network/connection.pm:172 ../lib/network/connection.pm:187
#: ../lib/network/connection/isdn.pm:153 ../lib/network/netconnect.pm:216
#: ../lib/network/netconnect.pm:473 ../lib/network/netconnect.pm:569
#: ../lib/network/netconnect.pm:572
#, c-format
msgid "Unlisted - edit manually"
msgstr "असूचीबद्ध - मैनयूअली संपादन करें"

#: ../lib/network/connection.pm:220 ../lib/network/connection/cable.pm:41
#: ../lib/network/connection/wireless.pm:43 ../lib/network/vpn/openvpn.pm:127
#: ../lib/network/vpn/openvpn.pm:171 ../lib/network/vpn/openvpn.pm:339
#, c-format
msgid "None"
msgstr "कुछ नहीं"

#: ../lib/network/connection.pm:232
#, c-format
msgid "Allow users to manage the connection"
msgstr ""

#: ../lib/network/connection.pm:233
#, c-format
msgid "Start the connection at boot"
msgstr ""

#: ../lib/network/connection.pm:234
#, c-format
msgid "Metric"
msgstr "मेट्रिक"

#: ../lib/network/connection.pm:304
#, fuzzy, c-format
msgid "Link detected on interface %s"
msgstr "(%s पोर्ट पर पहचाना गया)"

#: ../lib/network/connection.pm:305 ../lib/network/connection/ethernet.pm:288
#, c-format
msgid "Link beat lost on interface %s"
msgstr ""

#: ../lib/network/connection/cable.pm:10
#, c-format
msgid "Cable"
msgstr ""

#: ../lib/network/connection/cable.pm:11
#, fuzzy, c-format
msgid "Cable modem"
msgstr "कार्ड का मॉडल:"

#: ../lib/network/connection/cable.pm:42
#, c-format
msgid "Use BPALogin (needed for Telstra)"
msgstr ""

#: ../lib/network/connection/cable.pm:45 ../lib/network/netconnect.pm:597
#, c-format
msgid "Authentication"
msgstr "प्रमाणीकरण"

#: ../lib/network/connection/cable.pm:47 ../lib/network/connection/ppp.pm:30
#: ../lib/network/netconnect.pm:336 ../lib/network/vpn/openvpn.pm:393
#, c-format
msgid "Account Login (user name)"
msgstr "खाता संत्र-आरम्भ (उपयोगकर्ता का नाम)"

#: ../lib/network/connection/cable.pm:49 ../lib/network/connection/ppp.pm:31
#: ../lib/network/netconnect.pm:337 ../lib/network/vpn/openvpn.pm:394
#, c-format
msgid "Account Password"
msgstr "खाते का कूट-शब्द"

#: ../lib/network/connection/cellular.pm:66
#, c-format
msgid "Access Point Name"
msgstr ""

#: ../lib/network/connection/cellular_bluetooth.pm:10
#, c-format
msgid "Bluetooth"
msgstr ""

#: ../lib/network/connection/cellular_bluetooth.pm:11
#, c-format
msgid "Bluetooth Dial Up Networking"
msgstr ""

#: ../lib/network/connection/cellular_card.pm:8
#, c-format
msgid "Wrong PIN number format: it should be 4 digits."
msgstr ""

#: ../lib/network/connection/cellular_card.pm:10
#, c-format
msgid "GPRS/Edge/3G"
msgstr ""

#: ../lib/network/connection/cellular_card.pm:91
#: ../lib/network/vpn/openvpn.pm:391
#, c-format
msgid "PIN number"
msgstr ""

#: ../lib/network/connection/cellular_card.pm:167
#, fuzzy, c-format
msgid "Unable to open device %s"
msgstr "फ़ार्क में असमर्थ: %s"

#: ../lib/network/connection/cellular_card.pm:199
#, fuzzy, c-format
msgid "Please check that your SIM card is inserted."
msgstr ""
"\n"
"कृपया सभी विकल्पों की जाँच करें जिनकी आपको आवश्यकता है । \n"

#: ../lib/network/connection/cellular_card.pm:210
#, c-format
msgid ""
"You entered a wrong PIN code.\n"
"Entering the wrong PIN code multiple times may lock your SIM card!"
msgstr ""

#: ../lib/network/connection/dvb.pm:9
#, c-format
msgid "DVB"
msgstr ""

#: ../lib/network/connection/dvb.pm:10
#, c-format
msgid "Satellite (DVB)"
msgstr ""

#: ../lib/network/connection/dvb.pm:53
#, c-format
msgid "Adapter card"
msgstr ""

#: ../lib/network/connection/dvb.pm:54
#, c-format
msgid "Net demux"
msgstr ""

#: ../lib/network/connection/dvb.pm:55
#, c-format
msgid "PID"
msgstr "पीआईडी"

#: ../lib/network/connection/ethernet.pm:11
#, c-format
msgid "Ethernet"
msgstr ""

#: ../lib/network/connection/ethernet.pm:29
#, fuzzy, c-format
msgid "Virtual interface"
msgstr "नेटवर्क इन्टरफ़ेस"

#: ../lib/network/connection/ethernet.pm:59
#, c-format
msgid "Unable to find network interface for selected device (using %s driver)."
msgstr ""

#: ../lib/network/connection/ethernet.pm:69 ../lib/network/vpn/openvpn.pm:207
#, c-format
msgid "Manual configuration"
msgstr "स्वंम के द्वारा संरचना"

#: ../lib/network/connection/ethernet.pm:70
#, c-format
msgid "Automatic IP (BOOTP/DHCP)"
msgstr "स्वचालित आईपी (बूटपी/डीएचसीपी)"

#: ../lib/network/connection/ethernet.pm:124
#, fuzzy, c-format
msgid "IP settings"
msgstr "पी०एल०एल० समायोजन:"

#: ../lib/network/connection/ethernet.pm:137
#, c-format
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"कृपया इस कम्प्य़ूटर के लिए आईपी संरचना को बतायें । \n"
"प्रत्येक प्रविष्टी को एक आईपी पते की भांति डाटेड-अंकीय \n"
"प्रारूप में बताना चाहिए (उदाहरण हेतु, १.२.३.४) । "

#: ../lib/network/connection/ethernet.pm:141 ../lib/network/netconnect.pm:646
#: ../lib/network/vpn/openvpn.pm:212 ../lib/network/vpn/vpnc.pm:39
#, c-format
msgid "Gateway"
msgstr "गेटवे"

#: ../lib/network/connection/ethernet.pm:144
#, fuzzy, c-format
msgid "Get DNS servers from DHCP"
msgstr "डीएनएस सर्वर आईपी"

#: ../lib/network/connection/ethernet.pm:146
#, c-format
msgid "DNS server 1"
msgstr "डीएनएस सर्वर-१"

#: ../lib/network/connection/ethernet.pm:147
#, c-format
msgid "DNS server 2"
msgstr "डीएनएस सर्वर-२"

#: ../lib/network/connection/ethernet.pm:148
#, c-format
msgid "Search domain"
msgstr "डोमेन जिसमें खोजना है"

#: ../lib/network/connection/ethernet.pm:149
#, c-format
msgid "By default search domain will be set from the fully-qualified host name"
msgstr ""
"डिफ़ाल्ट के तौर पर खोज-डोमेन को एक पूर्ण-योग्यवान होस्ट नाम से स्थापित किया जायेगा"

#: ../lib/network/connection/ethernet.pm:152
#, fuzzy, c-format
msgid "DHCP timeout (in seconds)"
msgstr "संबंध समय- सीमा समाप्ति (पलों में)"

#: ../lib/network/connection/ethernet.pm:153
#, c-format
msgid "Get YP servers from DHCP"
msgstr ""

#: ../lib/network/connection/ethernet.pm:154
#, c-format
msgid "Get NTPD servers from DHCP"
msgstr ""

#: ../lib/network/connection/ethernet.pm:155
#, c-format
msgid "DHCP host name"
msgstr "डी०एच०सी०पी० होस्ट का नाम"

#: ../lib/network/connection/ethernet.pm:157
#, c-format
msgid "Do not fallback to Zeroconf (169.254.0.0 network)"
msgstr ""

#: ../lib/network/connection/ethernet.pm:168
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "आई०पी० पते का प्रारूप १.२.३.४ जैसा होना चाहिए"

#: ../lib/network/connection/ethernet.pm:173
#, fuzzy, c-format
msgid "Netmask should be in format 255.255.224.0"
msgstr "गेटवे पता का प्रारूप १.२.३.४ की भांति होना चाहिए"

#: ../lib/network/connection/ethernet.pm:178
#, c-format
msgid "Warning: IP address %s is usually reserved!"
msgstr "चेतावनी : आईपी पता %s प्रायः आरक्षित होता है !"

#: ../lib/network/connection/ethernet.pm:184
#, c-format
msgid "%s already in use\n"
msgstr "%s पहिले से ही उपयोग में है\n"

#: ../lib/network/connection/ethernet.pm:209
#, c-format
msgid "Assign host name from DHCP address"
msgstr "डीएचसीपी पते से होस्ट के नाम का निर्धारण"

#: ../lib/network/connection/ethernet.pm:229
#, c-format
msgid "Network Hotplugging"
msgstr "नेटवर्क हॉटप्लगिंग"

#: ../lib/network/connection/ethernet.pm:233
#, c-format
msgid "Enable IPv6 to IPv4 tunnel"
msgstr ""

#: ../lib/network/connection/ethernet.pm:287
#, c-format
msgid "Link beat detected on interface %s"
msgstr ""

#: ../lib/network/connection/ethernet.pm:290
#, c-format
msgid "Requesting a network address on interface %s (%s protocol)..."
msgstr ""

#: ../lib/network/connection/ethernet.pm:291
#, c-format
msgid "Got a network address on interface %s (%s protocol)"
msgstr ""

#: ../lib/network/connection/ethernet.pm:292
#, c-format
msgid "Failed to get a network address on interface %s (%s protocol)"
msgstr ""

#: ../lib/network/connection/isdn.pm:8
#, c-format
msgid "ISDN"
msgstr ""

#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:405
#, c-format
msgid "ISA / PCMCIA"
msgstr "आई०एस०ऐ० / पी०सी०एम०सी०आई०ऐ०"

#: ../lib/network/connection/isdn.pm:196 ../lib/network/netconnect.pm:405
#, c-format
msgid "I do not know"
msgstr "मुझे नहीं ज्ञात है"

#: ../lib/network/connection/isdn.pm:197 ../lib/network/netconnect.pm:405
#, c-format
msgid "PCI"
msgstr "पी०सी०आई०"

#: ../lib/network/connection/isdn.pm:198 ../lib/network/netconnect.pm:405
#, c-format
msgid "USB"
msgstr "यूएसबी"

#. -PO: POTS means "Plain old telephone service"
#: ../lib/network/connection/pots.pm:10
#, c-format
msgid "POTS"
msgstr ""

#. -PO: POTS means "Plain old telephone service"
#. -PO: remove it if it doesn't have an equivalent in your language
#. -PO: for example, in French, it can be translated as "RTC"
#: ../lib/network/connection/pots.pm:16
#, c-format
msgid "Analog telephone modem (POTS)"
msgstr ""

#: ../lib/network/connection/ppp.pm:9 ../lib/network/netconnect.pm:77
#, c-format
msgid "Script-based"
msgstr "स्क्रिप्ट-पर-आधारित"

#: ../lib/network/connection/ppp.pm:10 ../lib/network/netconnect.pm:78
#, c-format
msgid "PAP"
msgstr "पीऐपी"

#: ../lib/network/connection/ppp.pm:11 ../lib/network/netconnect.pm:79
#, c-format
msgid "Terminal-based"
msgstr "टर्मिनल-पर-आधारित"

#: ../lib/network/connection/ppp.pm:12 ../lib/network/netconnect.pm:80
#, c-format
msgid "CHAP"
msgstr "सी०एच०ऐ०पी०"

#: ../lib/network/connection/ppp.pm:13 ../lib/network/netconnect.pm:81
#, c-format
msgid "PAP/CHAP"
msgstr "पी०ऐ०पी०/सी०एच०ऐ०पी०"

#: ../lib/network/connection/providers/cellular.pm:16
#: ../lib/network/connection/providers/cellular.pm:20
#: ../lib/network/connection/providers/cellular.pm:28
#: ../lib/network/connection/providers/cellular.pm:34
#: ../lib/network/connection/providers/cellular.pm:39
#: ../lib/network/connection/providers/cellular.pm:45
#: ../lib/network/connection/providers/cellular.pm:49
#: ../lib/network/connection/providers/cellular.pm:53
#: ../lib/network/connection/providers/cellular.pm:59
#: ../lib/network/connection/providers/cellular.pm:63
#: ../lib/network/connection/providers/xdsl.pm:483
#, c-format
msgid "Finland"
msgstr "फ़िनलैंड"

#: ../lib/network/connection/providers/cellular.pm:66
#: ../lib/network/connection/providers/cellular.pm:69
#: ../lib/network/connection/providers/cellular.pm:74
#: ../lib/network/connection/providers/cellular.pm:79
#: ../lib/network/connection/providers/cellular.pm:86
#: ../lib/network/connection/providers/cellular.pm:91
#: ../lib/network/connection/providers/cellular.pm:96
#: ../lib/network/connection/providers/cellular.pm:99
#: ../lib/network/connection/providers/xdsl.pm:492
#: ../lib/network/connection/providers/xdsl.pm:504
#: ../lib/network/connection/providers/xdsl.pm:516
#: ../lib/network/connection/providers/xdsl.pm:528
#: ../lib/network/connection/providers/xdsl.pm:539
#: ../lib/network/connection/providers/xdsl.pm:551
#: ../lib/network/connection/providers/xdsl.pm:563
#: ../lib/network/connection/providers/xdsl.pm:575
#: ../lib/network/connection/providers/xdsl.pm:588
#: ../lib/network/connection/providers/xdsl.pm:599
#: ../lib/network/connection/providers/xdsl.pm:610
#: ../lib/network/netconnect.pm:33
#, c-format
msgid "France"
msgstr "फ़्रांस"

#: ../lib/network/connection/providers/cellular.pm:102
#: ../lib/network/connection/providers/cellular.pm:107
#: ../lib/network/connection/providers/cellular.pm:112
#: ../lib/network/connection/providers/cellular.pm:117
#: ../lib/network/connection/providers/xdsl.pm:814
#: ../lib/network/connection/providers/xdsl.pm:825
#: ../lib/network/connection/providers/xdsl.pm:835
#: ../lib/network/connection/providers/xdsl.pm:846
#: ../lib/network/netconnect.pm:35
#, c-format
msgid "Italy"
msgstr "इटली"

#: ../lib/network/connection/providers/xdsl.pm:47
#: ../lib/network/connection/providers/xdsl.pm:57
#, c-format
msgid "Algeria"
msgstr "आल्जेरिया"

#: ../lib/network/connection/providers/xdsl.pm:67
#: ../lib/network/connection/providers/xdsl.pm:77
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: ../lib/network/connection/providers/xdsl.pm:87
#: ../lib/network/connection/providers/xdsl.pm:96
#: ../lib/network/connection/providers/xdsl.pm:105
#, c-format
msgid "Austria"
msgstr "आस्ट्रिया"

#: ../lib/network/connection/providers/xdsl.pm:87
#: ../lib/network/connection/providers/xdsl.pm:446
#: ../lib/network/connection/providers/xdsl.pm:650
#: ../lib/network/connection/providers/xdsl.pm:668
#: ../lib/network/connection/providers/xdsl.pm:787
#: ../lib/network/connection/providers/xdsl.pm:1258
#, fuzzy, c-format
msgid "Any"
msgstr "कोई"

#: ../lib/network/connection/providers/xdsl.pm:114
#: ../lib/network/connection/providers/xdsl.pm:124
#: ../lib/network/connection/providers/xdsl.pm:134
#, c-format
msgid "Australia"
msgstr "Australia"

#: ../lib/network/connection/providers/xdsl.pm:144
#: ../lib/network/connection/providers/xdsl.pm:153
#: ../lib/network/connection/providers/xdsl.pm:164
#: ../lib/network/connection/providers/xdsl.pm:173
#: ../lib/network/connection/providers/xdsl.pm:182
#: ../lib/network/netconnect.pm:36
#, c-format
msgid "Belgium"
msgstr "बेल्ज़ियम"

#: ../lib/network/connection/providers/xdsl.pm:191
#: ../lib/network/connection/providers/xdsl.pm:201
#: ../lib/network/connection/providers/xdsl.pm:210
#: ../lib/network/connection/providers/xdsl.pm:219
#, c-format
msgid "Brazil"
msgstr "ब्राज़ील"

#: ../lib/network/connection/providers/xdsl.pm:228
#: ../lib/network/connection/providers/xdsl.pm:237
#, c-format
msgid "Bulgaria"
msgstr "बुल्गारिया"

#: ../lib/network/connection/providers/xdsl.pm:246
#: ../lib/network/connection/providers/xdsl.pm:255
#: ../lib/network/connection/providers/xdsl.pm:264
#: ../lib/network/connection/providers/xdsl.pm:273
#: ../lib/network/connection/providers/xdsl.pm:282
#: ../lib/network/connection/providers/xdsl.pm:291
#: ../lib/network/connection/providers/xdsl.pm:300
#: ../lib/network/connection/providers/xdsl.pm:309
#: ../lib/network/connection/providers/xdsl.pm:318
#: ../lib/network/connection/providers/xdsl.pm:327
#: ../lib/network/connection/providers/xdsl.pm:336
#: ../lib/network/connection/providers/xdsl.pm:345
#: ../lib/network/connection/providers/xdsl.pm:354
#: ../lib/network/connection/providers/xdsl.pm:363
#: ../lib/network/connection/providers/xdsl.pm:372
#: ../lib/network/connection/providers/xdsl.pm:381
#: ../lib/network/connection/providers/xdsl.pm:390
#: ../lib/network/connection/providers/xdsl.pm:399
#: ../lib/network/connection/providers/xdsl.pm:408
#: ../lib/network/connection/providers/xdsl.pm:417
#, c-format
msgid "China"
msgstr "चीनी"

#: ../lib/network/connection/providers/xdsl.pm:426
#: ../lib/network/connection/providers/xdsl.pm:436
#, c-format
msgid "Czech Republic"
msgstr "चेक गणराज्य"

#: ../lib/network/connection/providers/xdsl.pm:446
#: ../lib/network/connection/providers/xdsl.pm:455
#: ../lib/network/connection/providers/xdsl.pm:464
#, c-format
msgid "Denmark"
msgstr "डेनमार्क"

#: ../lib/network/connection/providers/xdsl.pm:473
#, c-format
msgid "Egypt"
msgstr "Egypt"

#: ../lib/network/connection/providers/xdsl.pm:621
#: ../lib/network/connection/providers/xdsl.pm:630
#: ../lib/network/connection/providers/xdsl.pm:640
#, c-format
msgid "Germany"
msgstr "जर्मन"

#: ../lib/network/connection/providers/xdsl.pm:650
#, c-format
msgid "Greece"
msgstr "ग्रीस"

#: ../lib/network/connection/providers/xdsl.pm:659
#, c-format
msgid "Hungary"
msgstr "हंगरी"

#: ../lib/network/connection/providers/xdsl.pm:668
#, c-format
msgid "Ireland"
msgstr "आयरलैड"

#: ../lib/network/connection/providers/xdsl.pm:677
#: ../lib/network/connection/providers/xdsl.pm:687
#: ../lib/network/connection/providers/xdsl.pm:697
#: ../lib/network/connection/providers/xdsl.pm:707
#: ../lib/network/connection/providers/xdsl.pm:717
#: ../lib/network/connection/providers/xdsl.pm:727
#: ../lib/network/connection/providers/xdsl.pm:737
#: ../lib/network/connection/providers/xdsl.pm:747
#: ../lib/network/connection/providers/xdsl.pm:757
#: ../lib/network/connection/providers/xdsl.pm:767
#: ../lib/network/connection/providers/xdsl.pm:777
#, c-format
msgid "Israel"
msgstr "इजरायल"

#: ../lib/network/connection/providers/xdsl.pm:787
#, c-format
msgid "India"
msgstr "भारत"

#: ../lib/network/connection/providers/xdsl.pm:796
#: ../lib/network/connection/providers/xdsl.pm:805
#, c-format
msgid "Iceland"
msgstr "आइसलैंड"

#: ../lib/network/connection/providers/xdsl.pm:858
#, c-format
msgid "Sri Lanka"
msgstr "श्री लंका"

#: ../lib/network/connection/providers/xdsl.pm:870
#, c-format
msgid "Lithuania"
msgstr "Lithuania"

#: ../lib/network/connection/providers/xdsl.pm:879
#: ../lib/network/connection/providers/xdsl.pm:889
#, c-format
msgid "Mauritius"
msgstr "Mauritius"

#: ../lib/network/connection/providers/xdsl.pm:900
#, c-format
msgid "Morocco"
msgstr "मोरोक्को"

#: ../lib/network/connection/providers/xdsl.pm:910
#: ../lib/network/connection/providers/xdsl.pm:919
#: ../lib/network/connection/providers/xdsl.pm:928
#: ../lib/network/connection/providers/xdsl.pm:937
#: ../lib/network/netconnect.pm:34
#, c-format
msgid "Netherlands"
msgstr "नीदरलैंड"

#: ../lib/network/connection/providers/xdsl.pm:946
#: ../lib/network/connection/providers/xdsl.pm:952
#: ../lib/network/connection/providers/xdsl.pm:958
#: ../lib/network/connection/providers/xdsl.pm:964
#: ../lib/network/connection/providers/xdsl.pm:970
#: ../lib/network/connection/providers/xdsl.pm:976
#: ../lib/network/connection/providers/xdsl.pm:982
#, c-format
msgid "Norway"
msgstr "नारवे"

#: ../lib/network/connection/providers/xdsl.pm:990
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: ../lib/network/connection/providers/xdsl.pm:1001
#: ../lib/network/connection/providers/xdsl.pm:1011
#, c-format
msgid "Poland"
msgstr "पोलैंड"

#: ../lib/network/connection/providers/xdsl.pm:1022
#, c-format
msgid "Portugal"
msgstr "पुर्तगाली"

#: ../lib/network/connection/providers/xdsl.pm:1031
#, c-format
msgid "Russia"
msgstr "रूस"

#: ../lib/network/connection/providers/xdsl.pm:1042
#, c-format
msgid "Singapore"
msgstr "Singapore"

#: ../lib/network/connection/providers/xdsl.pm:1051
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: ../lib/network/connection/providers/xdsl.pm:1061
#, c-format
msgid "Slovenia"
msgstr "Slovenia"

#: ../lib/network/connection/providers/xdsl.pm:1072
#: ../lib/network/connection/providers/xdsl.pm:1084
#: ../lib/network/connection/providers/xdsl.pm:1096
#: ../lib/network/connection/providers/xdsl.pm:1109
#: ../lib/network/connection/providers/xdsl.pm:1119
#: ../lib/network/connection/providers/xdsl.pm:1129
#: ../lib/network/connection/providers/xdsl.pm:1140
#: ../lib/network/connection/providers/xdsl.pm:1150
#: ../lib/network/connection/providers/xdsl.pm:1160
#: ../lib/network/connection/providers/xdsl.pm:1170
#: ../lib/network/connection/providers/xdsl.pm:1180
#: ../lib/network/connection/providers/xdsl.pm:1190
#: ../lib/network/connection/providers/xdsl.pm:1201
#: ../lib/network/connection/providers/xdsl.pm:1212
#: ../lib/network/connection/providers/xdsl.pm:1224
#: ../lib/network/connection/providers/xdsl.pm:1236
#, c-format
msgid "Spain"
msgstr "स्पेन"

#: ../lib/network/connection/providers/xdsl.pm:1249
#, c-format
msgid "Sweden"
msgstr "स्वीडन"

#: ../lib/network/connection/providers/xdsl.pm:1258
#: ../lib/network/connection/providers/xdsl.pm:1267
#: ../lib/network/connection/providers/xdsl.pm:1277
#, c-format
msgid "Switzerland"
msgstr "Switzerland"

#: ../lib/network/connection/providers/xdsl.pm:1286
#, c-format
msgid "Thailand"
msgstr "थाईलैंड"

#: ../lib/network/connection/providers/xdsl.pm:1296
#, c-format
msgid "Tunisia"
msgstr "Tunisia"

#: ../lib/network/connection/providers/xdsl.pm:1307
#, c-format
msgid "Turkey"
msgstr "टर्की"

#: ../lib/network/connection/providers/xdsl.pm:1320
#, c-format
msgid "United Arab Emirates"
msgstr "United Arab Emirates"

#: ../lib/network/connection/providers/xdsl.pm:1330
#: ../lib/network/connection/providers/xdsl.pm:1340
#: ../lib/network/netconnect.pm:38
#, c-format
msgid "United Kingdom"
msgstr "ब्रिटेन"

#: ../lib/network/connection/wireless.pm:11
#, c-format
msgid "Wireless"
msgstr "बेतार"

#: ../lib/network/connection/wireless.pm:27
#, c-format
msgid "Use a Windows driver (with ndiswrapper)"
msgstr ""

#: ../lib/network/connection/wireless.pm:44
#, c-format
msgid "Open WEP"
msgstr ""

#: ../lib/network/connection/wireless.pm:45
#, c-format
msgid "Restricted WEP"
msgstr ""

#: ../lib/network/connection/wireless.pm:46
#, c-format
msgid "WPA/WPA2 Pre-Shared Key"
msgstr ""

#: ../lib/network/connection/wireless.pm:47
#, c-format
msgid "WPA/WPA2 Enterprise"
msgstr ""

#: ../lib/network/connection/wireless.pm:235
#, c-format
msgid "Windows driver"
msgstr ""

#: ../lib/network/connection/wireless.pm:302
#, c-format
msgid ""
"Your wireless card is disabled, please enable the wireless switch (RF kill "
"switch) first."
msgstr ""

#: ../lib/network/connection/wireless.pm:381
#, fuzzy, c-format
msgid "Wireless settings"
msgstr "बेतार सम्बंध"

#: ../lib/network/connection/wireless.pm:386
#: ../lib/network/connection_manager.pm:252
#, c-format
msgid "Operating Mode"
msgstr "चालन विधा"

#: ../lib/network/connection/wireless.pm:387
#, c-format
msgid "Ad-hoc"
msgstr "एड-हॉक"

#: ../lib/network/connection/wireless.pm:387
#, c-format
msgid "Managed"
msgstr "प्रबंध किया गया"

#: ../lib/network/connection/wireless.pm:387
#, c-format
msgid "Master"
msgstr "स्वामी (ंमास्टर)"

#: ../lib/network/connection/wireless.pm:387
#, c-format
msgid "Repeater"
msgstr "दुहरानेवाला"

#: ../lib/network/connection/wireless.pm:387
#, c-format
msgid "Secondary"
msgstr "दूसरे क्रम का"

#: ../lib/network/connection/wireless.pm:387
#, c-format
msgid "Auto"
msgstr "स्वचालित"

#: ../lib/network/connection/wireless.pm:390
#, c-format
msgid "Network name (ESSID)"
msgstr "नेटवर्क नाम (ईएसएसआईडी)"

#: ../lib/network/connection/wireless.pm:392
#, c-format
msgid "Encryption mode"
msgstr ""

#: ../lib/network/connection/wireless.pm:394
#, c-format
msgid "Encryption key"
msgstr "सांकेतिक कुँजी"

#: ../lib/network/connection/wireless.pm:396
#, c-format
msgid "Force using this key as ASCII string (e.g. for Livebox)"
msgstr ""

#: ../lib/network/connection/wireless.pm:403
#, fuzzy, c-format
msgid "EAP Login/Username"
msgstr "खाता संत्र-आरम्भ (उपयोगकर्ता का नाम)"

#: ../lib/network/connection/wireless.pm:405
#, c-format
msgid ""
"The login or username. Format is plain text. If you\n"
"need to specify domain then try the untested syntax\n"
"  DOMAIN\\username"
msgstr ""

#: ../lib/network/connection/wireless.pm:408
#, fuzzy, c-format
msgid "EAP Password"
msgstr "कूट-शब्द"

#: ../lib/network/connection/wireless.pm:410
#, c-format
msgid ""
" Password: A string.\n"
"Note that this is not the same thing as a psk.\n"
"____________________________________________________\n"
"RELATED ADDITIONAL INFORMATION:\n"
"In the Advanced Page, you can select which EAP mode\n"
"is used for authentication. For the eap mode setting\n"
"   Auto Detect: implies all possible modes are tried.\n"
"\n"
"If Auto Detect fails, try the PEAP TTLS combo bofore others\n"
"Note:\n"
"\tThe settings MD5, MSCHAPV2, OTP and GTC imply\n"
"automatically PEAP and TTLS modes.\n"
"  TLS mode is completely certificate based and may ignore\n"
"the username and password values specified here."
msgstr ""

#: ../lib/network/connection/wireless.pm:424
#, fuzzy, c-format
msgid "EAP client certificate"
msgstr "प्रमाणपत्र का नाम"

#: ../lib/network/connection/wireless.pm:426
#, c-format
msgid ""
"The complete path and filename of client certificate. This is\n"
"only used for EAP certificate based authentication. It could be\n"
"considered as the alternative to username/password combo.\n"
" Note: other related settings are shown on the Advanced page."
msgstr ""

#: ../lib/network/connection/wireless.pm:430
#, c-format
msgid "Network ID"
msgstr "नेटवर्क पहचान-संख्या"

#: ../lib/network/connection/wireless.pm:431
#, c-format
msgid "Operating frequency"
msgstr "संचालन आवृति"

#: ../lib/network/connection/wireless.pm:432
#, c-format
msgid "Sensitivity threshold"
msgstr "सूक्ष्म-ग्राहिता (सेन्सटीविटी) प्रवेश-मार्ग"

#: ../lib/network/connection/wireless.pm:433
#, c-format
msgid "Bitrate (in b/s)"
msgstr "बिट दर (बी/एस में)"

#: ../lib/network/connection/wireless.pm:434
#, c-format
msgid "RTS/CTS"
msgstr "आरटीएस/सीटीएस"

#: ../lib/network/connection/wireless.pm:435
#, c-format
msgid ""
"RTS/CTS adds a handshake before each packet transmission to make sure that "
"the\n"
"channel is clear. This adds overhead, but increase performance in case of "
"hidden\n"
"nodes or large number of active nodes. This parameter sets the size of the\n"
"smallest packet for which the node sends RTS, a value equal to the maximum\n"
"packet size disable the scheme. You may also set this parameter to auto, "
"fixed\n"
"or off."
msgstr ""
"आरटीएस/सीटीएस यह सुनिश्चित करने के लिए कि चैनल साफ़ है एक हाथ-मिलाने (हैंडशेक) को जोड़ता "
"है।\n"
"यह अतिरिक्त भार को जोड़ता है, परन्तु छुपे हुए नोडों या बहुत ज्यादा संख्या में सक्रिय नोडों के "
"होनेकी स्थिति में\n"
"निष्पादन क्षमता को बढ़ता है । यह पैरामीटर सबसे छोटे पैकेट के आकार की स्थापना करता है\n"
"जिसके लिए नोड आरटीएस को भेजता है, सबसे ज्यादा बड़े पैकेट आकार के बराबर की एक मान\n"
"इस योजना को निष्क्रिय करता है। आप इस पैरामीटर को स्वतः, नियत\n"
"या ऑफ़ पर स्थापित कर सकते है।"

#: ../lib/network/connection/wireless.pm:442
#, c-format
msgid "Fragmentation"
msgstr "विखंडीकरण"

#: ../lib/network/connection/wireless.pm:443
#, c-format
msgid "iwconfig command extra arguments"
msgstr "एलडब्लूकॉन्फ़िग कॉमाण्ड के अतिरिक्त प्राचर (आरगूमेन्ट)"

#: ../lib/network/connection/wireless.pm:444
#, c-format
msgid ""
"Here, one can configure some extra wireless parameters such as:\n"
"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set "
"as the hostname).\n"
"\n"
"See iwconfig(8) man page for further information."
msgstr ""
"यहाँ, कोई कुछ अतिरिक्त बेतार पैरामीटरों को संरचित कर सकता है जैसे कि:\n"
"ap, channel, commit, enc, power, retry, sens, txpower (nick को पहिले से "
"हीहोस्टनाम की भांति स्थापित किया जा चुका है)।\n"
"\n"
"iwconfig(8) मैन पृष्ट को और अधिक सूचना के लिए देखें ।"

#. -PO: split the "xyz command extra argument" translated string into two lines if it's bigger than the english one
#: ../lib/network/connection/wireless.pm:451
#, c-format
msgid "iwspy command extra arguments"
msgstr "एलडब्लूस्पाई कॉमाण्ड के अतिरिक्त प्राचर"

#: ../lib/network/connection/wireless.pm:452
#, c-format
msgid ""
"iwspy is used to set a list of addresses in a wireless network\n"
"interface and to read back quality of link information for each of those.\n"
"\n"
"This information is the same as the one available in /proc/net/wireless :\n"
"quality of the link, signal strength and noise level.\n"
"\n"
"See iwpspy(8) man page for further information."
msgstr ""
"एलडब्लूस्पाई  का उपयोग एक बेतार नेटवर्क इन्टरफ़ेस में पतों की एक सूची की स्थापना करने में \n"
"और इनमें से प्रत्येक के लिए कड़ी सूचना की गुणवत्ता को वापस पढ़नें में होता है। \n"
"\n"
"यह सूचना वैसी ही है जैसी कि /proc/net/wireless में उपलब्ध है:\n"
"कड़ी की गुणवत्ता, संकेत की ताकत और शोर का स्तर।\n"
"\n"
"iwpspy(8) मैन पृष्ट को और अधिक सूचना के लिए देखें ।"

#: ../lib/network/connection/wireless.pm:460
#, c-format
msgid "iwpriv command extra arguments"
msgstr "एलडब्लूप्रिव कॉमाण्ड के अतिरिक्त प्राचर"

#: ../lib/network/connection/wireless.pm:462
#, c-format
msgid ""
"iwpriv enable to set up optionals (private) parameters of a wireless "
"network\n"
"interface.\n"
"\n"
"iwpriv deals with parameters and setting specific to each driver (as opposed "
"to\n"
"iwconfig which deals with generic ones).\n"
"\n"
"In theory, the documentation of each device driver should indicate how to "
"use\n"
"those interface specific commands and their effect.\n"
"\n"
"See iwpriv(8) man page for further information."
msgstr ""
"एलडब्लूप्रिव (iwpriv) एक बेतार नेटवर्क इन्टरफ़ेस के वैकल्पिक (व्यक्तिगत) पैरामीटरों की "
"स्थापना को सक्रिय\n"
"करता है।\n"
"\n"
"एलडब्लूप्रिव (iwpriv) पैरामीटरों के साथ व्यवहार करता है और प्रत्येक चालक के लिए विशिष्ट "
"समायोजनों को करता है\n"
"(ना कि आईडब्लूकॉन्फ़िग के जैसे जो कि सामान्य जैसों के साथ व्यवहार करता है।\n"
"\n"
"सिद्धान्त रूप में, प्रत्येक उपकरण के प्रलेखन को यह बताना चाहिए कि इन इन्टरफ़ेस विशेष "
"कॉमाण्डों और उनके प्रभाव\n"
"को कैसे उपयोग किया जायें ।\n"
"\n"
"iwpriv(8) मैन पृष्ट को और अधिक सूचना के लिए देखें ।"

#: ../lib/network/connection/wireless.pm:473
#, fuzzy, c-format
msgid "EAP Protocol"
msgstr "प्रोटोकॉल"

#: ../lib/network/connection/wireless.pm:474
#: ../lib/network/connection/wireless.pm:479
#, fuzzy, c-format
msgid "Auto Detect"
msgstr "स्वतः-खोज़ी"

#: ../lib/network/connection/wireless.pm:474
#, c-format
msgid "WPA2"
msgstr ""

#: ../lib/network/connection/wireless.pm:474
#, fuzzy, c-format
msgid "WPA"
msgstr "पीऐपी"

#: ../lib/network/connection/wireless.pm:476
#, c-format
msgid ""
"Auto Detect is recommended as it first tries WPA version 2 with\n"
"a fallback to WPA version 1"
msgstr ""

#: ../lib/network/connection/wireless.pm:478
#, fuzzy, c-format
msgid "EAP Mode"
msgstr "मोड"

#: ../lib/network/connection/wireless.pm:479
#, fuzzy, c-format
msgid "PEAP"
msgstr "पीऐपी"

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "TTLS"
msgstr ""

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "TLS"
msgstr "टीएलएस"

#: ../lib/network/connection/wireless.pm:479
#, fuzzy, c-format
msgid "MSCHAPV2"
msgstr "सी०एच०ऐ०पी०"

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "MD5"
msgstr ""

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "OTP"
msgstr ""

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "GTC"
msgstr ""

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "LEAP"
msgstr ""

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "PEAP TTLS"
msgstr ""

#: ../lib/network/connection/wireless.pm:479
#, c-format
msgid "TTLS TLS"
msgstr ""

#: ../lib/network/connection/wireless.pm:481
#, c-format
msgid "EAP key_mgmt"
msgstr ""

#: ../lib/network/connection/wireless.pm:483
#, c-format
msgid ""
"list of accepted authenticated key management protocols.\n"
"possible values are WPA-EAP, IEEE8021X, NONE"
msgstr ""

#: ../lib/network/connection/wireless.pm:485
#, c-format
msgid "EAP outer identity"
msgstr ""

#: ../lib/network/connection/wireless.pm:487
#, c-format
msgid ""
"Anonymous identity string for EAP: to be used as the\n"
"unencrypted identity with EAP types that support different\n"
"tunnelled identity, e.g., TTLS"
msgstr ""

#: ../lib/network/connection/wireless.pm:490
#, c-format
msgid "EAP phase2"
msgstr ""

#: ../lib/network/connection/wireless.pm:492
#, c-format
msgid ""
"Inner authentication with TLS tunnel parameters.\n"
"input is string with field-value pairs, Examples:\n"
"auth=MSCHAPV2 for PEAP or\n"
"autheap=MSCHAPV2 autheap=MD5 for TTLS"
msgstr ""

#: ../lib/network/connection/wireless.pm:496
#, fuzzy, c-format
msgid "EAP CA certificate"
msgstr "प्रमाणपत्र का प्रकार"

#: ../lib/network/connection/wireless.pm:498
#, c-format
msgid ""
"Full file path to CA certificate file (PEM/DER). This file\n"
"can have one or more trusted CA certificates. If ca_cert are not\n"
"included, server certificate will not be verified. If possible,\n"
"a trusted CA certificate should always be configured\n"
"when using TLS or TTLS or PEAP."
msgstr ""

#: ../lib/network/connection/wireless.pm:503
#, c-format
msgid "EAP certificate subject match"
msgstr ""

#: ../lib/network/connection/wireless.pm:505
#, c-format
msgid ""
" Substring to be matched against the subject of\n"
"the authentication server certificate. If this string is set,\n"
"the server sertificate is only accepted if it contains this\n"
"string in the subject.  The subject string is in following format:\n"
"/C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com"
msgstr ""

#: ../lib/network/connection/wireless.pm:510
#, c-format
msgid "EAP extra directives"
msgstr ""

#: ../lib/network/connection/wireless.pm:512
#, c-format
msgid ""
"Here one can pass extra settings to wpa_supplicant\n"
"The expected format is a string field=value pair. Multiple values\n"
"maybe specified, separating each value with the # character.\n"
"Note: directives are passed unchecked and may cause the wpa\n"
"negotiation to fail silently. Supported directives are preserved\n"
"across editing.\n"
"Supported directives are :\n"
"\tdisabled, id_str, bssid, priority, auth_alg, eapol_flags,\n"
"\tproactive_key_caching, peerkey, ca_path, private_key,\n"
"\tprivate_key_passwd, dh_file, altsubject_match, phase1,\n"
"\tfragment_size and eap_workaround, pairwise, group\n"
"\tOthers such as key_mgmt, eap maybe used to force\n"
"\tspecial settings different from the U.I settings."
msgstr ""

#: ../lib/network/connection/wireless.pm:532
#, c-format
msgid "An encryption key is required."
msgstr ""

#: ../lib/network/connection/wireless.pm:539
#, c-format
msgid ""
"The pre-shared key should have between 8 and 63 ASCII characters, or 64 "
"hexadecimal characters."
msgstr ""

#: ../lib/network/connection/wireless.pm:545
#, c-format
msgid ""
"The WEP key should have at most %d ASCII characters or %d hexadecimal "
"characters."
msgstr ""

#: ../lib/network/connection/wireless.pm:552
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
"आवॄति के पीछे k, M या G शब्द होना चाहिए (उदाहरण हेतु, \"2.46G\" २।४६ गीगाहर्टज आवॄति "
"के लिए), या जितने अधिक हो उतने '०' (जीरों) को जोड़ें ।"

#: ../lib/network/connection/wireless.pm:558
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
"दर के पीछे k, M या G शब्द होना चाहिए (उदाहरण हेतु, \"11M\" ११एम के लिए), या जितने "
"अधिक हो उतने '०' (जीरों) को जोड़ें ।"

#: ../lib/network/connection/wireless.pm:570
#, c-format
msgid "Allow access point roaming"
msgstr ""

#: ../lib/network/connection/wireless.pm:688
#, c-format
msgid "Associated to wireless network \"%s\" on interface %s"
msgstr ""

#: ../lib/network/connection/wireless.pm:689
#, c-format
msgid "Lost association to wireless network on interface %s"
msgstr ""

#: ../lib/network/connection/xdsl.pm:8
#, fuzzy, c-format
msgid "DSL"
msgstr "एसएसएल"

#: ../lib/network/connection/xdsl.pm:76 ../lib/network/netconnect.pm:765
#, c-format
msgid "Alcatel speedtouch USB modem"
msgstr "एलेक्टल स्पीडटच यूएसबी मॉडम"

#: ../lib/network/connection/xdsl.pm:104
#, c-format
msgid ""
"The ECI Hi-Focus modem cannot be supported due to binary driver distribution "
"problem.\n"
"\n"
"You can find a driver on http://eciadsl.flashtux.org/"
msgstr ""
"बायनरी चालक वितरण समस्या के कारण, ईसीआई हाई-फ़ोकस मॉडम को समर्थित नहींकिया जा "
"सकता है।\n"
"\n"
"http://eciadsl.flashtux.org/ पर आप एक चालक को खोज सकते है"

#: ../lib/network/connection/xdsl.pm:164
#, c-format
msgid ""
"Modems using Conexant AccessRunner chipsets cannot be supported due to "
"binary firmware distribution problem."
msgstr ""

#: ../lib/network/connection/xdsl.pm:184
#, c-format
msgid "DSL over CAPI"
msgstr ""

#: ../lib/network/connection/xdsl.pm:187
#, c-format
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr "गतिक होस्ट संरचना प्रोटोकॉल (डीएचसीपी)"

#: ../lib/network/connection/xdsl.pm:188
#, c-format
msgid "Manual TCP/IP configuration"
msgstr "मैनुअल टीसीपी/आईपी संरचना"

#: ../lib/network/connection/xdsl.pm:189
#, c-format
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr "पॉयन्ट से पॉयन्ट टन्नलिंग प्रोटोकॉल (पीपीटीपी)"

#: ../lib/network/connection/xdsl.pm:190
#, c-format
msgid "PPP over Ethernet (PPPoE)"
msgstr "इथरनेट के ऊपर से पीपीपी (पीपीपीओई)"

#: ../lib/network/connection/xdsl.pm:191
#, c-format
msgid "PPP over ATM (PPPoA)"
msgstr "ऐटीएम के ऊपर से पीपीपी (पीपीपीओऐ)"

#: ../lib/network/connection/xdsl.pm:238
#, c-format
msgid "Virtual Path ID (VPI):"
msgstr "काल्पनिक पथ आईडी (वीपीआई):"

#: ../lib/network/connection/xdsl.pm:239
#, c-format
msgid "Virtual Circuit ID (VCI):"
msgstr "काल्पनिक सर्किट आईडी (वीसीआई):"

#: ../lib/network/connection/xdsl.pm:339
#: ../lib/network/connection_manager.pm:60 ../lib/network/drakvpn.pm:45
#: ../lib/network/netconnect.pm:134 ../lib/network/thirdparty.pm:123
#, fuzzy, c-format
msgid "Could not install the packages (%s)!"
msgstr "%s पैकेजों का संसाधन नहीं हो सका"

#: ../lib/network/connection_manager.pm:73
#: ../lib/network/connection_manager.pm:136
#, fuzzy, c-format
msgid "Network settings"
msgstr "स्थानीय नेटवर्क का पता"

#: ../lib/network/connection_manager.pm:74
#: ../lib/network/connection_manager.pm:137
#, fuzzy, c-format
msgid "Please enter settings for network"
msgstr "विस्तृत सूचना"

#: ../lib/network/connection_manager.pm:82 ../lib/network/netconnect.pm:185
#, fuzzy, c-format
msgid "Configuring device..."
msgstr "संरचना की जा रही है..."

#: ../lib/network/connection_manager.pm:195
#, fuzzy, c-format
msgid "Connecting..."
msgstr "संबंध..."

#: ../lib/network/connection_manager.pm:212
#, fuzzy, c-format
msgid "Disconnecting..."
msgstr "संबध-विच्छेद..."

#: ../lib/network/connection_manager.pm:249
#, c-format
msgid "SSID"
msgstr ""

#: ../lib/network/connection_manager.pm:250
#, c-format
msgid "Signal strength"
msgstr ""

#: ../lib/network/connection_manager.pm:251
#, c-format
msgid "Encryption"
msgstr "एनक्रिप्शन"

#: ../lib/network/connection_manager.pm:295 ../lib/network/netconnect.pm:207
#, fuzzy, c-format
msgid "Scanning for networks..."
msgstr "नेटवर्क को स्कैन किया जा रहा है..."

#: ../lib/network/connection_manager.pm:332 ../lib/network/drakroam.pm:116
#, c-format
msgid "Disconnect"
msgstr "डिस्कनेक्ट"

#: ../lib/network/connection_manager.pm:332 ../lib/network/drakroam.pm:115
#, c-format
msgid "Connect"
msgstr "कनेक्ट"

#: ../lib/network/drakfirewall.pm:12
#, c-format
msgid "Web Server"
msgstr "वेब सर्वर"

#: ../lib/network/drakfirewall.pm:17
#, c-format
msgid "Domain Name Server"