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

use diagnostics;
use strict;
use utf8;

use common;
use devices;
use fsedit;
use fs::type;
use fs::mount_point;
use partition_table;
use partition_table::raw;
use partition_table::dos;
use POSIX qw(ceil);

#- unit of $mb is mega bytes, min and max are in sectors, this
#- function is used to convert back to sectors count the size of
#- a partition ($mb) given from the interface (on Resize or Create).
#- modified to take into account a true bounding with min and max.
sub from_Mb {
    my ($mb, $min, $max) = @_;
    $mb <= to_Mb($min) and return $min;
    $mb >= to_Mb($max) and return $max;
    MB($mb);
}
sub to_Mb {
    my ($size_sector) = @_;
    to_int($size_sector / 2048);
}

sub partition_with_diskdrake {
    my ($in, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab) = @_;
    my $ok;

    do {
	$ok = 1;
	my $do_force_reload = sub {
            my $new_hds = fs::get::empty_all_hds();
            fs::any::get_hds($new_hds, $fstab, $manual_fstab, $partitioning_flags, $skip_mtab, $in);
            %$all_hds = %$new_hds;
            $all_hds;
	};
	require diskdrake::interactive;
	{
	    local $::expert = 0;
	    diskdrake::interactive::main($in, $all_hds, $do_force_reload);
	}
	my @fstab = fs::get::fstab($all_hds);

	unless (fs::get::root_(\@fstab)) {
	    $ok = 0;
	    $in->ask_okcancel(N("Partitioning"), N("You must have a root partition.
For this, create a partition (or click on an existing one).
Then choose action ``Mount point'' and set it to `/'"), 1) or return;
	}
	if (!any { isSwap($_) } @fstab) {
	    $ok &&= $in->ask_okcancel('', N("You do not have a swap partition.\n\nContinue anyway?"));
	}
	if (arch() =~ /ia64/ && !fs::get::has_mntpoint("/boot/efi", $all_hds)) {
	    $in->ask_warn('', N("You must have a FAT partition mounted in /boot/efi"));
	    $ok = '';
	}
    } until $ok;
    1;
}

sub partitionWizardSolutions {
    my ($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, $target) = @_;
    my $hds = $all_hds->{hds};
    my $fstab;
    my $full_fstab = [ fs::get::fstab($all_hds) ];
    if ($target) {
        $hds = [ $target ];
        $fstab = [ grep { $_->{rootDevice} eq $target->{device} } fs::get::fstab($all_hds) ];
    } else {
        $fstab = $full_fstab;
    }

    my @wizlog;
    my (%solutions);

    my $min_linux = MB(600);
    my $min_swap = MB(50);
    my $min_freewin = MB(100);

    # each solution is a [ score, text, function ], where the function retunrs true if succeeded

    my @hds_rw = grep { !$_->{readonly} } @$hds;
    my @hds_can_add = grep { $_->can_add } @hds_rw;
    if (fs::get::hds_free_space(@hds_can_add) > $min_linux) {
	$solutions{free_space} = [ 30, N("Use free space"), sub { fsedit::auto_allocate($all_hds, $partitions); 1 } ];
    } else { 
	push @wizlog, N("Not enough free space to allocate new partitions") . ": " .
	  (@hds_can_add ? 
	   fs::get::hds_free_space(@hds_can_add) . " < $min_linux" :
	   "no harddrive on which partitions can be added");
    }

    if (my @truefs = grep { isTrueLocalFS($_) } @$fstab) {
	#- value twice the ext2 partitions
	$solutions{existing_part} = [ 20 + @truefs + @$fstab, N("Use existing partitions"), sub { fs::mount_point::ask_mount_points($in, $full_fstab, $all_hds) } ];
    } else {
	push @wizlog, N("There is no existing partition to use");
    }

    if (my @ok_for_resize_fat = grep { isFat_or_NTFS($_) && !fs::get::part2hd($_, $all_hds)->{readonly}
					 && !isRecovery($_) && $_->{size} > $min_linux + $min_swap + $min_freewin } @$fstab) {
        @ok_for_resize_fat = map {
            my $part = $_;
            my $hd = fs::get::part2hd($part, $all_hds);
            my $resize_fat = eval {
                my $pkg = $part->{fs_type} eq 'vfat' ? do { 
                    require resize_fat::main;
                    'resize_fat::main';
                } : do {
                    require diskdrake::resize_ntfs;
                    'diskdrake::resize_ntfs';
                };
                $pkg->new($part->{device}, devices::make($part->{device}));
            };
            if ($@) {
                log::l("The FAT resizer is unable to handle $part->{device} partition%s", formatError($@));
                undef $part;
            }
            if ($part) {
                my $min_win = eval {
                    my $_w = $in->wait_message(N("Resizing"), N("Computing the size of the Microsoft Windows® partition"));
                    $resize_fat->min_size + $min_freewin;
                };
                if ($@) {
                    log::l("The FAT resizer is unable to get minimal size for $part->{device} partition %s", formatError($@));
                    undef $part;
                } else {
                    my $min_linux_all = $min_linux + $min_swap;
                    #- make sure that even after normalizing the size to cylinder boundaries, the minimun will be saved,
                    #- this save at least a cylinder (less than 8Mb).
                    $min_win += partition_table::raw::cylinder_size($hd);

                    if ($part->{size} <= $min_linux_all + $min_win) {
#                die N("Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the Mandriva Linux installation.");
                        undef $part;
                    } else {
                        $part->{resize_fat} = $resize_fat;
                        $part->{min_win} = $min_win;
                        $part->{min_linux} = $min_linux_all;
                        #- try to keep at least 1GB free for Windows
                        #- try to use from 6GB to 10% free space for Linux
                        my $suggested_size = max(
                            $part->{min_win} + 1*MB(1024),
                            min(
                                $part->{size} - int(0.1 * ($part->{size} - $part->{min_win})),
                                $part->{size} - 6*MB(1024),
                            ),
                        );
                        $part->{req_size} = max(min($suggested_size, $part->{size} - $part->{min_linux}), $part->{min_win});
                    }
                }
            }
            $part || ();
        } @ok_for_resize_fat;
	if (@ok_for_resize_fat) {
            $solutions{resize_fat} =
                [ 20 - @ok_for_resize_fat, N("Use the free space on a Microsoft Windows® partition"),
                  sub {
                      my $part;
                      if (!$in->isa('interactive::gtk')) {
                          $part = $in->ask_from_listf_raw({ messages => N("Which partition do you want to resize?"),
                                                               interactive_help_id => 'resizeFATChoose',
                                                             }, \&partition_table::description, \@ok_for_resize_fat) or return;
                          $part->{size} > $part->{min_linux} + $part->{min_win} or die N("Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the Mandriva Linux installation.");
                      } else {
                          $part = top(grep { $_->{req_size} } @ok_for_resize_fat);
                      }
                      my $resize_fat = $part->{resize_fat};
                      my $hd = fs::get::part2hd($part, $all_hds);
                      $in->ask_okcancel('', formatAlaTeX(
                                            #-PO: keep the double empty lines between sections, this is formatted a la LaTeX
                                            N("WARNING!


Your Microsoft Windows® partition will be now resized.


Be careful: this operation is dangerous. If you have not already done so, you first need to exit the installation, run \"chkdsk c:\" from a Command Prompt under Microsoft Windows® (beware, running graphical program \"scandisk\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), optionally run defrag, then restart the installation. You should also backup your data.


When sure, press %s.", N("Next")))) or return;

                      my $oldsize = $part->{size};
                      if (!$in->isa('interactive::gtk')) {
                          my $mb_size = to_Mb($part->{req_size});
                          my $max_win = $part->{size} - $part->{min_linux};
                          $in->ask_from(N("Partitionning"), N("Which size do you want to keep for Microsoft Windows® on partition %s?", partition_table::description($part)), [
                                        { label => N("Size"), val => \$mb_size, min => to_Mb($part->{min_win}), max => to_Mb($max_win), type => 'range' },
                                    ]) or return;
                          $part->{req_size} = from_Mb($mb_size, $part->{min_win}, $part->{max_win});
                      }
                      $part->{size} = $part->{req_size};

                      $hd->adjustEnd($part);

                      eval {
                          my $_w = $in->wait_message(N("Resizing"), N("Resizing Microsoft Windows® partition"));
                          $resize_fat->resize($part->{size});
                      };
                      if (my $err = $@) {
                          $part->{size} = $oldsize;
                          die N("FAT resizing failed: %s", formatError($err));
                      }

                      $in->ask_warn('', N("To ensure data integrity after resizing the partition(s),
filesystem checks will be run on your next boot into Microsoft Windows®")) if $part->{fs_type} ne 'vfat';

                      set_isFormatted($part, 1);
                      partition_table::will_tell_kernel($hd, resize => $part); #- down-sizing, write_partitions is not needed
                      partition_table::adjust_local_extended($hd, $part);
                      partition_table::adjust_main_extended($hd);

                      fsedit::auto_allocate($all_hds, $partitions);
                      1;
                  }, \@ok_for_resize_fat ];
        }
    } else {
	push @wizlog, N("There is no FAT partition to resize (or not enough space left)");
    }

    if (@$fstab && @hds_rw) {
	$solutions{wipe_drive} =
	  [ 10, fsedit::is_one_big_fat_or_NT($hds) ? N("Remove Microsoft Windows®") : N("Erase and use entire disk"),
	    sub {
                my $hd;
                if (!$in->isa('interactive::gtk')) {
                    $hd = $in->ask_from_listf_raw({ messages => N("You have more than one hard drive, which one do you install linux on?"),
                                                       title => N("Partitioning"),
                                                       interactive_help_id => 'takeOverHdChoose',
                                                     },
                                                     \&partition_table::description, \@hds_rw) or return;
                } else {
                    $hd = $target;
                }
		$in->ask_okcancel_({ messages => N("ALL existing partitions and their data will be lost on drive %s", partition_table::description($hd)),
				    title => N("Partitioning"),
				    interactive_help_id => 'takeOverHdConfirm' }) or return;
		fsedit::partition_table_clear_and_initialize($all_hds->{lvms}, $hd, $in);
		fsedit::auto_allocate($all_hds, $partitions);
		1;
	    } ];
    }

    if (@hds_rw || find { $_->isa('partition_table::lvm') } @$hds) {
	$solutions{diskdrake} = [ 0, N("Custom disk partitioning"), sub {
	    partition_with_diskdrake($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab);
        } ];
    }

    $solutions{fdisk} =
      [ -10, N("Use fdisk"), sub {
	    $in->enter_console;
	    foreach (@$hds) {
		print "\n" x 10, N("You can now partition %s.
When you are done, do not forget to save using `w'", partition_table::description($_));
		print "\n\n";
		my $pid = 0;
		if (arch() =~ /ppc/) {
			$pid = fork() or exec "pdisk", devices::make($_->{device});
		} else {
			$pid = fork() or exec "fdisk", devices::make($_->{device});
		}
		waitpid($pid, 0);
	    }
	    $in->leave_console;
	    0;
	} ] if $partitioning_flags->{fdisk};

    log::l("partitioning wizard log:\n", (map { ">>wizlog>>$_\n" } @wizlog));
    %solutions;
}

sub warn_reboot_needed {
    my ($in) = @_;
    $in->ask_warn(N("Partitioning"), N("You need to reboot for the partition table modifications to take place"));
}

sub create_display_box {
    my ($kind, $resize, $fill_empty, $button) = @_;
    my @parts = fs::get::hds_fstab_and_holes($kind->{val});

    my $totalsectors = $kind->{val}{totalsectors};

    my $width = 540;
    $width -= 24 if $resize || $fill_empty;
    my $minwidth = 40;

    my $display_box = ugtk2::gtkset_size_request(Gtk2::HBox->new(0,0), -1, 26);

    my $sep_count = @parts - 1;
    #- ratio used to compute initial partition pixel width (each partition should be > min_width)
    #- though, the pixel/sectors ratio can not be the same for all the partitions
    my $initial_ratio = $totalsectors ? ($width - @parts * $minwidth - $sep_count) / $totalsectors : 1;

    my $vbox = Gtk2::VBox->new;

    my $part_sep;
    my $desc;

    my $last = $resize && $resize->[-1];

    foreach my $entry (@parts) {
	my $part_info = Gtk2::Label->new($entry->{device_LABEL});
	my @colorized_fs_types = qw(ext2 ext3 ext4 xfs swap vfat ntfs ntfs-3g);
        my $part_widget = Gtk2::EventBox->new;
        $entry->{width} = int($entry->{size} * $initial_ratio) + $minwidth;
        if ($last && $last->{device} eq $entry->{device}) {
            #- entry is the last resizable partition

            my $ratio;
            my $update_ratio = sub { $ratio = $entry->{width} / $entry->{size} };
            $update_ratio->();

            $part_widget->set_name("PART_vfat");
            $part_info->set_size_request(ceil($ratio * $entry->{min_win}), 0);

            my $mdv_widget = gtkadd(gtkset_name(Gtk2::EventBox->new, "PART_new"),
                                    gtkset_size_request(gtknew("Image", file => "small-logo"),
                                                        $ratio * MB(600), 0));

            my $hpane = Gtk2::HPaned->new;
            $hpane->add1($part_widget);
            $hpane->child1_shrink(0);
            $hpane->add2($mdv_widget);
            $hpane->child2_shrink(0);
            $hpane->set_position(ceil($ratio * $entry->{req_size}));
            ugtk2::gtkset_size_request($hpane, $entry->{width}, 0);
            ugtk2::gtkpack__($display_box, $hpane);

            my $add_part_size_info = sub {
                my ($name, $label) = @_;
                ugtk2::gtkpack__($desc,
                                 gtkadd(gtkset_name(Gtk2::EventBox->new, $name),
                                        Gtk2::Label->new(" " x 4)),
                                 gtkset_size_request(gtkset_alignment($label, 0, 0.5),
                                                     150, 20));
            };
            $desc = Gtk2::HBox->new(0,0);

            my $win_size_label = Gtk2::Label->new;
            $add_part_size_info->("PART_vfat", $win_size_label);

            my $mdv_size_label = Gtk2::Label->new;
            $add_part_size_info->("PART_new", $mdv_size_label);

            my $update_size_labels = sub {
                $win_size_label->set_label(" Windows (" . formatXiB($entry->{req_size}, 512) . ")");
                $mdv_size_label->set_label(" Mandriva (" . formatXiB($entry->{size} - $entry->{req_size}, 512) . ")");
                0;
            };
            my $update_req_size = sub {
                $entry->{req_size} = int($hpane->get_position / $ratio);
                $update_size_labels->();
            };
            my $button_activate = sub {
                $button->activate;
                0;
            };
            $hpane->signal_connect('size-allocate' => sub {
                my (undef, $alloc) = @_;
                $entry->{width} = $alloc->width;
                $update_ratio->();
                0;
            });
            $update_size_labels->();
            $hpane->signal_connect('motion-notify-event' => $update_req_size);
            $hpane->signal_connect('move-handle' => $update_req_size);
            $hpane->signal_connect('button-press-event' => $button_activate);
            $vbox->signal_connect('button-press-event' => $button_activate);
            $button->signal_connect('focus-in-event' => sub {
                $hpane->grab_focus;
                0;
            });
        } else {
            if ($fill_empty && isEmpty($entry)) {
                $part_info = gtknew("Image", file => "small-logo");
                $part_widget->set_name("PART_new");
            } else {
                $part_widget->set_name("PART_" . (isEmpty($entry) ? 'empty' :
                                         $entry->{fs_type} && member($entry->{fs_type}, @colorized_fs_types) ? $entry->{fs_type} :
                                         'other'));
            }
            $part_widget->set_size_request($entry->{width}, 0);
            ugtk2::gtkpack($display_box, $part_widget);
        }
	$part_widget->add($part_info);

	$part_sep = gtkadd(Gtk2::EventBox->new,
                     gtkset_size_request(Gtk2::Label->new("."), 1, 0));
	gtkpack__($display_box, $part_sep);
    }
    $display_box->remove($part_sep);
    unless ($resize || $fill_empty) {
        my @types = (N_("Ext2/3/4"), N_("XFS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("Windows"),
                    N_("Other"), N_("Empty"));
        my %name2fs_type = ('Ext2/3/4' => 'ext3', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs');
        $desc = ugtk2::gtkpack(Gtk2::HBox->new,
                map {
                     my $t = $name2fs_type{$_};
                     my $ev = Gtk2::EventBox->new;
		     my $w = Gtk2::Label->new(translate($_));
	             $ev->add($w);
		     $ev->set_name('PART_' . ($t || 'empty'));
                     $ev;
                } @types);
    }

    $vbox->add($display_box);
    $vbox->add($desc) if $desc;

    $vbox;
}

sub display_choices {
    my ($o, $contentbox, $mainw, %solutions) = @_;
    my @solutions = sort { $solutions{$b}[0] <=> $solutions{$a}[0] } keys %solutions;
    my @sol = grep { $solutions{$_}[0] >= 0 } @solutions;

    log::l(''  . "solutions found: " . join('', map { $solutions{$_}[1] } @sol) .
           " (all solutions found: " . join('', map { $solutions{$_}[1] } @solutions) . ")");

    @solutions = @sol if @sol > 1;
    log::l("solutions: ", int @solutions);
    @solutions or $o->ask_warn(N("Partitioning"), N("I can not find any room for installing")), die 'already displayed';

    log::l('HERE: ', join(',', map { $solutions{$_}[1] } @solutions));

    $contentbox->foreach(sub { $contentbox->remove($_[0]) });

    $mainw->{kind}{display_box} ||= create_display_box($mainw->{kind});
    ugtk2::gtkpack2__($contentbox, $mainw->{kind}{display_box});
    ugtk2::gtkpack__($contentbox, gtknew('Label',
                                         text => N("The DrakX Partitioning wizard found the following solutions:"),
                                         alignment => [0, 0]));

    my $choicesbox = gtknew('VBox');
    my $oldbutton;
    my $sep;
    foreach my $s (@solutions) {
        my $item;
        my $vbox = gtknew('VBox');
        my $button = gtknew('RadioButton', child => $vbox);
        if ($s eq 'free_space') {
            $item = create_display_box($mainw->{kind}, undef, 1);
        } elsif ($s eq 'resize_fat') {
            $item = create_display_box($mainw->{kind}, $solutions{$s}[3], undef, $button);
        } elsif ($s eq 'existing_part') {
        } elsif ($s eq 'wipe_drive') {
            $item = Gtk2::EventBox->new;
            my $b2 = gtknew("Image", file => "small-logo");
            $item->add($b2);
            $item->set_size_request(-1,26);
            $item->set_name("PART_new");
        } elsif ($s eq 'diskdrake') {
        } else {
            log::l($s);
            next;
        }
        $vbox->set_size_request(1024, -1);
        ugtk2::gtkpack($vbox, 
                       gtknew('Label',
                              text => $solutions{$s}[1],
                              alignment => [0, 0]));
        ugtk2::gtkpack($vbox, $item) if defined($item);
        $button->set_group($oldbutton->get_group) if $oldbutton;
        $oldbutton = $button;
        $button->signal_connect('toggled', sub { $mainw->{sol} = $solutions{$s} if $_[0]->get_active });
        ugtk2::gtkpack2__($choicesbox, $button);
        $sep = gtknew('HSeparator');
        ugtk2::gtkpack2__($choicesbox, $sep);
    }
    $choicesbox->remove($sep);
    ugtk2::gtkadd($contentbox, $choicesbox);
    $mainw->{sol} = $solutions{@solutions[0]};
}

sub main {
    my ($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, $b_nodiskdrake) = @_;

    my $sol;

    if ($o->isa('interactive::gtk')) {
        require mygtk2;
        mygtk2->import(qw(gtknew));
        require ugtk2;
        ugtk2->import(qw(:wrappers));

        my $mainw = ugtk2->new(N("Partitioning"), %$o, if__($::main_window, transient => $::main_window));
        $mainw->{box_allow_grow} = 1;

        mygtk2::set_main_window_size($mainw->{rwindow});

        require diskdrake::hd_gtk;
        diskdrake::hd_gtk::load_theme();

        my $mainbox = Gtk2::VBox->new;

        my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } @{$all_hds->{hds}};

        my $hdchoice = Gtk2::HBox->new;

        my $hdchoicelabel = Gtk2::Label->new(N("Here is the content of your disk drive "));

        my $combobox = Gtk2::ComboBox->new_text;
        foreach (@kinds) {
            my $info = $_->{val}{info};
            $info .= " (" . formatXiB($_->{val}{totalsectors}, 512) . ")" if $_->{val}{totalsectors};
            $combobox->append_text($info);
        }
        $combobox->set_active(0);

        ugtk2::gtkpack2__($hdchoice, $hdchoicelabel);
        $hdchoice->add($combobox);

        ugtk2::gtkpack2__($mainbox, $hdchoice);

        my $contentbox = Gtk2::VBox->new(0, 12);
        $mainbox->add($contentbox);

        my $kind = @kinds[$combobox->get_active];
        my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, diskdrake::hd_gtk::kind2hd($kind));
        delete $solutions{diskdrake} if $b_nodiskdrake;
        $mainw->{kind} = $kind;
        display_choices($o, $contentbox, $mainw, %solutions);

        $combobox->signal_connect("changed", sub {        
            $mainw->{kind} = @kinds[$combobox->get_active];
            my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, diskdrake::hd_gtk::kind2hd($mainw->{kind}));
            delete $solutions{diskdrake} if $b_nodiskdrake;
            display_choices($o, $contentbox, $mainw, %solutions);
            $mainw->{window}->show_all;
        });

        my @more_buttons = (
            [ gtknew('Install_Button',
                     text => N("Help"),
                     clicked => sub { interactive::gtk::display_help($o, {interactive_help_id => 'doPartitionDisks' }, $mainw) }),
              undef, 1 ],
            );
        my $buttons_pack = $mainw->create_okcancel(N("Next"), undef, '', @more_buttons);
        $mainbox->pack_end($buttons_pack, 0, 0, 0);
        ugtk2::gtkadd($mainw->{window}, $mainbox);
        $mainw->{window}->show_all;

        $mainw->main;

        $sol=$mainw->{sol};
    } else {
        my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab);

        delete $solutions{diskdrake} if $b_nodiskdrake;

        my @solutions = sort { $b->[0] <=> $a->[0] } values %solutions;

        my @sol = grep { $_->[0] >= 0 } @solutions;
        log::l(''  . "solutions found: " . join('', map { $_->[1] } @sol) . 
               " (all solutions found: " . join('', map { $_->[1] } @solutions) . ")");
        @solutions = @sol if @sol > 1;
        log::l("solutions: ", int @solutions);
        @solutions or $o->ask_warn(N("Partitioning"), N("I can not find any room for installing")), die 'already displayed';
        log::l('HERE: ', join(',', map { $_->[1] } @solutions));
        $o->ask_from_({ 
            title => N("Partitioning"),
            interactive_help_id => 'doPartitionDisks',
                      },
                      [
                       { label => N("The DrakX Partitioning wizard found the following solutions:"),  title => $::isInstall },
                       { val => \$sol, list => \@solutions, format => sub { $_[0][1] }, type => 'list' },
                      ]);
    }
    log::l("partitionWizard calling solution $sol->[1]");
    my $ok = eval { $sol->[2]->() };
    if (my $err = $@) {
        if ($err =~ /wizcancel/) {
            $_->destroy foreach $::WizardTable->get_children;
        } else {
            $o->ask_warn('', N("Partitioning failed: %s", formatError($err)));
        }
    }
    $ok or goto &main;
    1;
}

1;
'>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 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570
# Drak X
# Copyright (C) 2002 Mandriva
#
# NOTE: use UTF-8 only
#
# prabu <prabu_anand2000@yahoo.com>, 2002.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX 1.0\n"
"POT-Creation-Date: 2008-08-12 17:53+0200\n"
"PO-Revision-Date: 2002-09-06 00:35+0800\n"
"Last-Translator: prabu anand <prabu_anand2000@yahoo.com>\n"
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.6\n"

#: any.pm:245 diskdrake/interactive.pm:554 diskdrake/interactive.pm:741
#: diskdrake/interactive.pm:785 diskdrake/interactive.pm:843
#: diskdrake/interactive.pm:1133 do_pkgs.pm:220 do_pkgs.pm:262
#: harddrake/sound.pm:285 interactive.pm:580
#, c-format
msgid "Please wait"
msgstr "தயவுசெய்து காத்திருக்கவும்.."

#: any.pm:245
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "துவங்குநிரல் நிறுவல்"

#: any.pm:256
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""

#: any.pm:267
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "துவங்குநிரலை நிறுவப்படுவதில் பிழை நேர்ந்துள்ளது"

#: any.pm:273
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"தயவுசெய்து நிறுவுவதற்கு ஆங்கிலத்ைத பயன்படுத்துங்கள் You may need to change your Open "
"Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."

#: any.pm:313
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"நீங்கள் துவங்குநிரலை ஓர் வகிரில் நிறுவுகிறீர்கள்\n"
"உங்கள் வன்வட்டின் துவக்கத்தில் ஓர் துவங்குநிரல் இருப்பது இதற்கு பொதுவான காரனம்.\n"
"\n"
"நீங்கள் எந்த வன்வட்டில் இருந்து துவங்க விரும்புகிறீர்கள்?"

#: any.pm:339
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "வன்தட்டின் முதல் வில்ைல "

#: any.pm:341
#, c-format
msgid "First sector of drive (MBR)"
msgstr "வன்தட்டின் முதல் வில்ைல "

#: any.pm:343
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "துவங்குவகிர்தலின் முதல் வில்ைல"

#: any.pm:345
#, c-format
msgid "On Floppy"
msgstr "நெகிழ்வட்டில்"

#: any.pm:347
#, c-format
msgid "Skip"
msgstr "தவிர்"

#: any.pm:351
#, c-format
msgid "LILO/grub Installation"
msgstr "லிலோ/கிரப் நிறுவல்"

#: any.pm:352
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "உங்கள் துவங்குநிரலை எங்கு நிறுவ விரும்புகிறீர்கள்?"

#: any.pm:379
#, c-format
msgid "Boot Style Configuration"
msgstr "தொடங்கல் பாந்த வடிவமைப்பு"

#: any.pm:389 any.pm:420 any.pm:421
#, c-format
msgid "Bootloader main options"
msgstr "துவங்குநிரலின் முக்கிய விருப்பத்ேதர்வுகள்"

#: any.pm:393
#, c-format
msgid "Bootloader"
msgstr "துவங்குநிரல்"

#: any.pm:394 any.pm:424
#, c-format
msgid "Bootloader to use"
msgstr "பயன்படுத்த வேண்டிய துவங்குநிரல்"

#: any.pm:396 any.pm:426
#, c-format
msgid "Boot device"
msgstr "துவங்கு சாதனம்"

#: any.pm:398
#, c-format
msgid "Main options"
msgstr ""

#: any.pm:399
#, c-format
msgid "Delay before booting default image"
msgstr "கொடாநிலை உருவம் துவங்குவதற்கான தாமதம்"

#: any.pm:400
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "சிடியில் இருந்து தொடங்கலாமா?"

#: any.pm:401
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "சிடியில் இருந்து தொடங்கலாமா?"

#: any.pm:402
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "சிடியில் இருந்து தொடங்கலாமா?"

#: any.pm:404 any.pm:790 any.pm:799 authentication.pm:239
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "கடவுச்ெசால்"

#: any.pm:406 authentication.pm:250
#, c-format
msgid "The passwords do not match"
msgstr "கடவுச்ெசாற்கள் இரண்டும் பொருந்தவில்ைல"

#: any.pm:406 authentication.pm:250 diskdrake/interactive.pm:1300
#, c-format
msgid "Please try again"
msgstr "மீண்டும் முயற்சித்து பார்க்கவும்"

#: any.pm:407
#, fuzzy, c-format
msgid "You can not use a password with %s"
msgstr "மறைக்குறியீடு செய்யப்பட்ட கோப்பமைப்புக்கு %s ஏற்றப்புள்ளியை பயன்படுத்த முடியாது"

#: any.pm:410 any.pm:792 any.pm:801 authentication.pm:240
#, c-format
msgid "Password (again)"
msgstr "கடவுச்ெசால் (மீண்டும்)"

#: any.pm:411
#, c-format
msgid "Restrict command line options"
msgstr "உரைவழியில் பயன்படுத்தக்கூடிய விருப்பத்ேதர்வுகளைக் கட்டுபடுத்து"

#: any.pm:411
#, c-format
msgid "restrict"
msgstr "கட்டுபடுத்து"

#: any.pm:412
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"விருப்பத்ேதர்வு ``Restrict command line options''  என்பது கடவுச்ெசால் இல்ைலயென்றால் "
"பயனற்றது"

#: any.pm:414
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp அடைவை ஒவ்வொரு முறைத் துவங்கும்போதும் துடைத்து விடு"

#: any.pm:415
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "சரியான நினைவகத்ைத தெரிவிக்கவும்(கண்டுள்ள அளவு %d MB)"

#: any.pm:416
#, c-format
msgid "Give the ram size in MB"
msgstr "சரியான நினைவகத்ைத மெகாபைட்டில் தெரிவிக்கவும்"

#: any.pm:425
#, c-format
msgid "Init Message"
msgstr "முதல் செய்தி"

#: any.pm:427
#, c-format
msgid "Open Firmware Delay"
msgstr "ஒபன்பர்ம்வேர் தாமதம்"

#: any.pm:428
#, c-format
msgid "Kernel Boot Timeout"
msgstr "கரு தொடங்கல் வெளியேற்ற நேரம்"

#: any.pm:429
#, c-format
msgid "Enable CD Boot?"
msgstr "சிடியில் இருந்து தொடங்கலாமா?"

#: any.pm:430
#, c-format
msgid "Enable OF Boot?"
msgstr "ஒபன்பர்ம்வேர்-ல்  இருந்து தொடங்கலாமா?"

#: any.pm:431
#, c-format
msgid "Default OS?"
msgstr "கொடாநிலை இயங்கு தளம்?"

#: any.pm:498
#, c-format
msgid "Image"
msgstr "உருவம்"

#: any.pm:499 any.pm:512
#, c-format
msgid "Root"
msgstr "மூலம்"

#: any.pm:500 any.pm:525
#, c-format
msgid "Append"
msgstr "பின் சேர்"

#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""

#: any.pm:505
#, c-format
msgid "Video mode"
msgstr "ஒளித்ேதாற்ற முறைமை"

#: any.pm:507
#, c-format
msgid "Initrd"
msgstr "தொடங்கலுருவம்"

#: any.pm:508
#, fuzzy, c-format
msgid "Network profile"
msgstr "வலையமைப்பு பினாமி"

#: any.pm:517 any.pm:522 any.pm:524 diskdrake/interactive.pm:376
#, c-format
msgid "Label"
msgstr "தலைப்பு"

#: any.pm:519 any.pm:527 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "கொடாநிலை"

#: any.pm:526
#, c-format
msgid "NoVideo"
msgstr "ஒளித்ேதாற்றம் இல்ைல"

#: any.pm:537
#, c-format
msgid "Empty label not allowed"
msgstr "வெற்றுத் தலைப்புகளுக்கு அனுமதியில்ைல"

#: any.pm:538
#, c-format
msgid "You must specify a kernel image"
msgstr "நீங்கள் நிச்சயம் ஒரு கரு உருவை குறிப்பிட வேண்டும்"

#: any.pm:538
#, c-format
msgid "You must specify a root partition"
msgstr "நீங்கள் நிச்சயம் ஒரு மூல வகிரை குறிப்பிட வேண்டும்"

#: any.pm:539
#, c-format
msgid "This label is already used"
msgstr "இந்த தலைப்பு ஏற்கனவே பயன்பாட்டில் உள்ளது"

#: any.pm:557
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "நீங்கள் எந்த வகையான நுழைவை சேர்க்க போகிறீர்கள்?"

#: any.pm:558
#, c-format
msgid "Linux"
msgstr "லினக்ஸ்"

#: any.pm:558
#, c-format
msgid "Other OS (SunOS...)"
msgstr "மற்ற இயங்கு தளம்(சன்...)"

#: any.pm:559
#, c-format
msgid "Other OS (MacOS...)"
msgstr "மற்ற இயங்கு தளம்(மேக்...)"

#: any.pm:559
#, c-format
msgid "Other OS (Windows...)"
msgstr "மற்ற இயங்கு தளம்(விண்ேடாஸ்...)"

#: any.pm:587
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"உங்கள் தொடங்கல்பட்டியில் உள்ள உருப்படிகள் இதோ உள்ளது\n"
"இதை நீங்கள் விருப்பம் போல் மாற்றியமைக்கலாம்"

#: any.pm:751
#, c-format
msgid "access to X programs"
msgstr "X நிரல்களுக்கான அனுமதி"

#: any.pm:752
#, c-format
msgid "access to rpm tools"
msgstr "rpmபொதிக் கருவிகளுக்கான அனுமதி"

#: any.pm:753
#, c-format
msgid "allow \"su\""
msgstr "\"su\" நிர்வாகியாக மாறும் கட்டளையை அனுமதி"

#: any.pm:754
#, c-format
msgid "access to administrative files"
msgstr "நிர்வாக கோப்புகளுக்கு அனுமதி"

#: any.pm:755
#, c-format
msgid "access to network tools"
msgstr "வலையமைப்புக் கருவிகளுக்கு அனுமதி"

#: any.pm:756
#, c-format
msgid "access to compilation tools"
msgstr "உருவாக்கக் கருவிகளுக்கான அனுமதி"

#: any.pm:762
#, c-format
msgid "(already added %s)"
msgstr "(%s ஏற்கனவே சேர்க்கப்பட்டுவிட்டது)"

#: any.pm:768
#, c-format
msgid "Please give a user name"
msgstr "பயனருக்கு ஓர் பெயர் கொடுக்கவும்"

#: any.pm:769
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "பயனர் பெயரில் சிறிய எழுத்துக்கள், எண்கள் `-' `_' மட்டுமே இருக்கலாம்"

#: any.pm:770
#, c-format
msgid "The user name is too long"
msgstr "பயனர் பெயர் மிக நீளமாக உள்ளது"

#: any.pm:771
#, c-format
msgid "This user name has already been added"
msgstr "இந்தப் பயனர் பெயர் ஏற்கனவே சேர்க்கப்பட்டுவிட்டது"

#: any.pm:777 any.pm:803
#, c-format
msgid "User ID"
msgstr "உபயோகிப்பாளர் அடையாளம்"

#: any.pm:777 any.pm:804
#, c-format
msgid "Group ID"
msgstr "குழு ID"

#: any.pm:778
#, c-format
msgid "%s must be a number"
msgstr ""

#: any.pm:779
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""

#: any.pm:783
#, fuzzy, c-format
msgid "User management"
msgstr "பயனர்ெபயர்"

#: any.pm:789 authentication.pm:226
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "உங்கள் கடவுச்ெசால்ைல உருவாக்கவும்"

#: any.pm:794
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"பயனர் பெயரை உள்ளிடவும்\n"
"%s"

#: any.pm:795
#, c-format
msgid "Real name"
msgstr "உன்ைமயான பெயர்"

#: any.pm:798
#, fuzzy, c-format
msgid "Login name"
msgstr "களத்தின் பெயர்"

#: any.pm:802
#, c-format
msgid "Shell"
msgstr "ஓடு"

#: any.pm:806
#, c-format
msgid "Icon"
msgstr "குறும்படம்"

#: any.pm:844 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "தன்னியக்கநுழைவு"

#: any.pm:845
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "என்னால் உங்கள் கணினியை தன்னியக்கமாக பயனர் பயன்படுத்தும் வகையில் அமைக்க முடியும்"

#: any.pm:846
#, fuzzy, c-format
msgid "Use this feature"
msgstr "நீங்கள் இந்த வசதியை பயன்படுத்த விரும்புகிறீர்களா?"

#: any.pm:847
#, c-format
msgid "Choose the default user:"
msgstr "கொடாநிலை பயனரைத் தேர்வுச் செய்யவும்"

#: any.pm:848
#, c-format
msgid "Choose the window manager to run:"
msgstr "பயன்படுத்த விரும்பும் சாளர மேலாளரைத் தேர்வுச் செய்யவும்"

#: any.pm:871 any.pm:920
#, fuzzy, c-format
msgid "Release Notes"
msgstr "வெளியீடு: "

#: any.pm:878 any.pm:1214 interactive/gtk.pm:766
#, c-format
msgid "Close"
msgstr "மூடு"

#: any.pm:914
#, c-format
msgid "License agreement"
msgstr "அனுமதி ஒப்பந்தம்"

#: any.pm:916 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "வெளிச்ெசல்"

#: any.pm:923
#, c-format
msgid "Accept"
msgstr "ஒப்புக் கொள்கிறேன்"

#: any.pm:923
#, c-format
msgid "Refuse"
msgstr "ஒப்புக்ெகாள்ளவில்ைல"

#: any.pm:943 any.pm:1009
#, c-format
msgid "Please choose a language to use."
msgstr "நீங்கள் பயன்படுத்த விரும்பும் மொழியைத் தேர்வுச் செய்யவும்"

#: any.pm:944 any.pm:1010
#, fuzzy, c-format
msgid "Language choice"
msgstr "மியான்மர்"

#: any.pm:973
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"மாண்ட்ேரக் லினக்ஸில் பல மொழிகளை பயன்படுத்தலாம்\n"
"நீங்கள் நிறுவ விரும்பும் மொழியைத் தேர்வுச் செய்க\n"
"நீங்கள் நிறுவி முடித்தவுடன் உங்களுக்கு அவை கிடைக்கும்"

#: any.pm:976
#, c-format
msgid "Multi languages"
msgstr ""

#: any.pm:987 any.pm:1018
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""

#: any.pm:989
#, fuzzy, c-format
msgid "All languages"
msgstr "உங்கள் மொழியைத்  தேர்வுச் செய்க"

#: any.pm:1065
#, fuzzy, c-format
msgid "Country / Region"
msgstr "நாடு"

#: any.pm:1066
#, fuzzy, c-format
msgid "Please choose your country."
msgstr "தயவுசெய்து, உங்கள் எலியின் வகையைத் தேர்வுச் செய்யுங்கள்"

#: any.pm:1068
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "உங்கள் பயன்பாட்டிற்கு உள்ள விசைப்பலகைகள் அனைத்தும் இங்கே கொடுக்கப்பட்டுள்ளன"

#: any.pm:1069
#, fuzzy, c-format
msgid "Other Countries"
msgstr "மற்ற துறைகளை"

#: any.pm:1069 interactive.pm:481
#, c-format
msgid "Advanced"
msgstr "அலாதியான "

#: any.pm:1075
#, c-format
msgid "Input method:"
msgstr ""

#: any.pm:1078
#, c-format
msgid "None"
msgstr "வெற்று"

#: any.pm:1159
#, c-format
msgid "No sharing"
msgstr "பகிர்தல் கிடையாது"

#: any.pm:1159
#, c-format
msgid "Allow all users"
msgstr "அனைத்து பயனரையும் அனுமதி"

#: any.pm:1159
#, c-format
msgid "Custom"
msgstr "தனிப்பயனாக்கம்"

#: any.pm:1163
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"நீங்கள் உங்கள் பயனர்களை தத்தம் அடைவுகளை எளிதாக பகிர்ந்து கொள்ள\n"
"விரும்புகிறீர்களா? இதன் மூலம் பயனர்கள் கான்கொரர், நாடிலஸ் ஆகியவற்றில் \"பகிர்\" என்பதைத் "
"தேர்வுச் செய்ய முடியும் .\n"
"\n"
"\"தனிப்பயனாக்கம்\" மூலம் ஒவ்வொரு பயனருக்கும் தனித்தனியாக அனுமதி அளித்தல்.\n"

#: any.pm:1175
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""

#: any.pm:1178
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""

#: any.pm:1186
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"நீங்கள் சம்பா, NFS மூலம் ஏற்றுமதி செய்யலாம். உங்களுக்கு தேவையானதைத் தேர்வுச் செய்யவும்"

#: any.pm:1214
#, c-format
msgid "Launch userdrake"
msgstr "டிரேக்பயனரை துவக்கு"

#: any.pm:1216
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"நீங்கள் பின்னர் \"fileshare\". \n"
"என்ற குழுவிற்கு பயனரை டிரேக்பயனர் மூலம் எளிதாகச் சேர்க்கலாம்"

#: any.pm:1308
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""

#: any.pm:1312
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""

#: any.pm:1347
#, c-format
msgid "Timezone"
msgstr "கால மண்டலம்"

#: any.pm:1347
#, c-format
msgid "Which is your timezone?"
msgstr "நீங்கள் எந்த கால மண்டலத்ைதச் சேர்ந்தவர்?"

#: any.pm:1370 any.pm:1372
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""

#: any.pm:1373
#, c-format
msgid "What is the best time?"
msgstr ""

#: any.pm:1377
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "வன்ெபாருள் கடிகாரத்ைத GMT க்கு மாற்று"

#: any.pm:1378
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "வன்ெபாருள் கடிகாரத்ைத GMT க்கு மாற்று"

#: any.pm:1380
#, c-format
msgid "NTP Server"
msgstr "NTP சேவையகம்"

#: any.pm:1381
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "தானியங்கி நேர ஒத்தியக்கி(NTP உதவியுடன்)"

#: authentication.pm:25
#, c-format
msgid "Local file"
msgstr "வட்டார கோப்பு"

#: authentication.pm:26
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:27
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:28
#, fuzzy, c-format
msgid "Smart Card"
msgstr "வலையமைப்பு அட்ைட"

#: authentication.pm:29 authentication.pm:205
#, c-format
msgid "Windows Domain"
msgstr "விண்ேடாஸ் களம்"

#: authentication.pm:30
#, c-format
msgid "Kerberos 5"
msgstr ""

#: authentication.pm:64
#, fuzzy, c-format
msgid "Local file:"
msgstr "உள்ளமை கோப்புகள்:"

#: authentication.pm:64
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""

#: authentication.pm:65
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:65
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""

#: authentication.pm:66
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:66
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""

#: authentication.pm:67
#, c-format
msgid "Windows Domain:"
msgstr "விண்ேடாஸ் களம்:"

#: authentication.pm:67
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""

#: authentication.pm:68
#, c-format
msgid "Kerberos 5 :"
msgstr ""

#: authentication.pm:68
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr ""

#: authentication.pm:96 authentication.pm:130 authentication.pm:149
#: authentication.pm:150 authentication.pm:176 authentication.pm:200
#: authentication.pm:871
#, c-format
msgid " "
msgstr ""

#: authentication.pm:97 authentication.pm:131 authentication.pm:177
#: authentication.pm:201
#, fuzzy, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "வின்கள நல்குரிமை வேண்டும்"

#: authentication.pm:99
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:101 authentication.pm:156
#, c-format
msgid "LDAP Server"
msgstr "LDAP சேவையகம்"

#: authentication.pm:102 authentication.pm:157
#, fuzzy, c-format
msgid "Base dn"
msgstr "LDAP Base dn"

#: authentication.pm:103
#, c-format
msgid "Fetch base Dn "
msgstr ""

#: authentication.pm:105 authentication.pm:160
#, c-format
msgid "Use encrypt connection with TLS "
msgstr ""

#: authentication.pm:106 authentication.pm:161
#, c-format
msgid "Download CA Certificate "
msgstr ""

#: authentication.pm:108 authentication.pm:141
#, c-format
msgid "Use Disconnect mode "
msgstr ""

#: authentication.pm:109 authentication.pm:162
#, c-format
msgid "Use anonymous BIND "
msgstr ""

#: authentication.pm:110 authentication.pm:113 authentication.pm:115
#: authentication.pm:119
#, c-format
msgid "  "
msgstr ""

#: authentication.pm:111 authentication.pm:163
#, c-format
msgid "Bind DN "
msgstr ""

#: authentication.pm:112 authentication.pm:164
#, fuzzy, c-format
msgid "Bind Password "
msgstr "கடவுச்ெசால்"

#: authentication.pm:114
#, c-format
msgid "Advanced path for group "
msgstr ""

#: authentication.pm:116
#, fuzzy, c-format
msgid "Password base"
msgstr "கடவுச்ெசால்"

#: authentication.pm:117
#, fuzzy, c-format
msgid "Group base"
msgstr "குழு ID"

#: authentication.pm:118
#, c-format
msgid "Shadow base"
msgstr ""

#: authentication.pm:133
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:135
#, fuzzy, c-format
msgid "Realm "
msgstr "உன்ைமயான பெயர்"

#: authentication.pm:137
#, fuzzy, c-format
msgid "KDCs Servers"
msgstr "LDAP சேவையகம்"

#: authentication.pm:139
#, c-format
msgid "Use DNS to resolve hosts for realms "
msgstr ""

#: authentication.pm:140
#, c-format
msgid "Use DNS to resolve KDCs for realms "
msgstr ""

#: authentication.pm:145
#, fuzzy, c-format
msgid "Use local file for users informations"
msgstr "libsafe என்ற நூலகநிரலை  பரிமாறிகளில் பயன்படுத்துங்கள்"

#: authentication.pm:146
#, fuzzy, c-format
msgid "Use Ldap for users informations"
msgstr "வன்தட்ைட பற்றிய தகவல்"

#: authentication.pm:152
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""

#: authentication.pm:158
#, c-format
msgid "Fecth base Dn "
msgstr ""

#: authentication.pm:179
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""

#: authentication.pm:181
#, c-format
msgid "NIS Domain"
msgstr "NIS  களம்"

#: authentication.pm:182
#, c-format
msgid "NIS Server"
msgstr "NIS  சேவையகம்"

#: authentication.pm:203
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""

#: authentication.pm:207
#, fuzzy, c-format
msgid "Domain Model "
msgstr "வின்களம்"

#: authentication.pm:209
#, c-format
msgid "Active Directory Realm "
msgstr ""

#: authentication.pm:225 authentication.pm:241
#, c-format
msgid "Authentication"
msgstr "நல்குாிமை"

#: authentication.pm:227
#, fuzzy, c-format
msgid "Authentication method"
msgstr "நல்குாிமை"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:232
#, c-format
msgid "No password"
msgstr "கடவுச்ெசால் ஏதுமில்ைல"

#: authentication.pm:253
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"உங்கள் கடவுச்ெசால் மிக சிறியதாக உள்ளது (குறைந்த பட்சம் இது %d எழுத்துக்கள் இருக்க "
"வேண்டும்)  "

#: authentication.pm:353
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "NIS களத்தில் பரப்ப முடியாது"

#: authentication.pm:866
#, c-format
msgid "Select file"
msgstr "கோப்ேபா தேர்வுச் செய்"

#: authentication.pm:872
#, fuzzy, c-format
msgid "Domain Windows for authentication : "
msgstr "வின்கள நல்குரிமை வேண்டும்"

#: authentication.pm:874
#, c-format
msgid "Domain Admin User Name"
msgstr "விண்ேடாஸ் களத்தின் பயனர் பெயர்"

#: authentication.pm:875
#, c-format
msgid "Domain Admin Password"
msgstr "விண்ேடாஸ் களம் நிர்வாகியின் கடவுச்ெசால்"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:942
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"

#: bootloader.pm:1110
#, c-format
msgid "LILO with text menu"
msgstr "உரைவழி லிலோ"

#: bootloader.pm:1111
#, c-format
msgid "GRUB with graphical menu"
msgstr ""

#: bootloader.pm:1112
#, c-format
msgid "GRUB with text menu"
msgstr ""

#: bootloader.pm:1113
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1114
#, c-format
msgid "SILO"
msgstr "சிலோ"

#: bootloader.pm:1195
#, c-format
msgid "not enough room in /boot"
msgstr "/boot அடைவில் போதிய இடமில்ைல"

#: bootloader.pm:1843
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "%s இந்த வகிர் உங்கள் துவங்குநிரலை ஏற்றுக் கொள்ளாது\n"

#: bootloader.pm:1964
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""

#: bootloader.pm:1977
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""

#: bootloader.pm:1978
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "துவங்குநிரலை நிறுவுங்கள்"

#: common.pm:142
#, fuzzy, c-format
msgid "B"
msgstr "கிலோபைட்"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "கிலோபைட்"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "மெகாபட்"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "கிகாபைட் "

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "டெராபைட்"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d நிமிடங்கள்"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 நிமிடம்"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d விநாடிகள்"

#: common.pm:358
#, c-format
msgid "command %s missing"
msgstr ""

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "புதிய"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:382 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "இறக்கு"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:379 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "ஏற்று"

#: diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "சேவையகம்"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:373
#: diskdrake/interactive.pm:613 diskdrake/interactive.pm:631
#: diskdrake/interactive.pm:635 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "ஏற்றப் புள்ளி"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:375
#: diskdrake/interactive.pm:989 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "விருப்பத்ேதர்வுகள்"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:164 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "முடிந்தது"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:113 diskdrake/hd_gtk.pm:263
#: diskdrake/interactive.pm:233 diskdrake/interactive.pm:246
#: diskdrake/interactive.pm:480 diskdrake/interactive.pm:485
#: diskdrake/interactive.pm:603 diskdrake/interactive.pm:861
#: diskdrake/interactive.pm:1035 diskdrake/interactive.pm:1048
#: diskdrake/interactive.pm:1051 diskdrake/interactive.pm:1300
#: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44
#: do_pkgs.pm:60 do_pkgs.pm:65 fsedit.pm:222 interactive/http.pm:117
#: interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:94
#: scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95 wizards.pm:99
#: wizards.pm:121
#, c-format
msgid "Error"
msgstr "பிழை"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "தயவுெசய்து சேவையகத்தின் URL அடிக்கவும்"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL எப்ேபாதும் http:// அல்லது https:// எனத் தொடங்கவேண்டும்"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "சேவையகம்: "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:453
#: diskdrake/interactive.pm:1180 diskdrake/interactive.pm:1260
#, c-format
msgid "Mount point: "
msgstr "ஏற்றப் புள்ளி: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1267
#, c-format
msgid "Options: %s"
msgstr "விருப்பத்ேதர்வுகள்: %s"

#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:284
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206
#: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250
#: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274
#, c-format
msgid "Partitioning"
msgstr "வகிர் ெசய்தல்"

#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1010
#: diskdrake/interactive.pm:1020 diskdrake/interactive.pm:1073
#, c-format
msgid "Read carefully!"
msgstr "கவனமாக படிக்கவும்"

#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "தயவுசெய்து உங்களுக்கு தேவையான அனைத்ைதயும் காப்ெபடுத்துக்ெகாள்ளவும்"

#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:226
#, c-format
msgid "Exit"
msgstr "வெளிச்ெசல்"

#: diskdrake/hd_gtk.pm:94
#, c-format
msgid "Continue"
msgstr "தொடர்க"

#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr "எதொடங்கல் "

#: diskdrake/hd_gtk.pm:160 interactive.pm:644 interactive/gtk.pm:744
#: interactive/gtk.pm:759 interactive/gtk.pm:779 ugtk2.pm:938 ugtk2.pm:939
#, c-format
msgid "Help"
msgstr "உதவி"

#: diskdrake/hd_gtk.pm:195
#, c-format
msgid "Choose action"
msgstr "இயக்கத்ைத தேர்வுச் செய் "

#: diskdrake/hd_gtk.pm:199
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"உங்கள் விண்ேடாஸ் வகிர்\n"
"மிகப்ெபரியதாக உள்ளது .\n"
"அதை நீங்கள் மாற்றியமைக்க நான் அறிவுருத்துவேன்\n"
"(\"மாற்றியமை\" என்பதன் மீது கிளிக் செய்)"

#: diskdrake/hd_gtk.pm:201
#, c-format
msgid "Please click on a partition"
msgstr "தயவுசெய்து வகிர் ஒன்ைற தேர்ந்ெதடுக்கவும்"

#: diskdrake/hd_gtk.pm:215 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "விவரங்கள்"

#: diskdrake/hd_gtk.pm:263
#, c-format
msgid "No hard drives found"
msgstr "வன்தட்டு ஏதும் காணப்படவில்ைல"

#: diskdrake/hd_gtk.pm:290
#, c-format
msgid "Unknown"
msgstr "தெரியாதது"

#: diskdrake/hd_gtk.pm:352
#, fuzzy, c-format
msgid "Ext3"
msgstr "வெளிச்ெசல்"

#: diskdrake/hd_gtk.pm:352
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS கோப்பமைப்பு"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "Swap"
msgstr "இடமாற்று"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "SunOS"
msgstr "சன் இயங்குதளம்"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "HFS"
msgstr "HFS கோப்பமைப்பு"

#: diskdrake/hd_gtk.pm:352
#, c-format
msgid "Windows"
msgstr "விண்ேடாஸ்"

#: diskdrake/hd_gtk.pm:353 services.pm:158
#, c-format
msgid "Other"
msgstr "மற்றவை"

#: diskdrake/hd_gtk.pm:353 diskdrake/interactive.pm:1195
#, c-format
msgid "Empty"
msgstr "ஒன்றுமில்ைல"

#: diskdrake/hd_gtk.pm:357
#, c-format
msgid "Filesystem types:"
msgstr "கோப்பமைப்பு வகைகள்:"

#: diskdrake/hd_gtk.pm:381 diskdrake/interactive.pm:289
#: diskdrake/interactive.pm:361 diskdrake/interactive.pm:510
#: diskdrake/interactive.pm:694 diskdrake/interactive.pm:752
#: diskdrake/interactive.pm:841 diskdrake/interactive.pm:883
#: diskdrake/interactive.pm:884 diskdrake/interactive.pm:1118
#: diskdrake/interactive.pm:1156 diskdrake/interactive.pm:1299 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 harddrake/sound.pm:422
#, c-format
msgid "Warning"
msgstr "எச்சரிக்ைக"

#: diskdrake/hd_gtk.pm:381
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "இந்த வகிர் மாற்றியமைக்கப்பட முடியாதது"

#: diskdrake/hd_gtk.pm:390
#, c-format
msgid "Use ``Unmount'' first"
msgstr "முதலில்  இறக்கு கட்டளையை  பயன்படுத்து"

#: diskdrake/hd_gtk.pm:390
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "பதிலாக  ``%s'' ஐ பயன்படுத்து"

#: diskdrake/hd_gtk.pm:390 diskdrake/interactive.pm:374
#: diskdrake/interactive.pm:548 diskdrake/interactive.pm:1026
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "வகை: "

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose another partition"
msgstr "வேறு வகிர் ஒன்றை தேர்வுச் செய் "

#: diskdrake/interactive.pm:197
#, c-format
msgid "Choose a partition"
msgstr "வகிர் ஒன்றை தேர்வுச் செய்"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to normal mode"
msgstr "சாதாரனர் முறைமைக்கு மாறு"

#: diskdrake/interactive.pm:259
#, c-format
msgid "Toggle to expert mode"
msgstr "அறிஞர் முறைமைக்கு மாறு"

#: diskdrake/interactive.pm:267 diskdrake/interactive.pm:277
#: diskdrake/interactive.pm:1103
#, fuzzy, c-format
msgid "Confirmation"
msgstr "வடிவமைப்புகள்"

#: diskdrake/interactive.pm:267
#, c-format
msgid "Continue anyway?"
msgstr "எப்படியும் தொடரவதா?"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without saving"
msgstr "சேமிக்காமல் வெளிச்ெசல்"

#: diskdrake/interactive.pm:272
#, c-format
msgid "Quit without writing the partition table?"
msgstr "மாற்றங்களை தட்டில் சேமிக்காமல் வெளிச்ெசல்"

#: diskdrake/interactive.pm:277
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr " /etc/fstab மாற்றங்களை தட்டில் சேமிக்க வேண்டுமா"

#: diskdrake/interactive.pm:284 fs/partitioning_wizard.pm:250
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "நீங்கள் செய்த மாற்றங்கள் செயல்பட உங்கள் கணினியை மறுதொடக்கம் செய்யவும்"

#: diskdrake/interactive.pm:289
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""

#: diskdrake/interactive.pm:302
#, c-format
msgid "Clear all"
msgstr "அனைத்ைதயும் மாற்றியமை"

#: diskdrake/interactive.pm:303
#, c-format
msgid "Auto allocate"
msgstr "தானியக்க வகுத்தல்"

#: diskdrake/interactive.pm:304 diskdrake/interactive.pm:352
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "மேலும்"

#: diskdrake/interactive.pm:309
#, c-format
msgid "Hard drive information"
msgstr "வன்தட்ைட பற்றிய தகவல்"

#: diskdrake/interactive.pm:341
#, c-format
msgid "All primary partitions are used"
msgstr "தொடக்க வகிர் அனைத்தும் பயஙனபாட்டில் உள்ளது"

#: diskdrake/interactive.pm:342
#, c-format
msgid "I can not add any more partitions"
msgstr "இதற்கு மேல் வகிர் எதனையும் சேர்க்க முடியாது"

#: diskdrake/interactive.pm:343
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"மேலும் வகிர் எதனையும் சேர்க்க வேண்டுமானால், தொடக்க வகிர் ஒன்றை நீக்கி விட்டு புதிய "
"நீட்டிப்பு வகிர் ஒன்றை உருவாக்கவும்"

#: diskdrake/interactive.pm:354
#, c-format
msgid "Reload partition table"
msgstr "தட்டின் வகிர் அமைப்புகளை புதுக்கல் செய்யவும்"

#: diskdrake/interactive.pm:361
#, c-format
msgid "Detailed information"
msgstr "விரிவான தகவல்"

#: diskdrake/interactive.pm:377 diskdrake/interactive.pm:707
#, c-format
msgid "Resize"
msgstr "மாற்றியமை "

#: diskdrake/interactive.pm:378
#, c-format
msgid "Format"
msgstr "வடிவூட்டு"

#: diskdrake/interactive.pm:380 diskdrake/interactive.pm:793
#, c-format
msgid "Add to RAID"
msgstr "RAID உடன் சேர்"

#: diskdrake/interactive.pm:381 diskdrake/interactive.pm:811
#, c-format
msgid "Add to LVM"
msgstr "LVM உடன் சேர்"

#: diskdrake/interactive.pm:383
#, c-format
msgid "Delete"
msgstr "நீக்கு"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Remove from RAID"
msgstr "RAID இருந்து நீக்கு"

#: diskdrake/interactive.pm:385
#, c-format
msgid "Remove from LVM"
msgstr "LVM இருந்து நீக்கு"

#: diskdrake/interactive.pm:386
#, c-format
msgid "Modify RAID"
msgstr "RAID மாற்று"

#: diskdrake/interactive.pm:387
#, c-format
msgid "Use for loopback"
msgstr "கண்ணியாக பயன்படு"

#: diskdrake/interactive.pm:398
#, c-format
msgid "Create"
msgstr "உருவாக்கு"

#: diskdrake/interactive.pm:442 diskdrake/interactive.pm:444
#, c-format
msgid "Create a new partition"
msgstr "வகிர் ஒன்றை உருவாக்ககு "

#: diskdrake/interactive.pm:446
#, c-format
msgid "Start sector: "
msgstr "ஆரம்ப வில்: "

#: diskdrake/interactive.pm:449 diskdrake/interactive.pm:876
#, c-format
msgid "Size in MB: "
msgstr "மெகாபைட்டில் அளவு: "

#: diskdrake/interactive.pm:451 diskdrake/interactive.pm:877
#, c-format
msgid "Filesystem type: "
msgstr "கோப்பமைப்பு வகை: "

#: diskdrake/interactive.pm:457
#, c-format
msgid "Preference: "
msgstr "விருப்பங்கள்: "

#: diskdrake/interactive.pm:460
#, fuzzy, c-format
msgid "Logical volume name "
msgstr "உள்ளமை கோப்புகள்"

#: diskdrake/interactive.pm:480
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"வகிர் ஒன்றை உருவாக்க முடியாது\n"
"அதிகபட்ச தொடக்க வகிர் ஏற்கனவே உள்ளது.\n"
"ஒரு தொடக்க வகிர் ஒன்றை நீக்கி விட்டு நீட்டிப்பு வகிர் ஒன்றை உருவாக்குங்கள்"

#: diskdrake/interactive.pm:510
#, c-format
msgid "Remove the loopback file?"
msgstr "கண்ணியின் கோப்ேபா நீக்கவா?"

#: diskdrake/interactive.pm:532
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr " %s, என்ற வகிர் அதன் வகையை மாற்றியவுடன், அதலிருந்த தகவல் அனைத்ைதயும் இழந்துவிடும்"

#: diskdrake/interactive.pm:545
#, c-format
msgid "Change partition type"
msgstr "வகிர் வகையை மாற்று: "

#: diskdrake/interactive.pm:547 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "நீங்கள் எந்த கோப்பமைப்ேபா பயன்படுத்த போகிறீர்கள்?"

#: diskdrake/interactive.pm:554
#, fuzzy, c-format
msgid "Switching from %s to %s"
msgstr "ext2 யிலிருந்து ext3 கோப்பமைப்பிற்கு மாறுகிறது"

#: diskdrake/interactive.pm:580 diskdrake/interactive.pm:583
#, c-format
msgid "Which volume label?"
msgstr ""

#: diskdrake/interactive.pm:584
#, fuzzy, c-format
msgid "Label:"
msgstr "தலைப்பு"

#: diskdrake/interactive.pm:598
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "உங்கள் கண்ணி கோப்பு %s எங்கு ஏற்ற  விரும்புகிறீர்கள்?"

#: diskdrake/interactive.pm:599
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "உங்கள் %s வட்ைட எங்கு ஏற்ற விரும்புகிறீர்கள்?"

#: diskdrake/interactive.pm:604
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"ஏற்கனவே பயனீட்டில் உள்ளதால் ஏற்றப்புள்ளியை பயன்படுத்த முடியாது.\n"
"முதலில் கண்ணியின் கோப்ேபா நீக்குங்கள்"

#: diskdrake/interactive.pm:634
#, c-format
msgid "Where do you want to mount %s?"
msgstr "உங்கள் %s வட்ைட எங்கு ஏற்ற விரும்புகிறீர்கள்?"

#: diskdrake/interactive.pm:658 diskdrake/interactive.pm:741
#: fs/partitioning_wizard.pm:146 fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing"
msgstr "மாற்றியமைக்கப்படுகிறது"

#: diskdrake/interactive.pm:658
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "FAT கோப்பமைப்பு அளவுகள் அளக்கப்படுகின்றன"

#: diskdrake/interactive.pm:694
#, c-format
msgid "This partition is not resizeable"
msgstr "இந்த வகிர் மாற்றியமைக்கப்பட முடியாதது"

#: diskdrake/interactive.pm:699
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "தயவுசெய்து உங்களுக்கு தேவையான அனைத்ைதயும் காப்ெபடுத்துக்ெகாள்ளவும்"

#: diskdrake/interactive.pm:701
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s, மாற்றியமைத்த பிறகு அனைத்ைதயும் அழித்து விடும்"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Choose the new size"
msgstr "புதிய அளவை தேர்வுச் செய்யவும்"

#: diskdrake/interactive.pm:709
#, c-format
msgid "New size in MB: "
msgstr "புதிய அளவை மெகா பைட்டில் : "

#: diskdrake/interactive.pm:710
#, c-format
msgid "Minimum size: %s MB"
msgstr ""

#: diskdrake/interactive.pm:711
#, c-format
msgid "Maximum size: %s MB"
msgstr ""

#: diskdrake/interactive.pm:752 fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""

#: diskdrake/interactive.pm:793
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "ஏற்கனவே இருக்கும் RAID உடன் சேர்"

#: diskdrake/interactive.pm:795 diskdrake/interactive.pm:813
#, c-format
msgid "new"
msgstr "புதிய"

#: diskdrake/interactive.pm:811
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "ஏற்கனவே இருக்கும் LVM உடன் சேர்"

#: diskdrake/interactive.pm:818
#, c-format
msgid "LVM name?"
msgstr "LVM  பெயர்"

#: diskdrake/interactive.pm:841
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""

#: diskdrake/interactive.pm:843
#, c-format
msgid "Moving physical extents"
msgstr ""

#: diskdrake/interactive.pm:861
#, c-format
msgid "This partition can not be used for loopback"
msgstr "இந்த வகிர் கண்ணியாக பயன்ழடுத்த முடியாது"

#: diskdrake/interactive.pm:874
#, c-format
msgid "Loopback"
msgstr "கண்ணி"

#: diskdrake/interactive.pm:875
#, c-format
msgid "Loopback file name: "
msgstr "கண்ணி கோப்பின் பெயர்: "

#: diskdrake/interactive.pm:880
#, c-format
msgid "Give a file name"
msgstr "கோப்பிற்கு பெயர் கொடுக்கவும்"

#: diskdrake/interactive.pm:883
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "இந்த ேகாப்பு ஏற்கனவே பயன்பாட்டில் உள்ளது, வேறு பெயர் கொடுக்கவும்"

#: diskdrake/interactive.pm:884
#, c-format
msgid "File already exists. Use it?"
msgstr "இந்த கோப்பு ஏற்கனவே உள்ளது. பயன்பாடுத்தி கொள்ளலாமா?"

#: diskdrake/interactive.pm:916 diskdrake/interactive.pm:919
#, c-format
msgid "Mount options"
msgstr "ஏற்ற விருப்பத்ேதர்வுகள்"

#: diskdrake/interactive.pm:926
#, c-format
msgid "Various"
msgstr "வேறு"

#: diskdrake/interactive.pm:991
#, c-format
msgid "device"
msgstr "சாதனம்"

#: diskdrake/interactive.pm:992
#, c-format
msgid "level"
msgstr "நிலை"

#: diskdrake/interactive.pm:993
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "அளவு"

#: diskdrake/interactive.pm:1011
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "இந்த செயல் அபாயகரமானது. கவனமாக இருக்கவும்"

#: diskdrake/interactive.pm:1026
#, c-format
msgid "What type of partitioning?"
msgstr "எந்த வகை வகிர்?"

#: diskdrake/interactive.pm:1064
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "நீங்கள் செய்த மாற்றங்கள் வேலை செய்ய மறு தொடக்கம் தேவை"

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s வட்டின் வகிர் அமைப்பு தட்டில் எழுதப்படவுள்ளது"

#: diskdrake/interactive.pm:1098
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"தயவுசெய்து உங்களுக்கு தேவையான அனைத்ைதயும் காப்ெபடுத்துக்ெகாள்ளவும் %s வடிவூட்டிய பிறகு "
"அனைத்து விவரங்களையும் இழந்து விடுவீர்கள்"

#: diskdrake/interactive.pm:1103 fs/partitioning.pm:48
#, c-format
msgid "Check bad blocks?"
msgstr "கட்டங்களை சோதிக்க வேண்டுமா?"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Move files to the new partition"
msgstr "கோப்புகளை வேறு வகிர் ஒன்றுக்கு மாற்றவும்"

#: diskdrake/interactive.pm:1117
#, c-format
msgid "Hide files"
msgstr "கோப்புகளை மறைக்கவும்"

#: diskdrake/interactive.pm:1118
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""

#: diskdrake/interactive.pm:1133
#, c-format
msgid "Moving files to the new partition"
msgstr "கோப்புகளை வேறு வகிர் ஒன்றுக்கு மாற்றப்படுகிறது "

#: diskdrake/interactive.pm:1137
#, c-format
msgid "Copying %s"
msgstr "%s நகலெடுக்கபடுகிறது"

#: diskdrake/interactive.pm:1141
#, c-format
msgid "Removing %s"
msgstr "%s நீக்கப்படுகிறது"

#: diskdrake/interactive.pm:1155
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s வகிர் இப்ேபாது %s என வழங்கப்படுகிறது"

#: diskdrake/interactive.pm:1156
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""

#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1244
#, c-format
msgid "Device: "
msgstr "சாதனம்: "

#: diskdrake/interactive.pm:1182
#, c-format
msgid "Volume label: "
msgstr ""

#: diskdrake/interactive.pm:1183
#, c-format
msgid "UUID: "
msgstr ""

#: diskdrake/interactive.pm:1184
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr ": %s டாஸ் இயக்கி எண்\n"

#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1197
#: diskdrake/interactive.pm:1263
#, c-format
msgid "Type: "
msgstr "வகை: "

#: diskdrake/interactive.pm:1192 diskdrake/interactive.pm:1248
#, c-format
msgid "Name: "
msgstr "கணினியின்பெயர்:  "

#: diskdrake/interactive.pm:1199
#, c-format
msgid "Start: sector %s\n"
msgstr "ஆரம்பவில் %s\n"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "Size: %s"
msgstr "அளவு: %s"

#: diskdrake/interactive.pm:1202
#, c-format
msgid ", %s sectors"
msgstr ", %s வில்"

#: diskdrake/interactive.pm:1204
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d முதல்  %d வரை உள்ள உருளைகள்\n"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""

#: diskdrake/interactive.pm:1206
#, c-format
msgid "Formatted\n"
msgstr "வடிவூட்டப்பட்டது\n"

#: diskdrake/interactive.pm:1207
#, c-format
msgid "Not formatted\n"
msgstr "வடிவூட்டப்பட்டவில்ைல\n"

#: diskdrake/interactive.pm:1208
#, c-format
msgid "Mounted\n"
msgstr "ஏற்றப்பட்டுள்ளது\n"

#: diskdrake/interactive.pm:1209
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1214
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"கண்ணி கோப்பு:\n"
"   %s\n"

#: diskdrake/interactive.pm:1215
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"கொடாநிலையாக தொடங்கிய வகிர்\n"
".\n"

#: diskdrake/interactive.pm:1217
#, c-format
msgid "Level %s\n"
msgstr "நிலை %s\n"

#: diskdrake/interactive.pm:1218
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "வெட்டு அளவு%s\n"

#: diskdrake/interactive.pm:1219
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-வட்டிகள் %s\n"

#: diskdrake/interactive.pm:1221
#, c-format
msgid "Loopback file name: %s"
msgstr "கண்ணி கோப்பின் பெயர்: %s"

#: diskdrake/interactive.pm:1224
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"இந்த வகிர்\n"
"முக்கியமானது\n"
"இதை ஒன்றும் செய்யாதீர்கள்\n"

#: diskdrake/interactive.pm:1227
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"இந்த வகிர் உங்கள்\n"
"கணினி இரண்டு இயக்க நிரல்களும் துவங்க\n"
"தேவை\n"

#: diskdrake/interactive.pm:1236
#, c-format
msgid "Free space on %s (%s)"
msgstr ""

#: diskdrake/interactive.pm:1245
#, c-format
msgid "Read-only"
msgstr "படிப்பதற்கு மட்டும்"

#: diskdrake/interactive.pm:1246
#, c-format
msgid "Size: %s\n"
msgstr "அளவு: %s\n"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "கோனங்கள்: %s உருளைகள், %s தலைகள், %s விற்கள்\n"

#: diskdrake/interactive.pm:1249
#, fuzzy, c-format
msgid "Medium type: "
msgstr "கோப்பமைப்பு வகை: "

#: diskdrake/interactive.pm:1250
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-தட்டுகள்%s\n"

#: diskdrake/interactive.pm:1251
#, c-format
msgid "Partition table type: %s\n"
msgstr "வகிர் அமைப்பின் வகை: %s\n"

#: diskdrake/interactive.pm:1252
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d தடத்தில் %d உள்ளது\n"

#: diskdrake/interactive.pm:1295
#, c-format
msgid "Filesystem encryption key"
msgstr "கோப்பமைப்பு மறைக்குறியீட்டுச் சாவி"

#: diskdrake/interactive.pm:1296
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "உங்கள் கோப்பமைப்புக்கு மறைக்குறியீட்டுச் சாவியை தேர்வுச் செய்"

#: diskdrake/interactive.pm:1299
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "இந்த மறைக்குறியீட்டுச் சாவி மிக எளிதாக உள்ளது  %d அளவு இருக்கவேண்டும்"

#: diskdrake/interactive.pm:1300
#, c-format
msgid "The encryption keys do not match"
msgstr "மறைக்குறியீட்டுச் சாவிகள் இரண்டும் ஒன்றாக இல்ைல"

#: diskdrake/interactive.pm:1303
#, c-format
msgid "Encryption key"
msgstr "மறைக்குறியீட்டுச் சாவி"

#: diskdrake/interactive.pm:1304
#, c-format
msgid "Encryption key (again)"
msgstr "மறைக்குறியீட்டுச் சாவி(மீண்டும்)"

#: diskdrake/interactive.pm:1306
#, fuzzy, c-format
msgid "Encryption algorithm"
msgstr "நல்குாிமை"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "வகையை மாற்று"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:543
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 ugtk2.pm:409 ugtk2.pm:511
#: ugtk2.pm:520 ugtk2.pm:803
#, c-format
msgid "Cancel"
msgstr "தவிர்"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "பயனர்ெபயர் %s தொடங்க முடியவில்ைல(தவறான கடவுச்ெசால்?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "வின்கள நல்குரிமை வேண்டும்"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "எந்த பயனர்ெபயர்"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "மற்ெறான்று"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "தயவுசெய்து உங்கள் பயனர்ெபயர், கடவுச்ெசால், வின்களம் ஆகியவற்ைற தட்டவும்"

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "பயனர்ெபயர்"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "வின்களம்"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "சேவையகத்ைத தேடு"

#: diskdrake/smbnfs_gtk.pm:211
#, fuzzy, c-format
msgid "Search new servers"
msgstr "சேவையகத்ைத தேடு"

#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "%s என்ற பொதி நிறுவப்படவேண்டும். இதை நிறுவ வேண்டுமா?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60
#, fuzzy, c-format
msgid "Could not install the %s package!"
msgstr "%s பொதி நிறுவப்படுகிறது"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "கட்டாயமாக இருக்க வேண்டியப் பொதி %s இல்ைல"

#: do_pkgs.pm:39
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
msgstr "கிழ்கானும் பொதிகள் நிறுவுவதற்கு தேர்வுச் செய்யப்பட்டுள்ளது"

#: do_pkgs.pm:220
#, c-format
msgid "Installing packages..."
msgstr "பொதிகளை நிறுவப்படுகிறது..."

#: do_pkgs.pm:262
#, fuzzy, c-format
msgid "Removing packages..."
msgstr "%s நீக்கப்படுகிறது..."

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr "பிழை நேர்ந்துள்ளது -உங்கள் வன்ெபாருளைச் சோதிக்கவும்"

#: fs/any.pm:75 fs/partitioning_wizard.pm:59
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "FAT வடிவூட்டப்பட்ட வகிர் /boot/efi என்ற இடத்தில் ஏற்றப்பட வேண்டும்"

#: fs/format.pm:63 fs/format.pm:70
#, c-format
msgid "Formatting partition %s"
msgstr "%s வகிர் வடிவூட்டப்படுகிறது"

#: fs/format.pm:67
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s என்ற கோப்பு உருவாக்கப்பட்டு வடிவூட்டபடுகின்றன"

#: fs/format.pm:122
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "%s இந்த %s வகையில் வடிவூட்டுவது எப்படி என எனக்கு தெரியாது"

#: fs/format.pm:127 fs/format.pm:129
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s போல்  %s வடிவூட்டியது முடியவில்ைல"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "சுற்று ஏற்றங்கள் %s\n"

#: fs/mount.pm:79
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "%s வகிர் வடிவூட்டப்படுகிறது"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s வகிர்  %s அடைவில் ஏற்றுவதில் பிழை நேர்ந்துள்ளது"

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "%s சரிபார்த்தல்"

#: fs/mount.pm:119 partition_table.pm:403
#, c-format
msgid "error unmounting %s: %s"
msgstr "இறக்குவதில் பிழை நேர்ந்துள்ளது %s: %s"

#: fs/mount.pm:134
#, fuzzy, c-format
msgid "Enabling swap partition %s"
msgstr "%s வகிர் வடிவூட்டப்படுகிறது"

#: fs/mount_options.pm:115
#, fuzzy, c-format
msgid "Use an encrypted file system"
msgstr "மறைக்குறியீடு செய்யப்பட்ட கோப்பமைப்புக்கு %s ஏற்றப்புள்ளியை பயன்படுத்த முடியாது"

#: fs/mount_options.pm:117
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:119
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:121
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""

#: fs/mount_options.pm:124
#, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""

#: fs/mount_options.pm:127
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""

#: fs/mount_options.pm:130
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""

#: fs/mount_options.pm:132
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""

#: fs/mount_options.pm:136
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""

#: fs/mount_options.pm:140
#, c-format
msgid "Mount the file system read-only."
msgstr ""

#: fs/mount_options.pm:142
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr ""

#: fs/mount_options.pm:144
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr ""

#: fs/mount_options.pm:146
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr ""

#: fs/mount_options.pm:148
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:150
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr ""

#: fs/mount_options.pm:152
#, c-format
msgid "Give write access to ordinary users"
msgstr ""

#: fs/mount_options.pm:154
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "ஏற்றப் புள்ளி %s ஏற்கனவே உள்ளது"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "வகிர் ஏதுமில்ைல"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "ஏற்றப் புள்ளிகளுக்காக வகிர்கள் தேடப்படுகின்றன"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "ஏற்றப் புள்ளிகளை தேர்வுச் செய்"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "எந்த வகிர் வடிவூட்டபட வேண்டுமென தேர்வு சேய்யுங்கள்"

#: fs/partitioning.pm:75
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr "%s என்ற கோப்பமைப்பு சோதிக்கப் படவில்ைல. தவறு ஏதுமிருநதால் அதை சரிசெய்யலாமா? "

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "இடமாற்றுக்கு போதுமான இடமில்ைல, தயவுசெய்து இன்னும் சிறிது சேர்க்கவும்"

#: fs/partitioning_wizard.pm:51
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr "உங்களிடம் நிச்சயம் ஒரு மூல வகிர் இருக்க வேண்டும்"

#: fs/partitioning_wizard.pm:56
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"உங்களிடம்  இடமாற்று வகிர் இல்ைல.\n"
"\n"
"அப்படியே தொடரலாமா?"

#: fs/partitioning_wizard.pm:84
#, c-format
msgid "Use free space"
msgstr "காலியாக உள்ள இடத்ைத பயன்படுத்து"

#: fs/partitioning_wizard.pm:86
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "போதுமான காலியிடம் இல்ைல"

#: fs/partitioning_wizard.pm:94
#, c-format
msgid "Use existing partitions"
msgstr "இருக்கும் வகிர்களை பயன்படுத்துங்கள்"

#: fs/partitioning_wizard.pm:96
#, c-format
msgid "There is no existing partition to use"
msgstr "பயன்படுத்த வகிர்கள் ஏதுமில்ைல"

#: fs/partitioning_wizard.pm:103
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "வின்ேடாஸ் வகிற்ைற பயன்படுத்தவும்"

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "எந்த வகிற்றில் நீங்கள் வின்ேடாஸ்லினக்ைஸ பயன்படுத்த விரும்புகிறீர்கள்?"

#: fs/partitioning_wizard.pm:108
#, c-format
msgid "Choose the sizes"
msgstr "அளவை தேர்வுச் செய்யவும்"

#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Root partition size in MB: "
msgstr "மெகா பைட்டில் மூல வகிர் அளவு : "

#: fs/partitioning_wizard.pm:110
#, c-format
msgid "Swap partition size in MB: "
msgstr "மெகா பைட்டில் இடமாற்று வகிர் அளவு : "

#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr "கண்ணி ேகாப்ைப பயன்படுத்த FAT வகிர் ஏதுமில்ைல(அல்லது காலியிடம் இல்ைல)"

#: fs/partitioning_wizard.pm:127
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "விண்ேடாஸ் வகிற்றில் உள்ள காலியிடத்ைத பயன்படுத்து"

#: fs/partitioning_wizard.pm:129
#, c-format
msgid "Which partition do you want to resize?"
msgstr "நீங்கள் எந்த வகிற்றின் அளவை மாற்றியமைக்க போகிறீர்கள்?"

#: fs/partitioning_wizard.pm:143
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"விண்ேடாஸ் வகிற்றின் அளவு  மாற்றியமைக்கப்பதில் , \n"
"இந்த பிழை நேர்ந்துள்ளது மன்னிக்கவும்  %s"

#: fs/partitioning_wizard.pm:146
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "விண்ேடாஸ் வகிற்றில் உள்ள இடம் கண்டுபிடிக்கிறது"

#: fs/partitioning_wizard.pm:153
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"விண்ேடாஸ் வகிர் மிகவும் துண்டாக்கப்பட்டுள்ளது. தயவுசெய்து நீங்கள் கணினியை விண்ேடாஸில் "
"தொடங்கி  ``defrag'' என்ற கருவியை இயக்கவும். பின்னர் மீண்டும் இங்கு வந்து மாண்ட்ேரக் "
"நிறுவலைத் தொடரவும்"

#: fs/partitioning_wizard.pm:156
#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"எச்சரிக்ைக!\n"
"\n"
"\n"
"டிரேக்X இப்ேபாது விண்ேடாஸ் வகிற்றின் அளவை  மாற்றியமைக்கப் போகிறது: இது மிகவும் "
"ஆபத்தானது. நீங்கள் நிச்சயம் விண்ேடாஸில் scandisk நிரலை  இயக்கியிருக்க வேண்டும்  மேலும் "
"உங்களுக்கு தேவையான தகவல்களை காப்பு எடுத்துக் கொள்ளவும்\n"
"\n"
"\n"
"இவையனைத்தும் சரியாக இருந்தால் %s என தேர்வுச் செய்யவும்"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:165 interactive.pm:542 interactive/curses.pm:263
#: ugtk2.pm:513
#, c-format
msgid "Next"
msgstr "அடுத்து"

#: fs/partitioning_wizard.pm:168
#, fuzzy, c-format
msgid "Partitionning"
msgstr "வகிர் ெசய்தல்"

#: fs/partitioning_wizard.pm:168
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "விண்ேடாஸ் அளவு எவ்வளவு பெரிதாக இருக்க வேண்டும் வகிற்றில் %s?"

#: fs/partitioning_wizard.pm:169
#, c-format
msgid "Size"
msgstr "அளவு"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "விண்ேடாஸ் வகிற்றின் அளவு  மாற்றியமைக்கப்படுகிறது"

#: fs/partitioning_wizard.pm:183
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT அளவு  மாற்றியமைக்கப்டுவதில் பிழை நேர்ந்துள்ளது: %s"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "அளவை மாற்றுவதற்கு FAT வகிர் ஏதுமில்ைல(காலியிடம் ஏதுமில்ைல"

#: fs/partitioning_wizard.pm:203
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "விண்ேடாைஸ நீக்கி விடு"

#: fs/partitioning_wizard.pm:203
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "முழு வட்ைடயும் அழித்து விடு"

#: fs/partitioning_wizard.pm:205
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "உங்களிடம் ஒன்றுக்கு மேற்ப்பட்ட வன் வட்டு உள்ளது, எதில் லினக்ைஸ நிறுவ வேண்டும்?"

#: fs/partitioning_wizard.pm:210 fsedit.pm:570
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr " %s வட்டில் உள்ள அனைத்து வகிரும் அதில் உள்ள அனைத்து தகவல்களும் அழிக்கப்பட்டுவிடும்"

#: fs/partitioning_wizard.pm:220
#, c-format
msgid "Custom disk partitioning"
msgstr "வகிர்தலை தனிப்பயனாக்கு"

#: fs/partitioning_wizard.pm:226
#, c-format
msgid "Use fdisk"
msgstr "fdisk-ஐ பயன்படுத்து"

#: fs/partitioning_wizard.pm:229
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"இப்ேபாது நீங்கள் இந்த %s வட்ைட வகிர்தல் வேண்டும்.\n"
"முடிந்தவுடன் , `w' என்ழதன் மூலம் சேமிப்பதை மறந்து விடாதே"

#: fs/partitioning_wizard.pm:269
#, c-format
msgid "I can not find any room for installing"
msgstr "நிறுவுவதற்கு வகிற்றில் போதிய இடமில்ைல"

#: fs/partitioning_wizard.pm:273
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "டிரேக்X மாயாவி உங்களுக்கு இந்த பதில்களை கொடுக்கிறது"

#: fs/partitioning_wizard.pm:284
#, c-format
msgid "Partitioning failed: %s"
msgstr "வகிர்தலில் பிழை நேர்ந்துள்ளது: %s"

#: fs/type.pm:370
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr "JFS வகையை  16மெகா பைட்டுக்கு குறைவான வகிற்றில் பயன்படுத்த முடியாது"

#: fs/type.pm:371
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS  வகையை  32மெகா பைட்டுக்கு குறைவான வகிற்றில் பயன்படுத்த முடியாது"

#: fsedit.pm:23
#, c-format
msgid "simple"
msgstr "எளிய"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "/usr உடன்"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "பரிமாறி"

#: fsedit.pm:116
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""

#: fsedit.pm:223
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"உங்கள் வகிர் அமைப்பு %s குழப்பமாக உள்ளது.\n"
"%s என்ற பிழை நேர்ந்துள்ளது\n"
"\n"
"உங்கள் வன் வட்டில் உள்ள அனைத்து விவரங்களையும் இழக்க சம்மதமா?\n"

#: fsedit.pm:397
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "ஏற்றப் புள்ளிகள்  / உடன் மட்டும் தான் தொடங்க வேண்டும்"

#: fsedit.pm:398
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""

#: fsedit.pm:399
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr " %s என்ற ஏற்றப் புள்ளியுடன் ஏற்கனவே வகிர் ஒன்று உள்ளது\n"

#: fsedit.pm:403
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"உங்கள்  root (/) வகிர்  RAID வகையில் உள்ளது. நீங்கள் லிலோ பயன்படுத்தினால் அது வேலை "
"செய்ய. /boot தேவை. அதனால்  /boot உருவாக்கவும்"

#: fsedit.pm:409
#, fuzzy, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "%s என்ற ஏற்றப் புள்ளியில் LVM வகிர் ஆகையால் ஏற்ற முடியாது"

#: fsedit.pm:411
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
"உங்கள்  root (/) வகிர்  RAID வகையில் உள்ளது. நீங்கள் லிலோ பயன்படுத்தினால் அது வேலை "
"செய்ய. /boot தேவை. அதனால்  /boot உருவாக்கவும்"

#: fsedit.pm:415 fsedit.pm:417
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "இந்த அடைவு மூல கோப்பமைப்பில் இருக்க வேண்டும்"

#: fsedit.pm:419 fsedit.pm:421
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"நீங்கள் இதனை ஏற்ற  (ext2/ext3, reiserfs, xfs, or jfs) போன்ற கோப்பமைப்பு தேவை\n"

#: fsedit.pm:423
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "மறைக்குறியீடு செய்யப்பட்ட கோப்பமைப்புக்கு %s ஏற்றப்புள்ளியை பயன்படுத்த முடியாது"

#: fsedit.pm:487
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "தன்னியக்கமாக அளிக்க போதிய இடமில்ைல"

#: fsedit.pm:489
#, c-format
msgid "Nothing to do"
msgstr "ஒன்றும் செய்வதற்கில்ைல"

#: harddrake/data.pm:64
#, c-format
msgid "SATA controllers"
msgstr "SATA கட்டுபாடுகள்"

#: harddrake/data.pm:73
#, c-format
msgid "RAID controllers"
msgstr "RAID கட்டுபாடுகள்"

#: harddrake/data.pm:83
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA கட்டுபாடுகள்"

#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "அட்ைட மாதிரி:"

#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire கட்டுபாடுகள்"

#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA கட்டுபாடுகள்"

#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI கட்டுபாடுகள்"

#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB கட்டுபாடுகள்"

#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB அச்சுப்ெபாறி"

#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus கட்டுபாடுகள்"

#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "பிரிட்ஜ் மற்றும் இயக்க கட்டுபாடுகள்"

#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "ெநகிழ்வட்டு"

#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "ஜிப்"

#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "வட்டு"

#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""

#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "சிடி இயக்கி"

#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "சிடி/டிவிடி எரிப்பான்கள்"

#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "டிவிடி-இயக்கி"

#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "நாடா"

#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP கட்டுபாடுகள்"

#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "ஒளித்ேதற்ற அட்ைட"

#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""

#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV அட்ைட"

#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "மற்ற பல்லூடக சாதனங்கள்"

#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "ஒலியட்ைட"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "வலைபடக் கருவி"

#: harddrake/data.pm:326
#, c-format
msgid "Processors"
msgstr "ெசயலகங்கள்"

#: harddrake/data.pm:336
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "ISDN அட்ைட"

#: harddrake/data.pm:347
#, c-format
msgid "USB sound devices"
msgstr ""

#: harddrake/data.pm:356
#, c-format
msgid "Radio cards"
msgstr ""

#: harddrake/data.pm:365
#, c-format
msgid "ATM network cards"
msgstr ""

#: harddrake/data.pm:374
#, c-format
msgid "WAN network cards"
msgstr ""

#: harddrake/data.pm:383
#, c-format
msgid "Bluetooth devices"
msgstr ""

#: harddrake/data.pm:392
#, c-format
msgid "Ethernetcard"
msgstr "வலையமைப்பு அட்ைட"

#: harddrake/data.pm:409
#, c-format
msgid "Modem"
msgstr "ேமாடம்"

#: harddrake/data.pm:419
#, c-format
msgid "ADSL adapters"
msgstr ""

#: harddrake/data.pm:431
#, c-format
msgid "Memory"
msgstr "நினைவு"

#: harddrake/data.pm:440
#, c-format
msgid "Printer"
msgstr "அச்சுப்ெபாறி"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:454
#, c-format
msgid "Game port controllers"
msgstr ""

#: harddrake/data.pm:463
#, c-format
msgid "Joystick"
msgstr "ஜாய்ஸ்டிக்"

#: harddrake/data.pm:473
#, c-format
msgid "Keyboard"
msgstr "விசைப்பலகை"

#: harddrake/data.pm:486
#, c-format
msgid "Tablet and touchscreen"
msgstr ""

#: harddrake/data.pm:495
#, c-format
msgid "Mouse"
msgstr "எலி"

#: harddrake/data.pm:509
#, c-format
msgid "Biometry"
msgstr ""

#: harddrake/data.pm:517
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:526
#, c-format
msgid "Scanner"
msgstr "வருடி"

#: harddrake/data.pm:537
#, c-format
msgid "Unknown/Others"
msgstr "ெதரியாத/மற்றவை"

#: harddrake/data.pm:565
#, c-format
msgid "cpu # "
msgstr "ெசயலகம் # "

#: harddrake/sound.pm:285
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "தயவுசெய்து காத்திருக்கவும்...செயல்படுத்தப்படுகிறது"

#: harddrake/sound.pm:346
#, c-format
msgid "Enable PulseAudio"
msgstr ""

#: harddrake/sound.pm:350
#, c-format
msgid "Automatic routing from ALSA to PulseAudio"
msgstr ""

#: harddrake/sound.pm:355
#, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr ""

#: harddrake/sound.pm:360
#, c-format
msgid "Enable user switching for audio applications"
msgstr ""

#: harddrake/sound.pm:365
#, c-format
msgid "Reset sound mixer to default values"
msgstr ""

#: harddrake/sound.pm:370
#, c-format
msgid "Trouble shooting"
msgstr "சரிபார்க்க படுகிறது"

#: harddrake/sound.pm:377
#, c-format
msgid "No alternative driver"
msgstr "மாற்று இயக்கநிரல் ஏதுமில்ைல"

#: harddrake/sound.pm:378
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"உங்கள் (%s) ஒலியட்ைடக்கு OSS/ALSA இயக்க நிரல் ஏதுமில்ைல. அதனால் \"%s\" பயன்படுகிறது"

#: harddrake/sound.pm:385
#, c-format
msgid "Sound configuration"
msgstr "ஒலி வடிவமைப்பு"

#: harddrake/sound.pm:387
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr "உங்கள் ஒலியட்ைடக்கு (%s) மாற்று இயக்கநிரலை இங்கு தேர்வு செய்யலாம்"

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:392
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""

#: harddrake/sound.pm:394
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""

#: harddrake/sound.pm:408 harddrake/sound.pm:491
#, c-format
msgid "Driver:"
msgstr "இயக்கநிரல்:"

#: harddrake/sound.pm:422
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""

#: harddrake/sound.pm:430
#, c-format
msgid "No open source driver"
msgstr "விடுவிக்கப்பட்ட இயக்கநிரல் ஏதுமில்ைல"

#: harddrake/sound.pm:431
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"உங்கள் ஒலியட்ைடக்கு (%s), விடுவிக்கப்பட்ட  இயக்கநிரல் ஏதுமில்ைலமாற்று இயக்கநிரல்  \"%s\" "
"உள்ளது"

#: harddrake/sound.pm:434
#, c-format
msgid "No known driver"
msgstr "இயக்கநிரல் ஏதுமில்ைல"

#: harddrake/sound.pm:435
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "உங்கள் ஒலியட்ைடக்கு (%s) இயக்கநிரல் ஏதுமில்ைல"

#: harddrake/sound.pm:450
#, c-format
msgid "Sound trouble shooting"
msgstr "ஒலியை சரிபார்த்தல்"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:453
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""

#: harddrake/sound.pm:480
#, c-format
msgid "Let me pick any driver"
msgstr "நாேன இயக்கு நிரலை ேதர்ந்ெதடுக்கிேறன்"

#: harddrake/sound.pm:483
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:486
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "தன்னியக்க-கண்டுபிடித்தல்"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "பொதுவின திரையகம்"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Unknown|CPH05X (bt878) [many vendors]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Unknown|CPH06X (bt878) [many vendors]"

#: harddrake/v4l.pm:475
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "அட்ைட மாதிரி:"

#: harddrake/v4l.pm:479
#, c-format
msgid "Tuner type:"
msgstr "Tuner type:"

#: interactive.pm:125 interactive.pm:542 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 ugtk2.pm:415 ugtk2.pm:513
#: ugtk2.pm:803 ugtk2.pm:826
#, c-format
msgid "Ok"
msgstr "சரி"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:802 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "ஆம்"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:802 wizards.pm:156
#, c-format
msgid "No"
msgstr "இல்ைல"

#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "கோப்பு ஒன்றைத் தேர்வுச் செய்"

#: interactive.pm:383 interactive/gtk.pm:420
#, c-format
msgid "Add"
msgstr "சேர்"

#: interactive.pm:383 interactive/gtk.pm:420
#, c-format
msgid "Modify"
msgstr "மாற்று"

#: interactive.pm:383 interactive/gtk.pm:420
#, c-format
msgid "Remove"
msgstr "நீக்கு"

#: interactive.pm:542 interactive/curses.pm:263 ugtk2.pm:513
#, c-format
msgid "Finish"
msgstr "முடிந்தது"

#: interactive.pm:543 interactive/curses.pm:260 ugtk2.pm:511
#, c-format
msgid "Previous"
msgstr "முன்னது"

#: interactive/gtk.pm:548
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "தவறான தேர்வு, மீண்டும் முயற்சித்து பார்க்கவும்\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "உங்கள் தேர்வு? (கொடாநிலை %s) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"நீங்கள் நிரப்ப வேண்டியவை \n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "உங்கள் தேர்வு? (0/1 கொடாநிலை %s)"

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "பொத்தான் %s: %s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "நீங்கள் இந்த பொத்தானை கிளிக் செய்ய வேண்டுமா?"

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "உங்கள் தேர்வு? (கொடாநிலை `%s'%s)"

#: interactive/stdio.pm:110
#, c-format
msgid " enter `void' for void entry"
msgstr "enter `void' for void entry"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> தேர்வுச் செய்வதற்கு பல உள்ளன(%s).\n"

#: interactive/stdio.pm:131
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"தயவுசெய்து நீங்கள் விரும்பும் 10-வீச்சின் முதல் எண்ணை தேர்வுச் செய்,\n"
"அல்லது நுழைவு சாவியை தட்டி தொடரவும்\n"
"உங்கள் தேர்வு? "

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> கவனிக்கவும், பெயர் மாறியுள்ளது\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "மீண்டும் சமர்பித்தல்"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "அந்தோரா"

#: lang.pm:211 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "ஐக்கிய அரபு குடியரசுகள்"

#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "ஆப்கானிஸ்தான்"

#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "ஆன்டிகுவா"

#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "அங்குயிலா"

#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "அல்பேனியா"

#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "ஆர்மினியா"

#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "ெநதர்லாந்து ஆன்டிலிஸ்"

#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "அங்கோலா"

#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "அன்டார்டிகா"

#: lang.pm:220 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "அர்ெஜன்டினா"

#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "சாமோ"

#: lang.pm:222 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "ஆஸ்திரியா"

#: lang.pm:223 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "ஆஸ்திரேலியா"

#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "அருபா"

#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "அசர்பைசான்"

#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "போஸ்னியா"

#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "பார்படாஸ்"

#: lang.pm:228 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "வங்கதேசம்"

#: lang.pm:229 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "பெல்ஜியம்"

#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "பர்கினா போஸா"

#: lang.pm:231 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "பல்கேரியா"

#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "பஹ்ரைன்"

#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "புருண்டி"

#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "பெனின்"

#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "பெர்முடா"

#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "புருனை"

#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "பொலிவியா"

#: lang.pm:238 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "பிரேசில்"

#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "பகாமாஸ்"

#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "பூடான்"

#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "பொவே தீவுகள்"

#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "போட்ஸ்வானா"

#: lang.pm:243 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "பேலாரூஸ்"

#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "பெலிஸ்"

#: lang.pm:245 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "கனடா"

#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "கோகோ தீவுகள்"

#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""

#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "காங்கோ"

#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""

#: lang.pm:250 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "சுவிட்சர்லாந்து"

#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "டீகாட் டைவோர்"

#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "குக் தீவுகள்"

#: lang.pm:253 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "சிலி"

#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "கேமருன்"

#: lang.pm:255 timezone.pm:212
#, c-format
msgid "China"
msgstr "சீனா"

#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "கொலம்பியா "

#: lang.pm:257 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "கோஸ்டா ரிகா"

#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "சேர்பியா மற்றும் மொன்டிநீக்ரோ"

#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "கியுபா"

#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "கேப் வேர்தி"

#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "கிருஸ்துமஸ் தீவுகள்"

#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "சைப்ரஸ்"

#: lang.pm:263 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "செக் குடியரசு"

#: lang.pm:264 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "ெஜர்மனி"

#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "டிஜிபொட்டி"

#: lang.pm:266 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "டென்மார்க்"

#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "டோமினிகா"

#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "டோமினிகா குடியரசு"

#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "அல்ஜிரியா"

#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "இகுவேடார்"

#: lang.pm:271 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "எஸ்தோனியா"

#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "எகிப்து"

#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "ேமற்கு சகாரா"

#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "எரிதிரியா"

#: lang.pm:275 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "ஸ்ெபயின்"

#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "எத்தியோப்பியா"

#: lang.pm:277 mirror.pm:20 timezone.pm:236
#, c-format
msgid "Finland"
msgstr "பின்லாந்து"

#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "பிஜி"

#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "பாக்லாந்து தீவுகள்"

#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "ைமக்ேரானிசியா"

#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "பரோ தீவுகள்"

#: lang.pm:282 mirror.pm:21 timezone.pm:237
#, c-format
msgid "France"
msgstr "பிரான்சு"

#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "கேபான்"

#: lang.pm:284 timezone.pm:257
#, c-format
msgid "United Kingdom"
msgstr "பிரிட்டன்"

#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "கிரேனடா"

#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "ஜார்ஜியா"

#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "பிரஞ்சு கினியா "

#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "கானா"

#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "கிப்ரேலடார்"

#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "கிரின்லாந்து"

#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "ஜாம்பியா"

#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "கினியா"

#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "குவாடிலோப்"

#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "கினியா"

#: lang.pm:295 mirror.pm:23 timezone.pm:239
#, c-format
msgid "Greece"
msgstr "கிரிஸ்"

#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr ""

#: lang.pm:297 timezone.pm:262
#, c-format
msgid "Guatemala"
msgstr "குவாடிமாலா"

#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "குவாம்"

#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "கினியா-பிஸ்ஸ்ாவு"

#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "கயானா"

#: lang.pm:301
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "ஹாங்காங்"

#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "ஹெர்ட் மற்றும் மெக்டொனால்ட் தீவுகள்"

#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "ெஹான்டுரஸ்"

#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "குரேசியா"

#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "ைஹதி"

#: lang.pm:306 mirror.pm:24 timezone.pm:240
#, c-format
msgid "Hungary"
msgstr "ஹங்கேரி"

#: lang.pm:307 timezone.pm:215
#, c-format
msgid "Indonesia"
msgstr "இந்தோனிசியா"

#: lang.pm:308 mirror.pm:25 timezone.pm:241
#, c-format
msgid "Ireland"
msgstr "அயர்லாந்து"

#: lang.pm:309 mirror.pm:26 timezone.pm:217
#, c-format
msgid "Israel"
msgstr "இஸ்ரேல்"

#: lang.pm:310 timezone.pm:214
#, c-format
msgid "India"
msgstr "இந்தியா"

#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "பிரிட்டீஷ் தீவுகள்"

#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "ஈராக்"

#: lang.pm:313 timezone.pm:216
#, c-format
msgid "Iran"
msgstr "ஈரான்"

#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "ஐஸ்லாந்து"

#: lang.pm:315 mirror.pm:27 timezone.pm:242
#, c-format
msgid "Italy"
msgstr "இத்தாலி"

#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "ஜமைக்கா"

#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "ஜோர்டான்"

#: lang.pm:318 mirror.pm:28 timezone.pm:218
#, c-format
msgid "Japan"
msgstr "ஜப்பான்"

#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "கென்யா"

#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "கிரிகிஸ்தான்"

#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "கம்போடியா"

#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "கிரிபாடி"

#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "கோமோரஸ்"

#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "ெசயின்ட் கிட்ஸ் ெநவிஸ்"

#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr ""

#: lang.pm:326 timezone.pm:219
#, c-format
msgid "Korea"
msgstr "கொரியா"

#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "குவைத்"

#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "கேமன் தீவுகள்"

#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "கசகஸ்தான்"

#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "லாவோஸ்"

#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "லெபனான்"

#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "ெசயின்ட் லுசியா"

#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "இலங்ைக"

#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "லைபிரியா"

#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "லெசாதோ"

#: lang.pm:337 timezone.pm:243
#, c-format
msgid "Lithuania"
msgstr "Lithuania"

#: lang.pm:338 timezone.pm:244
#, c-format
msgid "Luxembourg"
msgstr "Luxembourg"

#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "லாட்வியா"

#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "லிபியா"

#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "ெமாராக்ேகா"

#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "ெமானாேகா"

#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "மால்ேடாவா"

#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "மடகாஸ்கர்"

#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "மார்ஷல் தீவுகள்"

#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "மாசிேடானியா"

#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "மாலி"

#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "மியான்மர்"

#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "மங்ேகாலியா"

#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "வடக்கு மாரியானா தீவுகள்"

#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "மார்டினிக்"

#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "ெமாரிஷியானா"

#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "மான்ட்ெசர்ராட்"

#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "மால்டா"

#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "ெமாரிஷியஸ்"

#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "மாலத்தீவு"

#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "மாலாவி"

#: lang.pm:358 timezone.pm:263
#, c-format
msgid "Mexico"
msgstr "ெமக்சிேகா"

#: lang.pm:359 timezone.pm:220
#, c-format
msgid "Malaysia"
msgstr "மலேஷியா"

#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "ெமாசம்பிக்"

#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "நமிபியா"

#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "நியு  ெசலடோனியா "

#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "நைஜர்"

#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "நார்ேபாள்க் தீவு"

#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "நைஜிரியா"

#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "நிகரகுவா"

#: lang.pm:367 mirror.pm:29 timezone.pm:245
#, c-format
msgid "Netherlands"
msgstr "நெதர்லாந்து"

#: lang.pm:368 mirror.pm:31 timezone.pm:246
#, c-format
msgid "Norway"
msgstr "நார்ேவ"

#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "ேநபாளம்"

#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "நாவ்ரு"

#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "நிய்யு"

#: lang.pm:372 mirror.pm:30 timezone.pm:268
#, c-format
msgid "New Zealand"
msgstr "நியுசிலாந்து"

#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "ஓமன்"

#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "பனாமா"

#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "ெபரு"

#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "பிரஞ்சு பாலினேசியா"

#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "பப்பாவ் நியு கினியா"

#: lang.pm:378 timezone.pm:221
#, c-format
msgid "Philippines"
msgstr "பிலிப்ைபன்ஸ்"

#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "பாகிஸ்தான்"

#: lang.pm:380 mirror.pm:32 timezone.pm:247
#, c-format
msgid "Poland"
msgstr "ேபாலாந்து"

#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "ெசயின்ட் பியரி மிக்ேகாலன்"

#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "பிடிகைர்ன்"

#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "பியுர்ேடா ரிகா"

#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "பாலஸ்தீனம்"

#: lang.pm:385 mirror.pm:33 timezone.pm:248
#, c-format
msgid "Portugal"
msgstr "ேபார்ச்சுகல்"

#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "பராகுேவ"

#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "பாலாவ்"

#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "கதார்"

#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "ரியூனியன்"

#: lang.pm:390 timezone.pm:249
#, c-format
msgid "Romania"
msgstr "ெராமானியா"

#: lang.pm:391 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "ரஷ்யா"

#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "ருவாண்டா"

#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "சவுதி அேரபியா"

#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "சாலமன் தீவுகள்"

#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "சிெசய்ல்ஸ்"

#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "சுடான்"

#: lang.pm:397 mirror.pm:38 timezone.pm:254
#, c-format
msgid "Sweden"
msgstr "சுவிடன்"

#: lang.pm:398 timezone.pm:222
#, c-format
msgid "Singapore"
msgstr "சிங்கப்பூர்"

#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "ெசயின்ட் ெஹலனா"

#: lang.pm:400 timezone.pm:252
#, c-format
msgid "Slovenia"
msgstr "ஸ்ேலாேவனியா"

#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "சுவால்பார்ட் மற்றும் ேமயன் தீவுகள்"

#: lang.pm:402 mirror.pm:35 timezone.pm:251
#, c-format
msgid "Slovakia"
msgstr "ஸ்ேலாேவகியா"

#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "சியரா லிேயான்"

#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "சான் மரிேனா"

#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "ெசனகல்"

#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "சோமாலியா"

#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "சுரினாம்"

#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "சாவ் ேதாம் பிரின்சிப்"

#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "எல் சால்வேடார்"

#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "சிரியா"

#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "சுவாஸிலாந்து"

#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "துருக்கிய மற்றும் ேகய்கஸ் தீவுகள்"

#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "சாட்"

#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "பிரஞ்சு தென் குடியிருப்பு"

#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "ெதாேகா"

#: lang.pm:416 mirror.pm:41 timezone.pm:224
#, c-format
msgid "Thailand"
msgstr "தாய்லாந்து"

#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "தஜிகிஸ்தான்"

#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "ெடாெகலாவ்"

#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "கிழக்கு தைமூர்"

#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "துருக்ெமனிஸ்தான்"

#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "துனிஷியா"

#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "ேடாங்கா"

#: lang.pm:423 timezone.pm:225
#, c-format
msgid "Turkey"
msgstr "துருக்கி"

#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "டிரினிடட் மற்றும் ெடாபாேகா"

#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "துவாலு"

#: lang.pm:426 mirror.pm:40 timezone.pm:223
#, c-format
msgid "Taiwan"
msgstr "தைவான்"

#: lang.pm:427 timezone.pm:208
#, c-format
msgid "Tanzania"
msgstr "டான்சானியா"

#: lang.pm:428 timezone.pm:256
#, c-format
msgid "Ukraine"
msgstr "உக்ைரன்"

#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "உகாண்டா"

#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"

#: lang.pm:431 mirror.pm:42 timezone.pm:264
#, c-format
msgid "United States"
msgstr "அமெரிக்கா"

#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "உருகுேவ"

#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "உஸ்ெபகிஸ்தான்"

#: lang.pm:434
#, fuzzy, c-format
msgid "Vatican"
msgstr "லாட்விய"

#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "ெசயின்ட் வின்ெசன்ட் மற்றும் கிரிேனடைன்"

#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "ெவனிசுலா"

#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "விர்ஜின் தீவுகள்(பிரிட்டிஷ்)"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "விர்ஜின் தீவுகள்(அெமரிக்க)"

#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "வியட்நாம் "

#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "வனுவாடு"

#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "வாலிஸ் மற்றும் ப்யுடனா"

#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "சாேமாவோ"

#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "ேயமன்"

#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "ேமயோட்"

#: lang.pm:445 mirror.pm:36 timezone.pm:207
#, c-format
msgid "South Africa"
msgstr "ெதன் ஆப்ரிகா"

#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "ஜாம்பியா"

#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "ஜிம்பாப்ேவ"

#: lang.pm:1201
#, c-format
msgid "Welcome to %s"
msgstr "%s க்கு நல்வரவு "

#: lvm.pm:84
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""

#: lvm.pm:141
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""

#: lvm.pm:151
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "ஏரண வகிற்ைற முதலில் நீக்கு\n"

#: lvm.pm:184
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:10
#, fuzzy, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"
msgstr ""
"Introduction\n"
"\n"
"அனுமதி ஒப்பந்தம் -தைரியமாக ஒப்புக்ெகாள்ளலாம்\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"

#: messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"எச்சரிக்ைக\n"
"\n"
"பின்வரும் விவரங்களை கவனமாக படிக்கவும். இதில் உங்களுக்கு\n"
"உடன்பாடு இல்ைலயென்றால் அடுத்து வரும்\n"
"சிடியை நிறுவ கூடாது\n"
"\n"
"\n"
"அடுத்து வரும் சிடியில் சில நிரல்கள் GPL உரிமைப்படி இல்ைல\n"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:131
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"வாழ்த்துக்கள், நிறுவுதல் வெற்றிகரமாக முடிந்தது\n"
"நிறுவல்வட்ைடயும், நிறுவல் சிடியையும் வெளியெ எடுத்துவிட்டு மறுதொடக்கம் செய்யவும்.\n"
"\n"
"\n"
"உங்கள் மாண்ட்ேரக் லின பற்றிய கடைசி தகவல்களுக்கு \n"
"பிழையறிவிப்ேபா பார்க்கவும் \n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"தயவுசெய்து உங்கள் கணினியை வடிவமைக்க மாண்ட்ேரக் உதவிநூல்களை \n"
"படிக்கவும்"

#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
msgstr "OKI அச்சுபொறியின் வடிவமைப்பு"

#: modules/interactive.pm:22
#, fuzzy, c-format
msgid "Module configuration"
msgstr "கைமுறை வடிவமைப்பு "

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "கூற்ைற நீங்கள் இங்கே வடிவமைக்கலாம்"

#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "%s இடைமுக அட்ைடகள் உள்ளன"

#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "மேலும்  உள்ளனவா?"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "நீங்கள் %s இடைமுக அட்ைடகள் ஏதேனும் பயன்படுத்துகிறிர்களா?"

#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "வன்ெபாருட்களின் விவரங்களைப் பாருங்கள்"

#: modules/interactive.pm:82
#, fuzzy, c-format
msgid "Installing driver for USB controller"
msgstr "%s அட்ைட %s க்கு இயக்கு நிரல் நிறுவப்படுகிறது"

#: modules/interactive.pm:83
#, fuzzy, c-format
msgid "Installing driver for firewire controller %s"
msgstr "%s அட்ைட %s க்கு இயக்கு நிரல் நிறுவப்படுகிறது"

#: modules/interactive.pm:84
#, fuzzy, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "%s அட்ைட %s க்கு இயக்கு நிரல் நிறுவப்படுகிறது"

#: modules/interactive.pm:85
#, fuzzy, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "%s அட்ைட %s க்கு இயக்கு நிரல் நிறுவப்படுகிறது"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s அட்ைட %s க்கு இயக்கு நிரல் நிறுவப்படுகிறது"

#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"%s.கூறுக்கான விருப்பத்ேதர்வுகளை தாருங்கள்\n"
"0x like '0x123' போன்ற துவக்கத்துடன் அது இருக்கவேண்டும்"

#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"%s.கூறுக்கான விருப்பத்ேதர்வுகளை தாருங்கள்\n"
"பெயர்=மதிப்பு என்ற அமைப்பில் இருக்கவேண்டும்...''.\n"
"உதாரனத்திற்கு , ``io=0x300 irq=7''"

#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "கூறு அமைப்புகள்"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "இந்த %s க்கு எந்த இயக்க நிரலை பயன்படுத்த வேண்டும்?"

#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"இந்த %s க்கு எந்த இயக்க நிரலை பயன்படுத்த சில\n"
"அதிக விவரங்கள் தேவை. இதை நீங்கள் தருகிறீர்களாஅல்லது \n"
"டிரேக்x தன்னியக்கத் தேடியறிதல் செய்யட்டுமா\n"
"இது எப்ேபாதாவது உங்கள் கணினி தொங்கல் நிலைக்கு இட்டுச் செல்லலாம்\n"
"ஆனால் எதனையும் செயலிழக்கச் செய்யாது"

#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "தன்னியக்கத் தேடியறிதல்"

#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "விருப்பத்ேதர்வு தெரிவிக்கவும்"

#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"%s என்ற இயக்க நிரல் ஏற்றத்தில் பிழை நேர்ந்துள்ளது\n"
"நீங்கள் வேறு விருப்பத்ேதர்வுகளை தெரிவித்து பார்க்கவும்"

#: partition_table.pm:409
#, c-format
msgid "mount failed: "
msgstr "ஏற்றத்தில் பிழை நேர்ந்துள்ளது: "

#: partition_table.pm:518
#, c-format
msgid "Extended partition not supported on this platform"
msgstr ""

#: partition_table.pm:536
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""

#: partition_table/raw.pm:285
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"வன்வட்டில் ஏேதா பழுது ேநர்ந்துள்ளது\n"
"அதனால் நீங்கள் எழுத விரும்பும் விவரங்களை இழக்க\n"
"ேநரிடும்"

#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "வகிர் _formatted_ RAID md%d உடன் சேர்க்க முடியவில்ைல"

#: raid.pm:157
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d என்ற RAID நிலைக்கு போதுமான வகிர் இல்ைல\n"

#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""

#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""

#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""

#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr ""

#: scanner.pm:200
#, fuzzy, c-format
msgid "Scannerdrake"
msgstr "வருடியை தேர்வுச் செய்யுங்கள்"

#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""

#: security/help.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages."
msgstr ""

#: security/help.pm:13
#, c-format
msgid "Accept broadcasted icmp echo."
msgstr ""

#: security/help.pm:15
#, c-format
msgid "Accept icmp echo."
msgstr ""

#: security/help.pm:17
#, fuzzy, c-format
msgid "Allow autologin."
msgstr "தன்னியக்கநுழைவு"

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""

#: security/help.pm:27
#, c-format
msgid "Allow reboot by the console user."
msgstr ""

#: security/help.pm:29
#, fuzzy, c-format
msgid "Allow remote root login."
msgstr "தொலைவு அச்சுப்பொறி"

#: security/help.pm:31
#, fuzzy, c-format
msgid "Allow direct root login."
msgstr "தொலைவு அச்சுப்பொறி"

#: security/help.pm:33
#, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""

#: security/help.pm:40
#, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""

#: security/help.pm:63
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""

#: security/help.pm:72
#, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""

#: security/help.pm:77
#, c-format
msgid "Enable syslog reports to console 12"
msgstr ""

#: security/help.pm:79
#, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""

#: security/help.pm:80
#, fuzzy, c-format
msgid "Security Alerts:"
msgstr "பாதுகாப்பு நிலை"

#: security/help.pm:82
#, c-format
msgid "Enable IP spoofing protection."
msgstr ""

#: security/help.pm:84
#, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr ""

#: security/help.pm:86
#, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr ""

#: security/help.pm:88
#, c-format
msgid "Enable msec hourly security check."
msgstr ""

#: security/help.pm:90
#, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr ""

#: security/help.pm:92
#, c-format
msgid "Use password to authenticate users."
msgstr ""

#: security/help.pm:94
#, c-format
msgid "Activate ethernet cards promiscuity check."
msgstr ""

#: security/help.pm:96
#, c-format
msgid "Activate daily security check."
msgstr ""

#: security/help.pm:98
#, c-format
msgid "Enable sulogin(8) in single user level."
msgstr ""

#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""

#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""

#: security/help.pm:106
#, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""

#: security/help.pm:108
#, fuzzy, c-format
msgid "Set the root's file mode creation mask."
msgstr "கடவுச்ெசால் ஏதுமில்ைல"

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr ""

#: security/help.pm:110
#, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr ""

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr ""

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr ""

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr ""

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr ""

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr ""

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr ""

#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""

#: security/help.pm:136
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""

#: security/help.pm:136
#, c-format
msgid "Timeout unit is second"
msgstr ""

#: security/help.pm:138
#, fuzzy, c-format
msgid "Set the user's file mode creation mask."
msgstr "பயனர்கள்"

#: security/l10n.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr ""

#: security/l10n.pm:12
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr ""

#: security/l10n.pm:13
#, c-format
msgid "Accept icmp echo"
msgstr ""

#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
msgstr ""

#: security/l10n.pm:16
#, c-format
msgid "Reboot by the console user"
msgstr ""

#: security/l10n.pm:17
#, fuzzy, c-format
msgid "Allow remote root login"
msgstr "தொலைவு அச்சுப்பொறி"

#: security/l10n.pm:18
#, c-format
msgid "Direct root login"
msgstr ""

#: security/l10n.pm:19
#, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr ""

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr ""

#: security/l10n.pm:21
#, fuzzy, c-format
msgid "Allow X Window connections"
msgstr "சாதரன மோடம்வழி தொடர்பு"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr ""

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""

#: security/l10n.pm:24
#, fuzzy, c-format
msgid "Chkconfig obey msec rules"
msgstr "சேவைகளை வடிவமையுங்கள்"

#: security/l10n.pm:25
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr ""

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr ""

#: security/l10n.pm:27
#, c-format
msgid "Name resolution spoofing protection"
msgstr ""

#: security/l10n.pm:28
#, c-format
msgid "Enable IP spoofing protection"
msgstr ""

#: security/l10n.pm:29
#, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr ""

#: security/l10n.pm:30
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr ""

#: security/l10n.pm:31
#, c-format
msgid "Enable msec hourly security check"
msgstr ""

#: security/l10n.pm:32
#, c-format
msgid "Enable su only from the wheel group members"
msgstr ""

#: security/l10n.pm:33
#, c-format
msgid "Use password to authenticate users"
msgstr ""

#: security/l10n.pm:34
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr ""

#: security/l10n.pm:35
#, c-format
msgid "Daily security check"
msgstr ""

#: security/l10n.pm:36
#, c-format
msgid "Sulogin(8) in single user level"
msgstr ""

#: security/l10n.pm:37
#, fuzzy, c-format
msgid "No password aging for"
msgstr "கடவுச்ெசால் ஏதுமில்ைல"

#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr ""

#: security/l10n.pm:39
#, fuzzy, c-format
msgid "Password history length"
msgstr "இந்த கடவுச்ெசால் மிக எளிதாக உள்ளது"

#: security/l10n.pm:40
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr ""

#: security/l10n.pm:41
#, fuzzy, c-format
msgid "Root umask"
msgstr "கடவுச்ெசால் ஏதுமில்ைல"

#: security/l10n.pm:42
#, c-format
msgid "Shell history size"
msgstr ""

#: security/l10n.pm:43
#, fuzzy, c-format
msgid "Shell timeout"
msgstr "கரு தொடங்கல் வெளியேற்ற நேரம்"

#: security/l10n.pm:44
#, fuzzy, c-format
msgid "User umask"
msgstr "பயனர்கள்"

#: security/l10n.pm:45
#, fuzzy, c-format
msgid "Check open ports"
msgstr "%s என்ற துறையில் கண்டுபிடிக்கப்பட்டுள்ளது"

#: security/l10n.pm:46
#, c-format
msgid "Check for unsecured accounts"
msgstr ""

#: security/l10n.pm:47
#, c-format
msgid "Check permissions of files in the users' home"
msgstr ""

#: security/l10n.pm:48
#, c-format
msgid "Check if the network devices are in promiscuous mode"
msgstr ""

#: security/l10n.pm:49
#, c-format
msgid "Run the daily security checks"
msgstr ""

#: security/l10n.pm:50
#, c-format
msgid "Check additions/removals of sgid files"
msgstr ""

#: security/l10n.pm:51
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr ""

#: security/l10n.pm:52
#, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr ""

#: security/l10n.pm:53
#, c-format
msgid "Check additions/removals of suid root files"
msgstr ""

#: security/l10n.pm:54
#, c-format
msgid "Report unowned files"
msgstr ""

#: security/l10n.pm:55
#, c-format
msgid "Check files/directories writable by everybody"
msgstr ""

#: security/l10n.pm:56
#, c-format
msgid "Run chkrootkit checks"
msgstr ""

#: security/l10n.pm:57
#, c-format
msgid "Do not send empty mail reports"
msgstr ""

#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""

#: security/l10n.pm:59
#, c-format
msgid "Report check result by mail"
msgstr ""

#: security/l10n.pm:60
#, c-format
msgid "Run some checks against the rpm database"
msgstr ""

#: security/l10n.pm:61
#, c-format
msgid "Report check result to syslog"
msgstr ""

#: security/l10n.pm:62
#, c-format
msgid "Reports check result to tty"
msgstr ""

#: security/level.pm:10
#, c-format
msgid "Welcome To Crackers"
msgstr "பகைவர்களே வருக"

#: security/level.pm:11
#, c-format
msgid "Poor"
msgstr "மோசமான"

#: security/level.pm:12
#, c-format
msgid "Standard"
msgstr "இயல்பான"

#: security/level.pm:13
#, c-format
msgid "High"
msgstr "உயர்வான"

#: security/level.pm:14
#, c-format
msgid "Higher"
msgstr "மிக உயர்வான"

#: security/level.pm:15
#, c-format
msgid "Paranoid"
msgstr "சந்ேதகப் பேய்"

#: security/level.pm:41
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"இந்த அமைப்புகளை பயன்படுத்துதல் கூடாது,\n"
"முற்றிலும் பாதுகாப்பற்றது. கடவுச்ெசால் கூட கிடையாது\n"
"இணையத்திற்கு இப்படியே தொடர்பு கொள்ளக்கூடாது"

#: security/level.pm:44
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"ஓரளவு பாதுகாப்பானது. கடவுச்ெசால் உடையது\n"
"இணையத்திற்கு இப்படியே தொடர்பு கொள்ளக்கூடாது"

#: security/level.pm:45
#, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"சரியான பாதுகாப்பானது. கடவுச்ெசால் உடையது\n"
"இணையத்திற்கு இப்படியே தொடர்பு கொள்ளலாம்"

#: security/level.pm:46
#, c-format
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr "அதிக பாதுகாப்பானது. தினமும் பல சோதனைகள் நடைபெறும்"

#: security/level.pm:47
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"உங்கள் கணினி தற்ேபாது ஓர் பரிமாறியாக பயன்படக்கூடிய அளவு பாதுகாப்பானது\n"
"இது வெளியில் இருந்து வேண்டிகளின் தேவையை ஈடுச் செய்ய முடியும் \n"
"உங்கள் கணினி ஒரு சாதரன பயன்பாட்டிற்கு என்றால், இன்னும் சற்று குறைந்த பாதுகாப்பளவை "
"பயன்படுத்தலாம்"

#: security/level.pm:50
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr "இது சென்ற நிலை போன்றதே. இது முற்றிலும் மூடப்பட்ட ஓர் கணினியாகும்"

#: security/level.pm:55
#, c-format
msgid "Security"
msgstr "பாதுகாப்பு"

#: security/level.pm:55
#, c-format
msgid "DrakSec Basic Options"
msgstr "டிரேக்பாதுகாப்பு அடிப்படை விருப்பத்ேதர்வுகள்"

#: security/level.pm:56
#, c-format
msgid "Please choose the desired security level"
msgstr "உங்களுக்கு தேவையான பாதுகாப்பு நிலையைத் தேர்வுச் செய்யவும்"

#: security/level.pm:60
#, c-format
msgid "Security level"
msgstr "பாதுகாப்பு நிலை"

#: security/level.pm:62
#, c-format
msgid "Use libsafe for servers"
msgstr "libsafe என்ற நூலகநிரலை  பரிமாறிகளில் பயன்படுத்துங்கள்"

#: security/level.pm:63
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "இந்த நூலகநிரலை  பயன்படுத்துவதால் பல பாதுகாப்பு பிரச்சினைகளை தவிர்க்க முடியும்"

#: security/level.pm:64
#, c-format
msgid "Security Administrator (login or email)"
msgstr "பாதுகாப்பு மேலாளர்(பெயர் அல்லது மின்னஞ்சல் முகவரி)"

#: services.pm:19
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "அல்சா ஒலியமைப்பு இயக்கத்ைத துவக்கு"

#: services.pm:20
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron தன்னியக்க செயல் மேலாளர்"

#: services.pm:21
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""

#: services.pm:23
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""

#: services.pm:25
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""

#: services.pm:28
#, c-format
msgid ""
"Common UNIX Printing System (CUPS) is an advanced printer spooling system"
msgstr ""

#: services.pm:29
#, c-format
msgid "Launches the graphical display manager"
msgstr ""

#: services.pm:30
#, c-format
msgid ""
"FAM is a file monitoring daemon. It is used to get reports when files "
"change.\n"
"It is used by GNOME and KDE"
msgstr ""

#: services.pm:32
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""

#: services.pm:35
#, c-format
msgid "HAL is a daemon that collects and maintains information about hardware"
msgstr ""

#: services.pm:36
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""

#: services.pm:38
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""

#: services.pm:39
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""

#: services.pm:43
#, c-format
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""

#: services.pm:45
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""

#: services.pm:48
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""

#: services.pm:50
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr ""

#: services.pm:51
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""

#: services.pm:53
#, c-format
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""

#: services.pm:55
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""

#: services.pm:57
#, c-format
msgid ""
"DBUS is a daemon which broadcasts notifications of system events and other "
"messages"
msgstr ""

#: services.pm:58
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""

#: services.pm:59
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""

#: services.pm:61
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""

#: services.pm:63
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""

#: services.pm:66
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""

#: services.pm:68
#, c-format
msgid "Synchronizes system time using the Network Time Protocol (NTP)"
msgstr ""

#: services.pm:69
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and Xorg at boot."
msgstr ""

#: services.pm:71
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr ""

#: services.pm:72
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It will not get started unless configured so it is safe "
"to have\n"
"it installed on machines that do not need it."
msgstr ""

#: services.pm:75
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""

#: services.pm:78
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""

#: services.pm:79
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""

#: services.pm:81
#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""

#: services.pm:83
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""

#: services.pm:86
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""

#: services.pm:88
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""

#: services.pm:90
#, c-format
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similar to finger)."
msgstr ""

#: services.pm:92
#, c-format
msgid ""
"SANE (Scanner Access Now Easy) enables to access scanners, video cameras, ..."
msgstr ""

#: services.pm:93
#, c-format
msgid ""
"The SMB/CIFS protocol enables to share access to files & printers and also "
"integrates with a Windows Server domain"
msgstr ""

#: services.pm:94
#, c-format
msgid "Launch the sound system on your machine"
msgstr ""

#: services.pm:95
#, c-format
msgid ""
"Secure Shell is a network protocol that allows data to be exchanged over a "
"secure channel between two computers"
msgstr ""

#: services.pm:96
#, c-format
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""

#: services.pm:98
#, c-format
msgid "Load the drivers for your usb devices."
msgstr ""

#: services.pm:99
#, c-format
msgid "Starts the X Font Server."
msgstr ""

#: services.pm:100
#, c-format
msgid "Starts other deamons on demand."
msgstr ""

#: services.pm:123
#, c-format
msgid "Printing"
msgstr "அச்சு மேலாளர்"

#: services.pm:124
#, c-format
msgid "Internet"
msgstr "இணையம்"

#: services.pm:127
#, c-format
msgid "File sharing"
msgstr "கோப்பு பகிர்தல்"

#: services.pm:129
#, c-format
msgid "System"
msgstr "கணினி"

#: services.pm:134
#, c-format
msgid "Remote Administration"
msgstr "தொலைவு மேலாண்மை"

#: services.pm:142
#, c-format
msgid "Database Server"
msgstr "தரவுத்தள வேவையகம்"

#: services.pm:153 services.pm:189
#, c-format
msgid "Services"
msgstr "சேவைகள்"

#: services.pm:153
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr "தன்னயக்கமாக கணினி ெதாடங்கும்ேபாது துவங்க ேவண்டிய ேசவைகள்"

#: services.pm:171
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "சேவைகள்: %d பதிவான %d செயல்படுத்தப்பட்டது  "

#: services.pm:205
#, c-format
msgid "running"
msgstr "இயங்குகிறது"

#: services.pm:205
#, c-format
msgid "stopped"
msgstr "நிறுத்தப்பட்டது"

#: services.pm:210
#, c-format
msgid "Services and daemons"
msgstr "சேவைகளும் செயலிகளும்"

#: services.pm:216
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
"மேல் விவரம் ஏதுமில்ைல\n"
"மன்னிக்கவும்"

#: services.pm:221 ugtk2.pm:913
#, c-format
msgid "Info"
msgstr "தகவல்"

#: services.pm:224
#, fuzzy, c-format
msgid "Start when requested"
msgstr "தொடக்கபட்டி"

#: services.pm:224
#, c-format
msgid "On boot"
msgstr "தொடங்குதலின் போது"

#: services.pm:242
#, c-format
msgid "Start"
msgstr "துவக்கு"

#: services.pm:242
#, c-format
msgid "Stop"
msgstr "நிறுத்து"

#: standalone.pm:25
#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
"USA.\n"
msgstr ""

#: standalone.pm:44
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""

#: standalone.pm:56
#, c-format
msgid ""
"[--boot] [--splash]\n"
"OPTIONS:\n"
"  --boot            - enable to configure boot loader\n"
"  --splash          - enable to configure boot theme\n"
"default mode: offer to configure autologin feature"
msgstr ""

#: standalone.pm:61
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of Mandriva Linux tools\n"
"  --incident        - program should be one of Mandriva Linux tools"
msgstr ""

#: standalone.pm:67
#, c-format
msgid ""
"[--add]\n"
"  --add             - \"add a network interface\" wizard\n"
"  --del             - \"delete a network interface\" wizard\n"
"  --skip-wizard     - manage connections\n"
"  --internet        - configure internet\n"
"  --wizard          - like --add"
msgstr ""

#: standalone.pm:73
#, c-format
msgid ""
"\n"
"Font Importation and monitoring application\n"
"\n"
"OPTIONS:\n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--install        : accept any font file and any directory.\n"
"--uninstall      : uninstall any font or any directory of font.\n"
"--replace        : replace all font if already exist\n"
"--application    : 0 none application.\n"
"                 : 1 all application available supported.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."
msgstr ""

#: standalone.pm:88
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandriva Linux Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""

#: standalone.pm:100
#, c-format
msgid "[keyboard]"
msgstr "[விசைப்பலகை]"

#: standalone.pm:101
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""

#: standalone.pm:102
#, c-format
msgid ""
"[OPTIONS]\n"
"Network & Internet connection and monitoring application\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : do not be interactive. To be used with (dis)connect."
msgstr ""

#: standalone.pm:112
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      do not ask first confirmation question in Mandriva "
"Update mode\n"
"  --no-verify-rpm        do not verify packages signatures\n"
"  --changelog-first      display changelog before filelist in the "
"description window\n"
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""

#: standalone.pm:117
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""

#: standalone.pm:118
#, c-format
msgid ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"
msgstr ""

#: standalone.pm:154
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""

#: timezone.pm:161 timezone.pm:162
#, fuzzy, c-format
msgid "All servers"
msgstr "சேவையகத்தை சேர்க்கவும்"

#: timezone.pm:196
#, c-format
msgid "Global"
msgstr "உலகலாவிய"

#: timezone.pm:199
#, c-format
msgid "Africa"
msgstr "ஆப்ரிக்கா"

#: timezone.pm:200
#, c-format
msgid "Asia"
msgstr "ஆசியா"

#: timezone.pm:201
#, c-format
msgid "Europe"
msgstr "ஐரோப்பா"

#: timezone.pm:202
#, c-format
msgid "North America"
msgstr "வட அமெரிக்கா"

#: timezone.pm:203
#, c-format
msgid "Oceania"
msgstr "ஒசெனியா"

#: timezone.pm:204
#, c-format
msgid "South America"
msgstr "தென் அமெரிக்கா"

#: timezone.pm:213
#, c-format
msgid "Hong Kong"
msgstr "ஹாங்காங்"

#: timezone.pm:250
#, c-format
msgid "Russian Federation"
msgstr "ரஷியக் கூட்டமைப்பு"

#: timezone.pm:258
#, c-format
msgid "Yugoslavia"
msgstr "யுகோஸ்லாவியா"

#: ugtk2.pm:803
#, c-format
msgid "Is this correct?"
msgstr "இது சரியா?"

#: ugtk2.pm:863
#, fuzzy, c-format
msgid "No file chosen"
msgstr "கோப்பு தேர்வாளர்"

#: ugtk2.pm:865
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "அதுபோன்ற கோப்போ அடைவோ இல்லை"

#: ugtk2.pm:867
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "'/'னின் பெயர் கோப்பகத்துக்கு மட்டுமே, விசைக்கு அல்ல "

#: ugtk2.pm:869
#, fuzzy, c-format
msgid "No such directory"
msgstr "அடைவு இல்லை"

#: ugtk2.pm:869
#, fuzzy, c-format
msgid "No such file"
msgstr "`%s' கோப்பு கிரையாது\n"

#: ugtk2.pm:948
#, c-format
msgid "Expand Tree"
msgstr "கிளைகளை விரி"

#: ugtk2.pm:949
#, c-format
msgid "Collapse Tree"
msgstr "கிளைகளை சுருக்கு"

#: ugtk2.pm:950