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

use diagnostics;
use strict;
use vars qw(*LOG %compssListDesc @skip_list %by_lang @preferred $limitMinTrans $PKGS_SELECTED $PKGS_FORCE $PKGS_INSTALLED $PKGS_BASE $PKGS_SKIP $PKGS_UNSKIP $PKGS_UPGRADE);

use common qw(:common :file :functional);
use install_any;
use commands;
use run_program;
use log;
use pkgs;
use fs;
use loopback;
use lang;
use c;

#- lower bound on the left ( aka 90 means [90-100[ )
%compssListDesc = (
 100 => __("mandatory"), #- do not use it, it's for base packages
  90 => __("must have"), #- every install have these packages (unless hand de-selected in expert, or not enough room)
  80 => __("important"), #- every beginner/custom install have these packages (unless not enough space)
		         #- has minimum X install (XFree86 + icewm)(normal)
  70 => __("very nice"), #- KDE(normal)
  60 => __("nice"),      #- gnome(normal)
  50 => __("interesting"),
  40 => __("interesting"),
  30 => __("maybe"),
  20 => __("maybe"),
  10 => __("maybe"),#__("useless"),
   0 => __("maybe"),#__("garbage"),
#- if the package requires locales-LANG and LANG is chosen, rating += 90
 -10 => __("i18n (important)"), #- every install in the corresponding lang have these packages
 -20 => __("i18n (very nice)"), #- every beginner/custom install in the corresponding lang have theses packages
 -30 => __("i18n (nice)"),
);
#- HACK: rating += 50 for some packages (like kapm, cf install_any::setPackages)
#- HACK: rating += 10 if the group is selected and it is not a kde package (aka name !~ /^k/)


@skip_list = qw(
XFree86-8514 XFree86-AGX XFree86-Mach32 XFree86-Mach64 XFree86-Mach8 XFree86-Mono
XFree86-P9000 XFree86-S3 XFree86-S3V XFree86-SVGA XFree86-W32 XFree86-I128
XFree86-Sun XFree86-SunMono XFree86-Sun24 XFree86-3DLabs
MySQL MySQL_GPL mod_php3 midgard postfix metroess metrotmpl
kernel-linus kernel-secure kernel-fb kernel-BOOT
hackkernel hackkernel-BOOT hackkernel-fb hackkernel-headers
hackkernel-pcmcia-cs hackkernel-smp hackkernel-smp-fb 
autoirpm autoirpm-icons numlock 
);

%by_lang = (
  'ar'	=> [ 'acon' ],
# 'bg'	=> cp1251 fonts
  'cs'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
# 'cy'  => iso8859-14 fonts
# 'el'	=> greek fonts
# 'eo'	=> iso8859-3 fonts
# 'fa'	=> farsi fonts
# 'he'	=> hebrew fonts
  'hr'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  'hu'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  'hy'	=> [ 'fonts-ttf-armenian' ],
  'ja'	=> [ 'rxvt-CLE', 'fonts-ttf-japanese', 'kterm' ],
# 'ka'	=> georgian fonts
  'ko'	=> [ 'rxvt-CLE', 'fonts-ttf-korean' ],
# 'lt'	=> iso8859-13 fonts
# 'lv'	=> iso8859-13 fonts
# 'mk'	=> iso8859-5 fonts
  'pl'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  'ro'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  'ru'	=> [ 'XFree86-cyrillic-fonts' ],
  'sk'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
  'sl'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
# 'sp'  => iso8859-5 fonts
  'sr'	=> [ 'XFree86-ISO8859-2', 'XFree86-ISO8859-2-75dpi-fonts' ],
# 'th'	=> thai fonts
  'tr'	=> [ 'XFree86-ISO8859-9', 'XFree86-ISO8859-9-75dpi-fonts' ],
# 'uk'	=> koi8-u fonts
# 'vi'	=> vietnamese fonts
  'zh_CN' => [ 'rxvt-CLE', 'fonts-ttf-gb2312' ],
  'zh_TW.Big5' => [ 'rxvt-CLE', 'fonts-ttf-big5' ],
);

@preferred = qw(perl-GTK postfix ghostscript-X vim-minimal kernel ispell-en);

#- constant for small transaction.
$limitMinTrans = 8;

#- constant for packing flags, see below.
$PKGS_SELECTED  = 0x00ffffff;
$PKGS_FORCE     = 0x01000000;
$PKGS_INSTALLED = 0x02000000;
$PKGS_BASE      = 0x04000000;
$PKGS_SKIP      = 0x08000000;
$PKGS_UNSKIP    = 0x10000000;
$PKGS_UPGRADE   = 0x20000000;

#- package to ignore, typically in Application CD.
my %ignoreBadPkg = (
		    'civctp-demo'   => 1,
		    'eus-demo'      => 1,
		    'myth2-demo'    => 1,
		    'heretic2-demo' => 1,
		    'heroes3-demo'  => 1,
		    'rt2-demo'      => 1,
		   );

#- basic methods for extracting informations about packages.
#- to save memory, (name, version, release) are no more stored, they
#- are directly generated from (file).
#- all flags are grouped together into (flags), these includes the
#- following flags : selected, force, installed, base, skip.
#- size and deps are grouped to save memory too and make a much
#- simpler and faster depslist reader, this gets (sizeDeps).
sub packageHeaderFile { my ($pkg) = @_; $pkg->{file} }
sub packageName       { my ($pkg) = @_; $pkg->{file} =~ /(.*)-[^-]+-[^-]+/ ? $1 : die "invalid file `$pkg->{file}'" }
sub packageVersion    { my ($pkg) = @_; $pkg->{file} =~ /.*-([^-]+)-[^-]+/ ? $1 : die "invalid file `$pkg->{file}'" }
sub packageRelease    { my ($pkg) = @_; $pkg->{file} =~ /.*-[^-]+-([^-]+)/ ? $1 : die "invalid file `$pkg->{file}'" }

sub packageSize   { my ($pkg) = @_; to_int($pkg->{sizeDeps}) }
sub packageDepsId { my ($pkg) = @_; split ' ', ($pkg->{sizeDeps} =~ /^\d*\s*(.*)/)[0] }

sub packageFlagSelected  { my ($pkg) = @_; $pkg->{flags} & $PKGS_SELECTED }
sub packageFlagForce     { my ($pkg) = @_; $pkg->{flags} & $PKGS_FORCE }
sub packageFlagInstalled { my ($pkg) = @_; $pkg->{flags} & $PKGS_INSTALLED }
sub packageFlagBase      { my ($pkg) = @_; $pkg->{flags} & $PKGS_BASE }
sub packageFlagSkip      { my ($pkg) = @_; $pkg->{flags} & $PKGS_SKIP }
sub packageFlagUnskip    { my ($pkg) = @_; $pkg->{flags} & $PKGS_UNSKIP }
sub packageFlagUpgrade   { my ($pkg) = @_; $pkg->{flags} & $PKGS_UPGRADE }

sub packageSetFlagSelected  { my ($pkg, $v) = @_; $pkg->{flags} &= ~$PKGS_SELECTED; $pkg->{flags} |= $v & $PKGS_SELECTED; }

sub packageSetFlagForce     { my ($pkg, $v) = @_; $v ? ($pkg->{flags} |= $PKGS_FORCE)     : ($pkg->{flags} &= ~$PKGS_FORCE); }
sub packageSetFlagInstalled { my ($pkg, $v) = @_; $v ? ($pkg->{flags} |= $PKGS_INSTALLED) : ($pkg->{flags} &= ~$PKGS_INSTALLED); }
sub packageSetFlagBase      { my ($pkg, $v) = @_; $v ? ($pkg->{flags} |= $PKGS_BASE)      : ($pkg->{flags} &= ~$PKGS_BASE); }
sub packageSetFlagSkip      { my ($pkg, $v) = @_; $v ? ($pkg->{flags} |= $PKGS_SKIP)      : ($pkg->{flags} &= ~$PKGS_SKIP); }
sub packageSetFlagUnskip    { my ($pkg, $v) = @_; $v ? ($pkg->{flags} |= $PKGS_UNSKIP)    : ($pkg->{flags} &= ~$PKGS_UNSKIP); }
sub packageSetFlagUpgrade   { my ($pkg, $v) = @_; $v ? ($pkg->{flags} |= $PKGS_UPGRADE)   : ($pkg->{flags} &= ~$PKGS_UPGRADE); }

sub packageProvides { my ($pkg) = @_; @{$pkg->{provides} || []} }

sub packageFile { 
    my ($pkg) = @_; 
    $pkg->{header} or die "packageFile: missing header";
    $pkg->{file} . "." . c::headerGetEntry($pkg->{header}, 'arch') . ".rpm";
}

sub packageId {
    my ($packages, $pkg) = @_;
    my $i = 0;
    foreach (@{$packages->[1]}) { return $i if $pkg == $packages->[1][$i]; $i++ }
    return;
}

sub cleanHeaders {
    my ($prefix) = @_;
    commands::rm("-rf", "$prefix/tmp/headers") if -e "$prefix/tmp/headers";
}

#- get all headers from an hdlist file.
sub extractHeaders($$$) {
    my ($prefix, $pkgs, $medium) = @_;

    cleanHeaders($prefix);

    run_program::run("extract_archive",
		     "/tmp/$medium->{hdlist}",
		     "$prefix/tmp/headers",
		     map { packageHeaderFile($_) } @$pkgs);

    foreach (@$pkgs) {
	my $f = "$prefix/tmp/headers/". packageHeaderFile($_);
	local *H;
	open H, $f or log::l("unable to open header file $f: $!"), next;
	$_->{header} = c::headerRead(fileno H, 1) or log::l("unable to read header of package ". packageHeaderFile($_));
    }
    @$pkgs = grep { $_->{header} } @$pkgs;
}

#- size and correction size functions for packages.
my $A = -1.922e-05;
my $B = 1.18411;
my $C = 23.2; #- doesn't take hdlist's into account as getAvailableSpace will do it.
sub correctSize { max($_[0], ($A * $_[0] + $B) * $_[0] + $C) } #- size correction in MB.
sub invCorrectSize { min($_[0], (sqrt(max(sqr($B) + 4 * $A * ($_[0] - $C), 0)) - $B) / 2 / $A) } #- size correction in MB.

sub selectedSize {
    my ($packages) = @_;
    my $size = 0;
    foreach (values %{$packages->[0]}) {
	packageFlagSelected($_) && !packageFlagInstalled($_) and $size += packageSize($_) - ($_->{installedCumulSize} || 0);
    }
    $size;
}
sub correctedSelectedSize { correctSize(selectedSize($_[0]) / sqr(1024)) }


#- searching and grouping methods.
#- package is a reference to list that contains
#- a hash to search by name and
#- a list to search by id.
sub packageByName {
    my ($packages, $name) = @_;
    $packages->[0]{$name} or log::l("unknown package `$name'") && undef;
}
sub packageById {
    my ($packages, $id) = @_;
    $packages->[1][$id] or log::l("unknown package id $id") && undef;
}
sub allPackages {
    my ($packages) = @_;
    my %skip_list; @skip_list{@skip_list} = ();
    grep { !exists $skip_list{packageName($_)} } values %{$packages->[0]};
}
sub packagesOfMedium {
    my ($packages, $mediumName) = @_;
    my $medium = $packages->[2]{$mediumName};
    grep { $_->{medium} == $medium } @{$packages->[1]};
}
sub packagesToInstall {
    my ($packages) = @_;
    grep { $_->{medium}{selected} && packageFlagSelected($_) && !packageFlagInstalled($_) } values %{$packages->[0]};
}

sub allMediums {
    my ($packages) = @_;
    keys %{$packages->[2]};
}
sub mediumDescr {
    my ($packages, $medium) = @_;
    $packages->[2]{$medium}{descr};
}

#- selection, unselection of package.
sub selectPackage($$;$$$) {
    my ($packages, $pkg, $base, $otherOnly, $check_recursion) = @_;

    #- check if the same or better version is installed,
    #- do not select in such case.
    packageFlagInstalled($pkg) and return;

    #- check for medium selection, if the medium has not been
    #- selected, the package cannot be selected.
    $pkg->{medium}{selected} or return;

    #- avoid infinite recursion (mainly against badly generated depslist.ordered).
    $check_recursion ||= {}; exists $check_recursion->{$pkg->{file}} and return; $check_recursion->{$pkg->{file}} = undef;

    #- make sure base package are set even if already selected.
    $base and packageSetFlagBase($pkg, 1);

    #- select package and dependancies, otherOnly may be a reference
    #- to a hash to indicate package that will strictly be selected
    #- when value is true, may be selected when value is false (this
    #- is only used for unselection, not selection)
    unless (packageFlagSelected($pkg)) {
	foreach (packageDepsId($pkg)) {
	    my $preferred;	    
	    if (/\|/) {
		#- choice deps should be reselected recursively as no
		#- closure on them is computed, this code is exactly the
		#- same as pixel's one.
		my %preferred; @preferred{@preferred} = ();
		foreach (split '\|') {
		    my $dep = packageById($packages, $_) or next;
		    $preferred ||= $dep;
		    packageFlagSelected($dep) and $preferred = $dep, last;
		    exists $preferred{packageName($dep)} and $preferred = $dep;
		}
		selectPackage($packages, $preferred, $base, $otherOnly, $check_recursion) if $preferred;
	    } else {
		#- deps have been closed except for choices, so no need to
		#- recursively apply selection, expand base on it.
		my $dep = packageById($packages, $_);
		$base and packageSetFlagBase($dep, 1);
		$otherOnly and !packageFlagSelected($dep) and $otherOnly->{packageName($dep)} = 1;
		$otherOnly or packageSetFlagSelected($dep, 1+packageFlagSelected($dep));
	    }
	}
    }
    $otherOnly and !packageFlagSelected($pkg) and $otherOnly->{packageName($pkg)} = 1;
    $otherOnly or packageSetFlagSelected($pkg, 1+packageFlagSelected($pkg));
    1;
}
sub unselectPackage($$;$) {
    my ($packages, $pkg, $otherOnly) = @_;

    #- base package are not unselectable,
    #- and already unselected package are no more unselectable.
    packageFlagBase($pkg) and return;
    packageFlagSelected($pkg) or return;

    #- dependancies may be used to propose package that may be not
    #- usefull for the user, since their counter is just one and
    #- they are not used any more by other packages.
    #- provides are closed and are taken into account to get possible
    #- unselection of package (value false on otherOnly) or strict
    #- unselection (value true on otherOnly).
    foreach my $provided ($pkg, packageProvides($pkg)) {
	packageFlagBase($provided) and die "a provided package cannot be a base package";
	if (packageFlagSelected($provided)) {
	    $otherOnly or packageSetFlagSelected($provided, 0);
	    $otherOnly and $otherOnly->{packageName($provided)} = 1;
	}
	foreach (map { split '\|' } packageDepsId($provided)) {
	    my $dep = packageById($packages, $_);
	    packageFlagBase($dep) and next;
	    packageFlagSelected($dep) or next;
	    for (packageFlagSelected($dep)) {
		$_ == 1 and do { $otherOnly and $otherOnly->{packageName($dep)} ||= 0; };
		$_ >  1 and do { $otherOnly or packageSetFlagSelected($dep, $_-1); };
		last;
	    }
	}
    }
    1;
}
sub togglePackageSelection($$;$) {
    my ($packages, $pkg, $otherOnly) = @_;
    packageFlagSelected($pkg) ? unselectPackage($packages, $pkg, $otherOnly) : selectPackage($packages, $pkg, 0, $otherOnly);
}
sub setPackageSelection($$$) {
    my ($packages, $pkg, $value) = @_;
    $value ? selectPackage($packages, $pkg) : unselectPackage($packages, $pkg);
}

sub unselectAllPackages($) {
    my ($packages) = @_;
    foreach (values %{$packages->[0]}) {
	unless (packageFlagBase($_) || packageFlagUpgrade($_)) {
	    packageSetFlagSelected($_, 0);
	}
    }
}
sub unselectAllPackagesIncludingUpgradable($) {
    my ($packages, $removeUpgradeFlag) = @_;
    foreach (values %{$packages->[0]}) {
	unless (packageFlagBase($_)) {
	    packageSetFlagSelected($_, 0);
	    packageSetFlagUpgrade($_, 0);
	}
    }
}

sub skipSetWithProvides {
    my ($packages, @l) = @_;
    packageSetFlagSkip($_, 1) foreach grep { $_ } map { $_, packageProvides($_) } @l;
}

sub psUsingHdlists {
    my ($prefix, $method) = @_;
    my $listf = install_any::getFile('hdlists') or die "no hdlists found";
    my @packages = ({}, [], {});
    my @hdlists;

    #- parse hdlist.list file.
    my $medium = 1;
    foreach (<$listf>) {
	chomp;
	s/\s*#.*$//;
	/^\s*$/ and next;
	m/^\s*(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or die "invalid hdlist description \"$_\" in hdlists file";
	push @hdlists, [ $1, $medium, $2, $3 ];
	++$medium;
    }

    foreach (@hdlists) {
	my ($hdlist, $medium, $rpmsdir, $descr) = @$_;
	my $f = install_any::getFile($hdlist) or die "no $hdlist found";

	#- make sure the first medium is always selected!
	#- by default select all image.
	psUsingHdlist($prefix, $method, \@packages, $f, $hdlist, $medium, $rpmsdir, $descr, 1);
    }

    log::l("psUsingHdlists read " . scalar keys(%{$packages[0]}) . " headers on " . scalar keys(%{$packages[2]}) . " hdlists");

    \@packages;
}

sub psUsingHdlist {
    my ($prefix, $method, $packages, $f, $hdlist, $medium, $rpmsdir, $descr, $selected) = @_;

    #- if the medium already exist, use it.
    $packages->[2]{$medium} and return;

    my $fakemedium = $method . $medium;
    my $m = $packages->[2]{$medium} = { hdlist     => $hdlist,
					medium     => $medium,
					rpmsdir    => $rpmsdir, #- where is RPMS directory.
					descr      => $descr,
					fakemedium => $fakemedium,
					min        => scalar keys %{$packages->[0]},
					max        => -1, #- will be updated after reading current hdlist.
					selected   => $selected, #- default value is only CD1, it is really the minimal.
				      };

    #- copy hdlist file directly to $prefix/var/lib/urpmi, this will be used
    #- for getting header of package during installation or after by urpmi.
    my $newf = "$prefix/var/lib/urpmi/hdlist.$fakemedium.cz2";
    -e $newf and do { unlink $newf or die "cannot remove $newf: $!"; };
    local *F;
    open F, ">$newf" or die "cannot create $newf: $!";
    my ($buf, $sz); while (($sz = sysread($f, $buf, 16384))) { syswrite(F, $buf) }
    close F;

    symlinkf $newf, "/tmp/$hdlist";

    #- extract filename from archive, this take advantage of verifying
    #- the archive too.
    open F, "extract_archive $newf |" or die "unable to parse $newf";
    foreach (<F>) {
	chomp;
	/^[dlf]\s+/ or next;
	if (/^f\s+\d+\s+(.*)/) {
	    my $pkg = { file   => $1, #- rebuild filename according to header one
			flags  => 0,  #- flags
			medium => $m,
		      };
	    if ($packages->[0]{packageName($pkg)}) {
		log::l("ignoring package $1 already present in distribution");
	    } else {
		$packages->[0]{packageName($pkg)} = $pkg;
	    }
	} else {
	    die "bad hdlist file: $newf";
	}
    }
    close F;

    #- update maximal index.
    $m->{max} = scalar(keys %{$packages->[0]}) - 1;
    $m->{max} >= $m->{min} or die "nothing found while parsing $newf";
    log::l("read " . ($m->{max} - $m->{min} + 1) . " headers in $hdlist");
    1;
}

sub getOtherDeps($$) {
    my ($packages, $f) = @_;

    #- this version of getDeps is customized for handling errors more easily and
    #- convert reference by name to deps id including closure computation.
    foreach (<$f>) {
	my ($name, $version, $release, $size, $deps) = /^(\S*)-([^-\s]+)-([^-\s]+)\s+(\d+)\s+(.*)/;
	my $pkg = $packages->[0]{$name};

	$pkg or log::l("ignoring package $name-$version-$release in depslist is not in hdlist"), next;
	$version eq packageVersion($pkg) and $release eq packageRelease($pkg)
	  or log::l("warning package $name-$version-$release in depslist mismatch version or release in hdlist ($version ne ", packageVersion($pkg), " or $release ne ", packageRelease($pkg), ")"), next;

	my $index = scalar @{$packages->[1]};
	$index >= $pkg->{medium}{min} && $index <= $pkg->{medium}{max}
	  or log::l("ignoring package $name-$version-$release in depslist outside of hdlist indexation");

	#- here we have to translate referenced deps by name to id.
	#- this include a closure on deps too.
	my %closuredeps;
	@closuredeps{map { packageId($packages, $_), packageDepsId($_) }
		       grep { $_ }
			 map { packageByName($packages, $_) or do { log::l("unknown package $_ in depslist for closure"); undef } }
			   split /\s+/, $deps} = ();

	$pkg->{sizeDeps} = join " ", $size, keys %closuredeps;

	push @{$packages->[1]}, $pkg;
    }

    #- check for same number of package in depslist and hdlists, avoid being to hard.
    scalar(keys %{$packages->[0]}) == scalar(@{$packages->[1]})
      or log::l("other depslist has not same package as hdlist file");
}

sub getDeps($) {
    my ($prefix, $packages) = @_;

    #- this is necessary for urpmi, but also as hdlist are copied here,
    #- we can make consistent the directory.
    install_any::getAndSaveFile("depslist", "$prefix/var/lib/urpmi/depslist");

    my $f = install_any::getFile("depslist.ordered") or die "can't find dependencies list";

    #- beware of heavily mismatching depslist.ordered file against hdlist files.
    my $mismatch = 0;

    #- update dependencies list, provides attributes are updated later
    #- cross reference to be resolved on id (think of loop requires)
    #- provides should be updated after base flag has been set to save
    #- memory.
    foreach (<$f>) {
	my ($name, $version, $release, $sizeDeps) = /^(\S*)-([^-\s]+)-([^-\s]+)\s+(.*)/;
	my $pkg = $packages->[0]{$name};

	$pkg or
	  log::l("ignoring $name-$version-$release in depslist is not in hdlist"), $mismatch = 1, next;
	$version eq packageVersion($pkg) and $release eq packageRelease($pkg) or
	  log::l("ignoring $name-$version-$release in depslist mismatch version or release in hdlist ($version ne ", packageVersion($pkg), " or $release ne ", packageRelease($pkg), ")"), $mismatch = 1, next;

	$pkg->{sizeDeps} = $sizeDeps;

	#- check position of package in depslist according to precomputed
	#- limit by hdlist, very strict :-)
	#- above warning have chance to raise an exception here, but may help
	#- for debugging.
	my $i = scalar @{$packages->[1]};
	$i >= $pkg->{medium}{min} && $i <= $pkg->{medium}{max} or $mismatch = 1;

	#- package are already sorted in depslist to enable small transaction and multiple medium.
	push @{$packages->[1]}, $pkg;
    }

    #- check for mismatching package, it should breaj with above die unless depslist has too many errors!
    $mismatch and die "depslist.ordered mismatch against hdlist files";

    #- check for same number of package in depslist and hdlists.
    scalar(keys %{$packages->[0]}) == scalar(@{$packages->[1]}) or die "depslist.ordered has not same package as hdlist files";
}

sub getProvides($) {
    my ($packages) = @_;

    #- update provides according to dependencies, here are stored
    #- reference to package directly and choice are included, this
    #- assume only 1 of the choice is selected, else on unselection
    #- the provided package will be deleted where other package still
    #- need it.
    #- base package are not updated because they cannot be unselected,
    #- this save certainly a lot of memory since most of them may be
    #- needed by a large number of package.

    foreach my $pkg (@{$packages->[1]}) {
	map { my $provided = $packages->[1][$_] or die "invalid package index $_";
	      packageFlagBase($provided) or push @{$provided->{provides} ||= []}, $pkg;
	  } map { split '\|' } grep { !/^NOTFOUND_/ } packageDepsId($pkg);
    }
}

sub readCompss {
    my ($packages) = @_;
    my ($p, @compss);

    my $f = install_any::getFile("compss") or die "can't find compss";
    foreach (<$f>) {
	/^\s*$/ || /^#/ and next;
	s/#.*//;

	if (/^(\S.*)/) {
	    $p = $1;
	} else {
	    /(\S+)/;
	    $packages->[0]{$1} or log::l("unknown package $1 in compss"), next;
	    push @compss, "$p/$1";
	}
    }
    \@compss;
}

sub readCompssList {
    my ($packages) = @_;
    my $f = install_any::getFile("compssList") or die "can't find compssList";
    my @levels = split ' ', <$f>;

    foreach (<$f>) {
	/^\s*$/ || /^#/ and next;
	my ($name, @values) = split;
	my $p = packageByName($packages, $name) or log::l("unknown entry $name (in compssList)"), next;
	$p->{values} = \@values;
    }

    my %done;
    foreach (split ':', $ENV{RPM_INSTALL_LANG}) {
	my $p = packageByName($packages, "locales-$_") or next;
	foreach ($p, @{$p->{provides} || []}, map { packageByName($packages, $_) } @{$by_lang{$_} || []}) {
	    next if !$_ || $done{$_}; $done{$_} = 1;
	    $_->{values} = [ map { $_ + 90 } @{$_->{values} || [ (0) x @levels ]} ];
	}
    }
    my $l = { map_index { $_ => $::i } @levels };
}

sub readCompssUsers {
    my ($packages, $compss) = @_;
    my (%compssUsers, @sorted, $l);
    my (%compss); 
    foreach (@$compss) {
	local ($_, $a) = m|(.*)/(.*)|;
	do { push @{$compss{$_}}, $a } while s|/[^/]+||;
    }

    my $map = sub {
	$l or return;
	$_ = $packages->[0]{$_} or log::l("unknown package $1 (in compssUsers)") foreach @$l;
    };
    my $f = install_any::getFile("compssUsers") or die "can't find compssUsers";
    foreach (<$f>) {
	/^\s*$/ || /^#/ and next;
	s/#.*//;

	if (/^(\S.*)/) {
	    &$map;
	    push @sorted, $1;
	    $compssUsers{$1} = $l = [];
	} elsif (/\s+\+(\S+)/) {
	    push @$l, $1;
	} elsif (/^\s+(.*?)\s*$/) {
	    push @$l, @{$compss{$1} || log::l("unknown category $1 (in compssUsers)") && []};
	}
    }
    &$map;
    \%compssUsers, \@sorted;
}

sub setSelectedFromCompssList {
    my ($compssListLevels, $packages, $min_level, $max_size, $install_class) = @_;
    my $ind = $compssListLevels->{$install_class}; defined $ind or log::l("unknown install class $install_class in compssList"), return;
    my $nb = selectedSize($packages);
    my @packages = allPackages($packages);
    my @places = do {
	#- special case for /^k/ aka kde stuff
	my @values = map { $_->{values}[$ind] + (packageFlagUnskip($_) && packageName($_) !~ /^k/ ? 10 : 0) } @packages;
	sort { $values[$b] <=> $values[$a] } 0 .. $#packages;
    };
    foreach (@places) {
	my $p = $packages[$_];
	next if packageFlagSkip($p);
	last if $p->{values}[$ind] < $min_level;

	#- determine the packages that will be selected when
	#- selecting $p. the packages are not selected.
	my %newSelection;
	selectPackage($packages, $p, 0, \%newSelection);

	#- this enable an incremental total size.
	foreach (grep { $newSelection{$_} } keys %newSelection) {
	    $nb += packageSize($packages->[0]{$_});
	}
	if ($max_size && $nb > $max_size) {
	    $min_level = $p->{values}[$ind];
	    last;
	}

	#- at this point the package can safely be selected.
	selectPackage($packages, $p);
    }
    log::l("setSelectedFromCompssList: reached size $nb, up to indice $min_level (less than $max_size)");
    $ind, $min_level;
}

sub init_db {
    my ($prefix, $isUpgrade) = @_;

    my $f = "$prefix/root/install.log";
    open(LOG, "> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept.");
    *LOG or *LOG = log::F() or *LOG = *STDERR;
    CORE::select((CORE::select(LOG), $| = 1)[0]);
    c::rpmErrorSetCallback(fileno LOG);
#-    c::rpmSetVeryVerbose();

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    if ($isUpgrade) {
	c::rpmdbRebuild($prefix) or die "rebuilding of rpm database failed: ", c::rpmErrorString();
    }
    c::rpmdbInit($prefix, 0644) or die "creation of rpm database failed: ", c::rpmErrorString();
}

sub done_db {
    log::l("closing install.log file");
    close LOG;
}

sub versionCompare($$) {
    my ($a, $b) = @_;
    local $_;

    while ($a || $b) {
	my ($sb, $sa) =  map { $1 if $a =~ /^\W*\d/ ? s/^\W*0*(\d+)// : s/^\W*(\D+)// } ($b, $a);
	$_ = length($sa) cmp length($sb) || $sa cmp $sb and return $_;
    }
}

sub selectPackagesToUpgrade($$$;$$) {
    my ($packages, $prefix, $base, $toRemove, $toSave) = @_;

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    my $db = c::rpmdbOpenForTraversal($prefix) or die "unable to open $prefix/var/lib/rpm/packages.rpm";
    log::l("opened rpm database for examining existing packages");

    #- get filelist of package to avoid getting all header into memory.
    my %filelist;
    my $current;
    my $f = install_any::getFile("filelist") or log::l("unable to get filelist of packages");
    foreach (<$f>) {
	chomp;
	if (/^#(.*)/) {
	    $current = $filelist{$1} = [];
	} else {
	    push @$current, $_;
	}
    }

    local $_; #- else perl complains on the map { ... } grep { ... } @...;
    my %installedFilesForUpgrade; #- help searching package to upgrade in regard to already installed files.

    #- used for package that are not correctly updated.
    #- should only be used when nothing else can be done correctly.
    my %upgradeNeedRemove = (
			     'libstdc++' => 1,
			     'compat-glibc' => 1,
			     'compat-libs' => 1,
			    );

    #- these package are not named as ours, need to be translated before working.
    #- a version may follow to setup a constraint 'installed version greater than'.
    my %otherPackageToRename = (
				'qt' => [ 'qt2', '2.0' ],
				'qt1x' => [ 'qt' ],
			       );
    #- generel purpose for forcing upgrade of package whatever version is.
    my %packageNeedUpgrade = (
			      'lilo' => 1, #- this package has been misnamed in 7.0.
			     );

    #- help removing package which may have different release numbering
    my %toRemove; map { $toRemove{$_} = 1 } @{$toRemove || []};

    #- mark all files which are not in /etc/rc.d/ for packages which are already installed but which
    #- are not in the packages list to upgrade.
    #- the 'installed' property will make a package unable to be selected, look at select.
    c::rpmdbTraverse($db, sub {
			 my ($header) = @_;
			 my $otherPackage = (c::headerGetEntry($header, 'release') !~ /mdk\w*$/ &&
					     (c::headerGetEntry($header, 'name'). '-' .
					      c::headerGetEntry($header, 'version'). '-' .
					      c::headerGetEntry($header, 'release')));
			 my $renaming = $otherPackage && $otherPackageToRename{c::headerGetEntry($header, 'name')};
			 my $name = $renaming &&
			   (!$renaming->[1] || versionCompare(c::headerGetEntry($header, 'version'), $renaming->[1]) >= 0) &&
			     $renaming->[0];
			 $name and $packageNeedUpgrade{$name} = 1; #- keep in mind to force upgrading this package.
			 my $p = $packages->[0]{$name || c::headerGetEntry($header, 'name')};

			 if ($p) {
			     my $version_cmp = versionCompare(c::headerGetEntry($header, 'version'), packageVersion($p));
			     my $version_rel_test = $version_cmp > 0 || $version_cmp == 0 &&
			       versionCompare(c::headerGetEntry($header, 'release'), packageRelease($p)) >= 0;
			     if ($version_rel_test) { #- by default, package selecting are upgrade whatever version is !
				 if ($otherPackage && $version_cmp <= 0) {
				     log::l("force upgrading $otherPackage since it will not be updated otherwise");
				 } else {
				     packageSetFlagInstalled($p, 1);
				 }
			     } elsif ($upgradeNeedRemove{packageName($p)}) {
				 my $otherPackage = (c::headerGetEntry($header, 'name'). '-' .
						     c::headerGetEntry($header, 'version'). '-' .
						     c::headerGetEntry($header, 'release'));
				 log::l("removing $otherPackage since it will not upgrade correctly!");
				 $toRemove{$otherPackage} = 1; #- force removing for theses other packages, select our.
			     }
			 } else {
			     my @files = c::headerGetEntry($header, 'filenames');
			     @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
							       ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
			 }
		     });

    #- find new packages to upgrade.
    foreach (values %{$packages->[0]}) {
	my $p = $_;
	my $skipThis = 0;
	my $count = c::rpmdbNameTraverse($db, packageName($p), sub {
					     my ($header) = @_;
					     $skipThis ||= packageFlagInstalled($p);
					 });

	#- skip if not installed (package not found in current install).
	$skipThis ||= ($count == 0);

	#- make sure to upgrade package that have to be upgraded.
	$packageNeedUpgrade{packageName($p)} and $skipThis = 0;

	#- select the package if it is already installed with a lower version or simply not installed.
	unless ($skipThis) {
	    my $cumulSize;

	    selectPackage($packages, $p) unless packageFlagSelected($p);

	    #- keep in mind installed files which are not being updated. doing this costs in
	    #- execution time but use less memory, else hash all installed files and unhash
	    #- all file for package marked for upgrade.
	    c::rpmdbNameTraverse($db, packageName($p), sub {
				     my ($header) = @_;
				     $cumulSize += c::headerGetEntry($header, 'size'); #- all these will be deleted on upgrade.
				     my @files = c::headerGetEntry($header, 'filenames');
				     @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
								       ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
				 });
	    if (my $list = $filelist{packageName($p)}) {
		my @commonparts = map { /^=(.*)/ ? ($1) : () } @$list;
		map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| }
		  map { /^(\d)(.*)/ ? ($commonparts[$1] . $2) : /^ (.*)/ ? ($1) : () } @$list;
	    }

	    #- keep in mind the cumul size of installed package since they will be deleted
	    #- on upgrade.
	    $p->{installedCumulSize} = $cumulSize;
	}
    }

    #- unmark all files for all packages marked for upgrade. it may not have been done above
    #- since some packages may have been selected by depsList.
    foreach (values %{$packages->[0]}) {
	my $p = $_;

	if (packageFlagSelected($p)) {
	    if (my $list = $filelist{packageName($p)}) {
		my @commonparts = map { /^=(.*)/ ? ($1) : () } @$list;
		map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| }
		  map { /^(\d)(.*)/ ? ($commonparts[$1] . $2) : /^ (.*)/ ? ($1) : () } @$list;
	    }
	}
    }

    #- select packages which contains marked files, then unmark on selection.
    foreach (values %{$packages->[0]}) {
	my $p = $_;

	unless (packageFlagSelected($p)) {
	    my $toSelect = 0;
	    if (my $list = $filelist{packageName($p)}) {
		my @commonparts = map { /^=(.*)/ ? ($1) : () } @$list;
		map { if (exists $installedFilesForUpgrade{$_}) {
		    $toSelect ||= ! -d "$prefix/$_" && ! -l "$prefix/$_"; delete $installedFilesForUpgrade{$_} }
		  } grep { $_ !~ m|^/etc/rc.d/| } map { /^(\d)(.*)/ ? ($commonparts[$1] . $2) : /^ (.*)/ ? ($1) : () } @$list;
	    }
	    selectPackage($packages, $p) if ($toSelect);
	}
    }

    #- select packages which obseletes other package, obselete package are not removed,
    #- should we remove them ? this could be dangerous !
    foreach (values %{$packages->[0]}) {
	my $p = $_;

	if (my $list = $filelist{packageName($p)}) {
	    my @obsoletes = map { /^\*(.*)/ ? ($1) : () } @$list;
	    map { selectPackage($packages, $p) if c::rpmdbNameTraverse($db, $_) > 0 } @obsoletes;
	}
    }

    #- keep a track of packages that are been selected for being upgraded,
    #- these packages should not be unselected.
    foreach (values %{$packages->[0]}) {
	my $p = $_;

	packageSetFlagUpgrade($p, 1) if packageFlagSelected($p);
    }

    #- clean false value on toRemove.
    delete $toRemove{''};

    #- get filenames that should be saved for packages to remove.
    #- typically config files, but it may broke for packages that
    #- are very old when compabilty has been broken.
    #- but new version may saved to .rpmnew so it not so hard !
    if ($toSave && keys %toRemove) {
	c::rpmdbTraverse($db, sub {
			     my ($header) = @_;
			     my $otherPackage = (c::headerGetEntry($header, 'name'). '-' .
						 c::headerGetEntry($header, 'version'). '-' .
						 c::headerGetEntry($header, 'release'));
			     if ($toRemove{$otherPackage}) {
				 if (packageFlagBase($packages->[0]{c::headerGetEntry($header, 'name')})) {
				     delete $toRemove{$otherPackage}; #- keep it selected, but force upgrade.
				 } else {
				     my @files = c::headerGetEntry($header, 'filenames');
				     my @flags = c::headerGetEntry($header, 'fileflags');
				     for my $i (0..$#flags) {
					 if ($flags[$i] & c::RPMFILE_CONFIG()) {
					     push @$toSave, $files[$i] unless $files[$i] =~ /kdelnk/; #- avoid doublons for KDE.
					 }
				     }
				 }
			     }
			 });
    }

    log::l("before closing db");
    #- close db, job finished !
    c::rpmdbClose($db);
    log::l("done selecting packages to upgrade");

    #- update external copy with local one.
    @{$toRemove || []} = keys %toRemove;
}

sub installCallback {
    my $msg = shift;
    log::l($msg .": ". join(',', @_));
}

sub install($$$;$$) {
    my ($prefix, $isUpgrade, $toInstall, $depOrder, $media) = @_;
    my %packages;

    return if $::g_auto_install || !scalar(@$toInstall);

    #- for root loopback'ed /boot
    my $loop_boot = loopback::prepare_boot($prefix);

    #- first stage to extract some important informations
    #- about the packages selected. this is used to select
    #- one or many transaction.
    my ($total, $nb);
    foreach my $pkg (@$toInstall) {
	$packages{packageName($pkg)} = $pkg;
	$nb++;
	$total += packageSize($pkg);
    }

    eval { fs::mount("/proc", "$prefix/proc", "proc", 0) } unless -e "$prefix/proc/cpuinfo";

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    my $callbackOpen = sub {
	my $f = packageFile($packages{$_[0]});
	print LOG "$f\n";
	my $fd = install_any::getFile($f);
	$fd ? fileno $fd : -1;
    };
    my $callbackClose = sub { packageSetFlagInstalled(delete $packages{$_[0]}, 1) };

    #- do not modify/translate the message used with installCallback since
    #- these are keys during progressing installation, or change in other
    #- place (install_steps_gtk.pm,...).
    installCallback("Starting installation", $nb, $total);

    my ($i, $min, $medium) = (0, 0, 1);
    do {
	my @transToInstall;

	if (!$depOrder || !$media) {
	    @transToInstall = values %packages;
	    $nb = 0;
	} else {
	    do {
		#- change current media if needed.
		if ($i > $media->{$medium}{max}) {
		    #- search for media that contains the desired package to install.
		    foreach (keys %$media) {
			$i >= $media->{$_}{min} && $i <= $media->{$_}{max} and $medium = $_, last;
		    }
		}
		$i >= $media->{$medium}{min} && $i <= $media->{$medium}{max} or die "unable to find right medium";
		install_any::useMedium($medium);

		while ($i <= $media->{$medium}{max} && ($i < $min || scalar @transToInstall < $limitMinTrans)) {
		    my $dep = $packages{packageName($depOrder->[$i++])} or next;
		    if ($dep->{medium}{selected}) {
			push @transToInstall, $dep;
			foreach (map { split '\|' } packageDepsId($dep)) {
			    $min < $_ and $min = $_;
			}
		    } else {
			log::l("ignoring package $dep->{file} as its medium is not selected");
		    }
		    --$nb; #- make sure the package is not taken into account as its medium is not selected.
		}
	    } while ($nb > 0 && scalar(@transToInstall) == 0); #- avoid null transaction, it a nop that cost a bit.
	}

	#- added to exit typically after last media unselected.
	if ($nb == 0 && scalar(@transToInstall) == 0) {
	    cleanHeaders($prefix);

	    loopback::save_boot($loop_boot);
	    return;
	}

	#- extract headers for parent as they are used by callback.
	extractHeaders($prefix, \@transToInstall, $media->{$medium});

	#- reset file descriptor open for main process but
	#- make sure error trying to change from hdlist are
	#- trown from main process too.
	install_any::getFile(packageFile($transToInstall[0]));
	#- and make sure there are no staling open file descriptor too!
	install_any::getFile('XXX');

	#- reset ftp handlers before forking, otherwise well ;-(
	#require ftp;
	#ftp::rewindGetFile();

	local (*INPUT, *OUTPUT); pipe INPUT, OUTPUT;
	if (my $pid = fork()) {
	    close OUTPUT;
	    my $error_msg = '';
	    local $_;
	    while (<INPUT>) {
		if (/^die:(.*)/) {
		    $error_msg = $1;
		    last;
		} else {
		    chomp;
		    my @params = split ":";
		    if ($params[0] eq 'close') {
			&$callbackClose($params[1]);
		    } else {
			installCallback(@params);
		    }
		}
	    }
	    $error_msg and $error_msg .= join('', <INPUT>);
	    waitpid $pid, 0;
	    close INPUT;
	    $error_msg and die $error_msg;
	} else {
	    #- child process will run each transaction.
	    $SIG{SEGV} = sub { log::l("segmentation fault on transactions"); c::_exit(0) };
	    eval {
		close INPUT;
		select((select(OUTPUT),  $| = 1)[0]);
		my $db = c::rpmdbOpen($prefix) or die "error opening RPM database: ", c::rpmErrorString();
		my $trans = c::rpmtransCreateSet($db, $prefix);
		log::l("opened rpm database for transaction of ". scalar @transToInstall ." new packages, still $nb after that to do");

		c::rpmtransAddPackage($trans, $_->{header}, packageName($_), $isUpgrade && packageName($_) !~ /kernel/) #- TODO: replace `named kernel' by `provides kernel'
		    foreach @transToInstall;

		c::rpmdepOrder($trans) or
		    die "error ordering package list: " . c::rpmErrorString(), 
		      sub { c::rpmdbClose($db) };
		c::rpmtransSetScriptFd($trans, fileno LOG);

		log::l("rpmRunTransactions start");
		my @probs = c::rpmRunTransactions($trans, $callbackOpen,
						  sub { #- callbackClose
						      print OUTPUT "close:$_[0]\n"; },
						  sub { #- installCallback
						      print OUTPUT join(":", @_), "\n"; },
						  0);
		log::l("rpmRunTransactions done");

		if (@probs) {
		    my %parts;
		    @probs = reverse grep {
			if (s/(installing package) .* (needs (?:.*) on the (.*) filesystem)/$1 $2/) {
			    $parts{$3} ? 0 : ($parts{$3} = 1);
			} else { 1; }
		    } reverse map { s|/mnt||; $_ } @probs;

		    c::rpmdbClose($db);
		    die "installation of rpms failed:\n  ", join("\n  ", @probs);
		}
		c::rpmdbClose($db);
		log::l("rpm database closed");
	    }; $@ and print OUTPUT "die:$@\n";

	    close OUTPUT;
	    c::_exit(0);
	}
	c::headerFree(delete $_->{header}) foreach @transToInstall;
	cleanHeaders($prefix);

	if (my @badpkgs = grep { !packageFlagInstalled($_) && $_->{medium}{selected} && !exists($ignoreBadPkg{packageName($_)}) } @transToInstall) {
	    foreach (@badpkgs) {
		log::l("bad package $_->{file}");
		packageSetFlagSelected($_, 0);
	    }
	    cdie ("error installing package list: " . join("\n", map { $_->{file} } @badpkgs));
	}
    } while ($nb > 0 && !$pkgs::cancel_install);

    cleanHeaders($prefix);

    loopback::save_boot($loop_boot);
}

sub remove($$) {
    my ($prefix, $toRemove) = @_;

    return if $::g_auto_install || !@{$toRemove || []};

    log::l("reading /usr/lib/rpm/rpmrc");
    c::rpmReadConfigFiles() or die "can't read rpm config files";
    log::l("\tdone");

    my $db = c::rpmdbOpen($prefix) or die "error opening RPM database: ", c::rpmErrorString();
    log::l("opened rpm database for removing old packages");

    my $trans = c::rpmtransCreateSet($db, $prefix);

    foreach my $p (@$toRemove) {
	#- stuff remove all packages that matches $p, not a problem since $p has name-version-release format.
	c::rpmtransRemovePackages($db, $trans, $p) if $p !~ /kernel/;
    }

    eval { fs::mount("/proc", "$prefix/proc", "proc", 0) } unless -e "$prefix/proc/cpuinfo";

    my $callbackOpen = sub { log::l("trying to open file from $_[0] which should not happen"); };
    my $callbackClose = sub { log::l("trying to close file from $_[0] which should not happen"); };

    #- we are not checking depends since it should come when
    #- upgrading a system. although we may remove some functionalities ?

    #- do not modify/translate the message used with installCallback since
    #- these are keys during progressing installation, or change in other
    #- place (install_steps_gtk.pm,...).
    installCallback("Starting removing other packages", scalar @$toRemove);

    if (my @probs = c::rpmRunTransactions($trans, $callbackOpen, $callbackClose, \&installCallback, 0)) {
	die "removing of old rpms failed:\n  ", join("\n  ", @probs);
    }
    c::rpmtransFree($trans);
    c::rpmdbClose($db);
    log::l("rpm database closed");

    #- keep in mind removing of these packages by cleaning $toRemove.
    @{$toRemove || []} = ();
}

1;
'#n5563'>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 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
"POT-Creation-Date: 2012-09-18 13:37+0200\n"
"PO-Revision-Date: 2012-02-20 22:24+0000\n"
"Last-Translator: Matteo Pasotti <pasotti.matteo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"

#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
#: harddrake/sound.pm:270 interactive.pm:587 pkgs.pm:285
#, c-format
msgid "Please wait"
msgstr "Attendi"

#: any.pm:261
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installazione del bootloader in corso"

#: any.pm:272
#, 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 ""
"LILO vuole assegnare un nuovo Volume ID al drive %s.  Tuttavia, il cambio\n"
"del Volume ID di una partizione di boot di Windows NT, 2000, o XP "
"costituisce\n"
"un errore fatale per Windows.\n"
"Non servono precauzioni per le partizioni di Windows 95/98 o NT con solo "
"dati.\n"
"\n"
"Assegno un nuovo Volume ID?"

#: any.pm:283
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Installazione del bootloader fallita. Si è verificato il seguente errore:"

#: any.pm:289
#, 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 ""
"Potrebbe servire la modifica del dispositivo di boot dell'Open Firmware\n"
" per abilitare il bootloader. Se non vedi il prompt del bootloader dopo\n"
" il riavvio, tieni premuto Command-Option-O-F al riavvio e digita:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Poi digita: shut-down\n"
"Al boot successivo dovresti vedere il prompt del bootloader."

#: any.pm:329
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard disk drive you boot "
"(eg: System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Hai deciso di installare il bootloader su una partizione.\n"
"Questo implica che hai già un bootloader nel disco rigido che avvii (es. "
"Grub).\n"
"\n"
"Da quale disco avvii il sistema?"

#: any.pm:340
#, c-format
msgid "Bootloader Installation"
msgstr "Installazione del bootloader in corso"

#: any.pm:344
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Dove vuoi installare il bootloader?"

#: any.pm:368
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primo settore del disco (MBR) %s"

#: any.pm:370
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primo settore del disco (MBR)"

#: any.pm:372
#, c-format
msgid "First sector of the root partition"
msgstr "Primo settore della partizione root"

#: any.pm:374
#, c-format
msgid "On Floppy"
msgstr "Su floppy"

#: any.pm:376 pkgs.pm:281 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Salta"

#: any.pm:411
#, c-format
msgid "Boot Style Configuration"
msgstr "Configurazione stile di avvio"

#: any.pm:427 any.pm:460 any.pm:461
#, c-format
msgid "Bootloader main options"
msgstr "Opzioni principali del bootloader"

#: any.pm:431
#, c-format
msgid "Bootloader"
msgstr "Bootloader"

#: any.pm:432 any.pm:464
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader da usare"

#: any.pm:435 any.pm:467
#, c-format
msgid "Boot device"
msgstr "Dispositivo di boot"

#: any.pm:438
#, c-format
msgid "Main options"
msgstr "Opzioni principali"

#: any.pm:439
#, c-format
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare l'immagine predefinita"

#: any.pm:440
#, c-format
msgid "Enable ACPI"
msgstr "Abilitare l'ACPI"

#: any.pm:441
#, c-format
msgid "Enable SMP"
msgstr "Abilitare SMP"

#: any.pm:442
#, c-format
msgid "Enable APIC"
msgstr "Abilitare l'APIC"

#: any.pm:444
#, c-format
msgid "Enable Local APIC"
msgstr "Abilitare l'APIC locale"

#: any.pm:445 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicurezza"

#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"

#: any.pm:449 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Le password non corrispondono"

#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Per favore, riprova"

#: any.pm:451
#, c-format
msgid "You cannot use a password with %s"
msgstr "Non puoi usare una password con %s"

#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ripeti)"

#: any.pm:456
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Svuota /tmp ad ogni avvio"

#: any.pm:466
#, c-format
msgid "Init Message"
msgstr "Messaggio di init"

#: any.pm:468
#, c-format
msgid "Open Firmware Delay"
msgstr "Attesa dell'Open Firmware"

#: any.pm:469
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Attesa per il boot del kernel"

#: any.pm:470
#, c-format
msgid "Enable CD Boot?"
msgstr "Abilitare l'avvio da CD-ROM?"

#: any.pm:471
#, c-format
msgid "Enable OF Boot?"
msgstr "Abilitare boot da OF?"

#: any.pm:472
#, c-format
msgid "Default OS?"
msgstr "Sistema operativo predefinito?"

#: any.pm:546
#, c-format
msgid "Image"
msgstr "Immagine"

#: any.pm:547 any.pm:561
#, c-format
msgid "Root"
msgstr "Root"

#: any.pm:548 any.pm:574
#, c-format
msgid "Append"
msgstr "Opzioni per il kernel"

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

#: any.pm:552
#, c-format
msgid "Requires password to boot"
msgstr "Richiedere password al boot"

#: any.pm:554
#, c-format
msgid "Video mode"
msgstr "Modalità video"

#: any.pm:556
#, c-format
msgid "Initrd"
msgstr "Initrd"

#: any.pm:557
#, c-format
msgid "Network profile"
msgstr "Profilo di rete"

#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichetta"

#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinito"

#: any.pm:575
#, c-format
msgid "NoVideo"
msgstr "NoVideo"

#: any.pm:586
#, c-format
msgid "Empty label not allowed"
msgstr "Non sono ammesse etichette vuote"

#: any.pm:587
#, c-format
msgid "You must specify a kernel image"
msgstr "Bisogna indicare l'immagine di un kernel"

#: any.pm:587
#, c-format
msgid "You must specify a root partition"
msgstr "Bisogna specificare una partizione root"

#: any.pm:588
#, c-format
msgid "This label is already used"
msgstr "Questa etichetta è già in uso"

#: any.pm:606
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere?"

#: any.pm:607
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:607
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Altro S.O. (SunOS...)"

#: any.pm:608
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Altro S.O. (MacOS,...)"

#: any.pm:608
#, c-format
msgid "Other OS (Windows...)"
msgstr "Altro S.O. (Windows, ...)"

#: any.pm:655
#, c-format
msgid "Bootloader Configuration"
msgstr "Configurazione del bootloader"

#: any.pm:656
#, 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 ""
"Finora ci sono queste voci nel menu di boot.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."

#: any.pm:867
#, c-format
msgid "access to X programs"
msgstr "accesso ai programmi X"

#: any.pm:868
#, c-format
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"

#: any.pm:869
#, c-format
msgid "allow \"su\""
msgstr "permettere \"su\""

#: any.pm:870
#, c-format
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"

#: any.pm:871
#, c-format
msgid "access to network tools"
msgstr "accesso agli strumenti di rete"

#: any.pm:872
#, c-format
msgid "access to compilation tools"
msgstr "accesso agli strumenti di compilazione"

#: any.pm:878
#, c-format
msgid "(already added %s)"
msgstr "(%s già aggiunto)"

#: any.pm:884
#, c-format
msgid "Please give a user name"
msgstr "Inserisci il nome di un utente, grazie"

#: any.pm:885
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
"Il nome utente deve iniziare con una lettera minuscola seguita solo da altre "
"minuscole, numeri, \"-\" e \"_\""

#: any.pm:886
#, c-format
msgid "The user name is too long"
msgstr "Il nome utente è troppo lungo"

#: any.pm:887
#, c-format
msgid "This user name has already been added"
msgstr "Il nome utente è già stato utilizzato"

#: any.pm:893 any.pm:929
#, c-format
msgid "User ID"
msgstr "ID utente"

#: any.pm:893 any.pm:930
#, c-format
msgid "Group ID"
msgstr "ID gruppo"

#: any.pm:894
#, c-format
msgid "%s must be a number"
msgstr "%s dev'essere un numero"

#: any.pm:895
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s dovrebbe essere superiore a 500. Accetta comunque?"

#: any.pm:899
#, c-format
msgid "User management"
msgstr "Gestione degli utenti"

#: any.pm:904
#, c-format
msgid "Enable guest account"
msgstr "Abilita l'account guest"

#: any.pm:905 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Scegli password amministratore (root)"

#: any.pm:911
#, c-format
msgid "Enter a user"
msgstr "Inserisci un utente"

#: any.pm:913
#, c-format
msgid "Icon"
msgstr "Icona"

#: any.pm:916
#, c-format
msgid "Real name"
msgstr "Vero nome"

#: any.pm:923
#, c-format
msgid "Login name"
msgstr "Nome utente"

#: any.pm:928
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:971
#, c-format
msgid "Please wait, adding media..."
msgstr "Attendere, aggiornamento dei supporti in corso..."

#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"

#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Si può configurare il computer per fare automaticamente il login di un "
"utente all'avvio."

#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilizza questa funzionalità"

#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito:"

#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Scegli il gestore di finestre da usare:"

#: any.pm:1018 any.pm:1038 any.pm:1106
#, c-format
msgid "Release Notes"
msgstr "Note di rilascio"

#: any.pm:1045 any.pm:1394 interactive/gtk.pm:817
#, c-format
msgid "Close"
msgstr "Chiudi"

#: any.pm:1092
#, c-format
msgid "License agreement"
msgstr "Accordo di licenza"

#: any.pm:1094 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Esci"

#: any.pm:1101
#, c-format
msgid "Do you accept this license ?"
msgstr "Accetti questa licenza?"

#: any.pm:1102
#, c-format
msgid "Accept"
msgstr "Accetta"

#: any.pm:1102
#, c-format
msgid "Refuse"
msgstr "Rifiuta"

#: any.pm:1128 any.pm:1190
#, c-format
msgid "Please choose a language to use"
msgstr "Scegli una lingua da utilizzare"

#: any.pm:1156
#, c-format
msgid ""
"%s 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 ""
"%s può supportare più lingue. Seleziona\n"
"le lingue che vorresti installare. Esse saranno disponibili\n"
"quando l'installazione è completa e riavvii il sistema."

#: any.pm:1158 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"

#: any.pm:1159
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"

#: any.pm:1168 any.pm:1199
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codifica per vecchia compatibilità (non UTF-8)"

#: any.pm:1169
#, c-format
msgid "All languages"
msgstr "Tutte le lingue"

#: any.pm:1191
#, c-format
msgid "Language choice"
msgstr "Scelta della lingua"

#: any.pm:1245
#, c-format
msgid "Country / Region"
msgstr "Paese / Regione"

#: any.pm:1246
#, c-format
msgid "Please choose your country"
msgstr "Scegli il tuo paese"

#: any.pm:1248
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ecco la lista completa dei paesi disponibili"

#: any.pm:1249
#, c-format
msgid "Other Countries"
msgstr "Altre nazioni"

#: any.pm:1249 interactive.pm:488 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzato"

#: any.pm:1255
#, c-format
msgid "Input method:"
msgstr "Modalità input:"

#: any.pm:1258
#, c-format
msgid "None"
msgstr "Nessuno"

#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nessuna condivisione"

#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"

#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizzato"

#: any.pm:1343
#, 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 ""
"Vuoi permettere agli utenti di condividere qualcuna delle loro directory?\n"
"Se lo consenti, agli utenti basterà poi utilizzare l'opzione \n"
"\"Condividi\" in Konqueror o Nautilus.\n"
"\n"
"\"Personalizzata\" permette un controllo più specifico per ogni utente.\n"

#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: il classico sistema di condivisione dei file in ambiente Unix, con un "
"limitato supporto per Mac e Windows."

#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: il sistema di condivisione dei file utilizzato in Windows, Mac OS X e "
"molte distribuzioni Linux recenti."

#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Puoi esportare usando NFS o Samba. Scegli quello che preferisci utilizzare."

#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lancia userdrake"

#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Per condividere le directory bisogna appartenere al gruppo \"fileshare\".\n"
"Puoi usare \"userdrake\" per aggiungervi un utente."

#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto. "
"Premi «OK» per fare logout."

#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto."

#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fuso orario"

#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Qual è il fuso orario locale?"

#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Impostazione di data, ora e fuso orario"

#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Qual è l'orario migliore?"

#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (orologio hardware impostato su UTC)"

#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (orologio hardware impostato su ora locale)"

#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Server NTP"

#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"

#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "File locale"

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

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

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

#: authentication.pm:28 authentication.pm:215
#, c-format
msgid "Windows Domain"
msgstr "Dominio Windows"

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

#: authentication.pm:65
#, c-format
msgid "Local file:"
msgstr "File locale:"

#: authentication.pm:65
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
"Usa local per tutte le autenticazioni e le informazioni che l'utente "
"inserisce nel file locale"

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

#: authentication.pm:66
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Dice al computer di utilizzare LDAP per alcune o per tutte le "
"autenticazioni. LDAP raggruppa alcuni tipi di informazioni sulla tua "
"organizzazione."

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

#: authentication.pm:67
#, 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 ""
"Ti permette di gestire un gruppo di computer in un dominio NIS (Network "
"Information Service) con i file per password e gruppi in comune."

#: authentication.pm:68
#, c-format
msgid "Windows Domain:"
msgstr "Dominio Windows:"

#: authentication.pm:68
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind permette al sistema di recuperare le informazioni e di autenticare "
"gli utenti in un dominio Windows."

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

#: authentication.pm:69
#, c-format
msgid "With Kerberos and LDAP for authentication in Active Directory Server "
msgstr "Con Kerberos e LDAP per l'autenticazione nell'Active Directory Server"

#: authentication.pm:106 authentication.pm:140 authentication.pm:159
#: authentication.pm:160 authentication.pm:186 authentication.pm:210
#: authentication.pm:865
#, c-format
msgid " "
msgstr " "

#: authentication.pm:107 authentication.pm:141 authentication.pm:187
#: authentication.pm:211
#, c-format
msgid "Welcome to the Authentication Wizard"
msgstr "Benvenuto nella procedura guidata di autenticazione"

#: authentication.pm:109
#, c-format
msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""
"Hai selezionato l'autenticazione LDAP. Per favore rivedi le seguenti opzioni "
"di configurazione"

#: authentication.pm:111 authentication.pm:166
#, c-format
msgid "LDAP Server"
msgstr "Server LDAP"

#: authentication.pm:112 authentication.pm:167
#, c-format
msgid "Base dn"
msgstr "Base dn"

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

#: authentication.pm:115 authentication.pm:170
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Usa connessione criptata con TLS"

#: authentication.pm:116 authentication.pm:171
#, c-format
msgid "Download CA Certificate "
msgstr "Scarica il certificato CA"

#: authentication.pm:118 authentication.pm:151
#, c-format
msgid "Use Disconnect mode "
msgstr "Utilizza modalità Disconnetti"

#: authentication.pm:119 authentication.pm:172
#, c-format
msgid "Use anonymous BIND "
msgstr "Utilizza BIND anonimo  "

#: authentication.pm:120 authentication.pm:123 authentication.pm:125
#: authentication.pm:129
#, c-format
msgid "  "
msgstr "  "

#: authentication.pm:121 authentication.pm:173
#, c-format
msgid "Bind DN "
msgstr "Bind DN"

#: authentication.pm:122 authentication.pm:174
#, c-format
msgid "Bind Password "
msgstr "Password Bind"

#: authentication.pm:124
#, c-format
msgid "Advanced path for group "
msgstr "Percorso avanzato per il gruppo"

#: authentication.pm:126
#, c-format
msgid "Password base"
msgstr "Password base"

#: authentication.pm:127
#, c-format
msgid "Group base"
msgstr "Gruppo base"

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

#: authentication.pm:143
#, c-format
msgid ""
"You have selected Kerberos 5 authentication. Please review the configuration "
"options below "
msgstr ""
"Hai selezionato l'autenticazione Kerberos 5. Per favore rivedi le seguenti "
"opzioni di configurazione"

#: authentication.pm:145
#, c-format
msgid "Realm "
msgstr "Realm"

#: authentication.pm:147
#, c-format
msgid "KDCs Servers"
msgstr "Server KDC"

#: authentication.pm:149
#, c-format
msgid "Use DNS to locate KDC for the realm"
msgstr "Usa DNS per trovare KDC per realm"

#: authentication.pm:150
#, c-format
msgid "Use DNS to locate realms"
msgstr "Utilizza DNS per trovare i realm"

#: authentication.pm:155
#, c-format
msgid "Use local file for users information"
msgstr "Utilizza il file locale per le informazioni utente"

#: authentication.pm:156
#, c-format
msgid "Use LDAP for users information"
msgstr "Usa LDAP per informazioni sugli utenti"

#: authentication.pm:162
#, c-format
msgid ""
"You have selected Kerberos 5 for authentication, now you must choose the "
"type of users information "
msgstr ""
"Hai selezionato Kerberos 5 per l'autenticazione, adesso devi scegliere il "
"tipo di informazioni utente"

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

#: authentication.pm:189
#, c-format
msgid ""
"You have selected NIS authentication. Please review the configuration "
"options below "
msgstr ""
"Hai selezionato l'autenticazione NIS. Per favore ricontrolla le seguenti "
"opzioni di configurazione"

#: authentication.pm:191
#, c-format
msgid "NIS Domain"
msgstr "Dominio NIS"

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

#: authentication.pm:213
#, c-format
msgid ""
"You have selected Windows Domain authentication. Please review the "
"configuration options below "
msgstr ""
"Hai selezionato l'autenticazione per il dominio Windows. Per favore riguarda "
"le seguenti opzioni di configurazione"

#: authentication.pm:217
#, c-format
msgid "Domain Model "
msgstr "Modello di Dominio"

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

#: authentication.pm:220
#, c-format
msgid "DNS Domain"
msgstr "Dominio DNS"

#: authentication.pm:221
#, c-format
msgid "DC Server"
msgstr "Server DC"

#: authentication.pm:235 authentication.pm:251
#, c-format
msgid "Authentication"
msgstr "Autenticazione"

#: authentication.pm:237
#, c-format
msgid "Authentication method"
msgstr "Metodo autenticazione"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:242
#, c-format
msgid "No password"
msgstr "No password"

#: authentication.pm:263
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Questa password è troppo corta (deve essere almeno di %d caratteri)"

#: authentication.pm:373
#, c-format
msgid "Cannot use broadcast with no NIS domain"
msgstr "Impossibile utilizzare broadcast senza un dominio NIS"

#: authentication.pm:860
#, c-format
msgid "Select file"
msgstr "Seleziona il file"

#: authentication.pm:866
#, c-format
msgid "Domain Windows for authentication : "
msgstr "Dominio Windows per l'autenticazione:"

#: authentication.pm:868
#, c-format
msgid "Domain Admin User Name"
msgstr "Nome utente dell'amministratore di dominio"

#: authentication.pm:869
#, c-format
msgid "Domain Admin Password"
msgstr "Password dell'amministratore di dominio"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:991
#, 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 ""
"Benvenuti nel selezionatore di sistemi operativi!\n"
"\n"
"Scegli un sistema operativo da questo elenco,\n"
"o aspetta che si avvii quello predefinito.\n"
"\n"

#: bootloader.pm:1169
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menu testuale"

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

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

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

#: bootloader.pm:1173
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1257
#, c-format
msgid "not enough room in /boot"
msgstr "spazio insufficiente in /boot"

#: bootloader.pm:1983
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Non puoi installare il bootloader in una partizione %s\n"

#: bootloader.pm:2104
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Devi aggiornare la configurazione del bootloader perché le partizioni hanno "
"cambiato numerazione"

#: bootloader.pm:2117
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Il bootloader non può essere installato correttamente. Devi fare l'avvio di "
"ripristino e scegliere \"%s\""

#: bootloader.pm:2118
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstallazione del bootloader"

#: common.pm:142
#, c-format
msgid "B"
msgstr "B"

#: common.pm:142
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:142
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:142
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:159
#, c-format
msgid "%d minutes"
msgstr "%d minuti"

#: common.pm:161
#, c-format
msgid "1 minute"
msgstr "1 minuto"

#: common.pm:163
#, c-format
msgid "%d seconds"
msgstr "%d secondi"

#: common.pm:393
#, c-format
msgid "command %s missing"
msgstr "manca il comando %s"

#: 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 ""
"WebDAV è un protocollo che permette di montare localmente una directory\n"
"del server web, e di trattarla come un file system locale (purché il web\n"
"server sia configurato come server WebDAV). Se si vuole aggiungere un\n"
"punto di mount WebDAV, basta selezionare \"Nuovo\"."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Nuovo"

#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Smonta"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Esegui mount"

#: diskdrake/dav.pm:65
#, c-format
msgid "Server"
msgstr "Server"

#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:722 diskdrake/interactive.pm:740
#: diskdrake/interactive.pm:744 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Punto di mount"

#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1163 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opzioni"

#: diskdrake/dav.pm:68 interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Remove"
msgstr "Rimuovi"

#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:193 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fatto"

#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299
#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
#: diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002
#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
#: diskdrake/interactive.pm:1499 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 do_pkgs.pm:83
#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
#, c-format
msgid "Error"
msgstr "Errore"

#: diskdrake/dav.pm:86
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Inserisci l'URL del server WebDAV"

#: diskdrake/dav.pm:90
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "L'URL deve iniziare con http:// o https://"

#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:815 diskdrake/interactive.pm:880
#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Attenzione"

#: diskdrake/dav.pm:106
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Sei sicuro di voler cancellare questo punto di mount?"

#: diskdrake/dav.pm:124
#, c-format
msgid "Server: "
msgstr "Server: "

#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1371 diskdrake/interactive.pm:1459
#, c-format
msgid "Mount point: "
msgstr "Punto di mount: "

#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1466
#, c-format
msgid "Options: %s"
msgstr "Opzioni: %s"

#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:301
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:108
#: fs/partitioning_wizard.pm:55 fs/partitioning_wizard.pm:238
#: fs/partitioning_wizard.pm:246 fs/partitioning_wizard.pm:285
#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:496
#: fs/partitioning_wizard.pm:579 fs/partitioning_wizard.pm:582
#, c-format
msgid "Partitioning"
msgstr "Partizionamento"

#: diskdrake/hd_gtk.pm:73
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""
"Clicca su una partizione, scegli il tipo di filesystem e poi scegli cosa fare"

#: diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:1184
#: diskdrake/interactive.pm:1194 diskdrake/interactive.pm:1247
#, c-format
msgid "Read carefully"
msgstr "Leggere con attenzione"

#: diskdrake/hd_gtk.pm:115
#, c-format
msgid "Please make a backup of your data first"
msgstr "Si consiglia di effettuare prima un backup dei propri dati"

#: diskdrake/hd_gtk.pm:116 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Esci"

#: diskdrake/hd_gtk.pm:116
#, c-format
msgid "Continue"
msgstr "Continua"

#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:653
#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
#: ugtk2.pm:936
#, c-format
msgid "Help"
msgstr "Guida"

#: diskdrake/hd_gtk.pm:234
#, 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 ""
"C'è una grossa partizione Microsoft Windows.\n"
"Per prima cosa, ti suggerisco di ridimensionarla\n"
"(fai clic su di essa e poi su \"Ridimensiona\")"

#: diskdrake/hd_gtk.pm:236
#, c-format
msgid "Please click on a partition"
msgstr "Clicca su una partizione"

#: diskdrake/hd_gtk.pm:250 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Dettagli"

#: diskdrake/hd_gtk.pm:299
#, c-format
msgid "No hard disk drives found"
msgstr "Non è stato trovato nessun disco rigido"

#: diskdrake/hd_gtk.pm:330
#, c-format
msgid "Unknown"
msgstr "Sconosciuto"

#: diskdrake/hd_gtk.pm:395
#, c-format
msgid "Ext4"
msgstr "Ext4"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Swap"
msgstr "Swap"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:396 fs/partitioning_wizard.pm:404 services.pm:193
#, c-format
msgid "Other"
msgstr "Altro"

#: diskdrake/hd_gtk.pm:396 diskdrake/interactive.pm:1386
#: fs/partitioning_wizard.pm:404
#, c-format
msgid "Empty"
msgstr "Vuoto"

#: diskdrake/hd_gtk.pm:403
#, c-format
msgid "Filesystem types:"
msgstr "Tipi di filesystem:"

#: diskdrake/hd_gtk.pm:424
#, c-format
msgid "This partition is already empty"
msgstr "Questa partizione è già vuota"

#: diskdrake/hd_gtk.pm:433
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Prima clicca su \"Smonta\""

#: diskdrake/hd_gtk.pm:433
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Usa \"%s\" al suo posto (modalità esperto)"

#: diskdrake/hd_gtk.pm:433 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:639 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Tipo"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose another partition"
msgstr "Scegliere un'altra partizione"

#: diskdrake/interactive.pm:211
#, c-format
msgid "Choose a partition"
msgstr "Scegli una partizione"

#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:382
#: interactive/curses.pm:532
#, c-format
msgid "More"
msgstr "Ancora"

#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
#: diskdrake/interactive.pm:1293
#, c-format
msgid "Confirmation"
msgstr "Conferma"

#: diskdrake/interactive.pm:281
#, c-format
msgid "Continue anyway?"
msgstr "Continuare comunque?"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without saving"
msgstr "Esci senza salvare"

#: diskdrake/interactive.pm:286
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Uscire senza scrivere la tabella delle partizioni?"

#: diskdrake/interactive.pm:294
#, c-format
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Vuoi salvare le modifiche di /etc/fstab?"

#: diskdrake/interactive.pm:301 fs/partitioning_wizard.pm:285
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
"Devi riavviare il sistema per rendere effettive le modifiche alla tabella "
"delle partizioni."

#: diskdrake/interactive.pm:306
#, 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 ""
"Dovresti formattare la partizione %s.\n"
"Altrimenti non verrà assegnato un punto di mount per %s in fstab.\n"
"Vuoi uscire comunque?"

#: diskdrake/interactive.pm:319
#, c-format
msgid "Clear all"
msgstr "Azzerare tutto"

#: diskdrake/interactive.pm:320
#, c-format
msgid "Auto allocate"
msgstr "Partizionare automaticamente"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to normal mode"
msgstr "Passare a modalità normale"

#: diskdrake/interactive.pm:326
#, c-format
msgid "Toggle to expert mode"
msgstr "Passare a modalità esperto"

#: diskdrake/interactive.pm:338
#, c-format
msgid "Hard disk drive information"
msgstr "Informazioni sul disco rigido"

#: diskdrake/interactive.pm:371
#, c-format
msgid "All primary partitions are used"
msgstr "Tutte le partizioni primarie sono in uso"

#: diskdrake/interactive.pm:372
#, c-format
msgid "I cannot add any more partitions"
msgstr "Non posso aggiungere ulteriori partizioni"

#: diskdrake/interactive.pm:373
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Per avere altre partizioni è necessario eliminarne una per poterne poi "
"creare una estesa"

#: diskdrake/interactive.pm:384
#, c-format
msgid "Reload partition table"
msgstr "Ricarica tabella delle partizioni"

#: diskdrake/interactive.pm:391
#, c-format
msgid "Detailed information"
msgstr "Informazioni dettagliate"

#: diskdrake/interactive.pm:407
#, c-format
msgid "View"
msgstr "Mostra"

#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:828
#, c-format
msgid "Resize"
msgstr "Ridimensiona"

#: diskdrake/interactive.pm:413
#, c-format
msgid "Format"
msgstr "Formatta"

#: diskdrake/interactive.pm:415 diskdrake/interactive.pm:965
#, c-format
msgid "Add to RAID"
msgstr "Aggiungi a RAID"

#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:984
#, c-format
msgid "Add to LVM"
msgstr "Aggiungi a LVM"

#: diskdrake/interactive.pm:417
#, c-format
msgid "Use"
msgstr "Utilizza"

#: diskdrake/interactive.pm:419
#, c-format
msgid "Delete"
msgstr "Cancella"

#: diskdrake/interactive.pm:420
#, c-format
msgid "Remove from RAID"
msgstr "Rimuovi da RAID"

#: diskdrake/interactive.pm:421
#, c-format
msgid "Remove from LVM"
msgstr "Rimuovi da LVM"

#: diskdrake/interactive.pm:422
#, c-format
msgid "Remove from dm"
msgstr "Rimuovi dal dm"

#: diskdrake/interactive.pm:423
#, c-format
msgid "Modify RAID"
msgstr "Modifica RAID"

#: diskdrake/interactive.pm:424
#, c-format
msgid "Use for loopback"
msgstr "Usa per loopback"

#: diskdrake/interactive.pm:434
#, c-format
msgid "Create"
msgstr "Creare"

#: diskdrake/interactive.pm:456
#, c-format
msgid "Failed to mount partition"
msgstr "Montaggio della partizione non riuscito"

#: diskdrake/interactive.pm:490 diskdrake/interactive.pm:492
#, c-format
msgid "Create a new partition"
msgstr "Crea una nuova partizione"

#: diskdrake/interactive.pm:494
#, c-format
msgid "Start sector: "
msgstr "Settore iniziale: "

#: diskdrake/interactive.pm:497 diskdrake/interactive.pm:1069
#, c-format
msgid "Size in MB: "
msgstr "Dimensione in MB: "

#: diskdrake/interactive.pm:499 diskdrake/interactive.pm:1070
#, c-format
msgid "Filesystem type: "
msgstr "Tipo di filesystem: "

#: diskdrake/interactive.pm:505
#, c-format
msgid "Preference: "
msgstr "Preferenza: "

#: diskdrake/interactive.pm:508
#, c-format
msgid "Logical volume name "
msgstr "Nome del volume logico "

#: diskdrake/interactive.pm:510
#, c-format
msgid "Encrypt partition"
msgstr "Partizione cifrata"

#: diskdrake/interactive.pm:511
#, c-format
msgid "Encryption key "
msgstr "Chiave di cifratura"

#: diskdrake/interactive.pm:512 diskdrake/interactive.pm:1503
#, c-format
msgid "Encryption key (again)"
msgstr "Chiave di cifratura (conferma)"

#: diskdrake/interactive.pm:524 diskdrake/interactive.pm:1499
#, c-format
msgid "The encryption keys do not match"
msgstr "Le chiavi di cifratura non corrispondono"

#: diskdrake/interactive.pm:525
#, c-format
msgid "Missing encryption key"
msgstr "Chiave di cifratura persa"

#: diskdrake/interactive.pm:545
#, c-format
msgid ""
"You cannot 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 ""
"Non puoi creare una nuova partizione.\n"
"(dato che hai raggiunto il numero massimo di partizioni primarie).\n"
"Prima rimuovi una partizione primaria e crea una partizione estesa."

#: diskdrake/interactive.pm:597
#, c-format
msgid "Remove the loopback file?"
msgstr "Rimuovo il file di loopback?"

#: diskdrake/interactive.pm:620
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver cambiato il tipo della partizione %s, tutti i dati su questa "
"partizione saranno persi"

#: diskdrake/interactive.pm:636
#, c-format
msgid "Change partition type"
msgstr "Cambia il tipo di partizione"

#: diskdrake/interactive.pm:638 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Che filesystem vuoi usare?"

#: diskdrake/interactive.pm:645
#, c-format
msgid "Switching from %s to %s"
msgstr "Passaggio da%s a %s"

#: diskdrake/interactive.pm:680
#, c-format
msgid "Set volume label"
msgstr "Imposta etichetta volume"

#: diskdrake/interactive.pm:682
#, c-format
msgid "Beware, this will be written to disk as soon as you validate!"
msgstr "Attenzione, verrà scritto sul disco non appena lo avrai convalidato!"

#: diskdrake/interactive.pm:683
#, c-format
msgid "Beware, this will be written to disk only after formatting!"
msgstr "Attenzione, verrà scritto sul disco solo dopo la formattazione!"

#: diskdrake/interactive.pm:685
#, c-format
msgid "Which volume label?"
msgstr "Quale etichetta di volume?"

#: diskdrake/interactive.pm:686
#, c-format
msgid "Label:"
msgstr "Etichetta:"

#: diskdrake/interactive.pm:707
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Dove devo montare il file loopback %s?"

#: diskdrake/interactive.pm:708
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Dove devo montare il dispositivo %s?"

#: diskdrake/interactive.pm:713
#, c-format
msgid ""
"Cannot unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Impossibile rimuovere il punto di mount perché questa partizione è usata per "
"il loopback.\n"
"Prima rimuovi il loopback"

#: diskdrake/interactive.pm:743
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Dove devo montare %s?"

#: diskdrake/interactive.pm:773 diskdrake/interactive.pm:869
#: fs/partitioning_wizard.pm:131 fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing"
msgstr "Ridimensionamento"

#: diskdrake/interactive.pm:773
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Calcolo dei limiti del filesystem FAT"

#: diskdrake/interactive.pm:815
#, c-format
msgid "This partition is not resizeable"
msgstr "Questa partizione non è ridimensionabile"

#: diskdrake/interactive.pm:820
#, c-format
msgid "All data on this partition should be backed up"
msgstr "Dovresti fare una copia di tutti i dati presenti su questa partizione"

#: diskdrake/interactive.pm:822
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver ridimensionato la partizione %s, tutti i dati su questa partizione "
"saranno persi"

#: diskdrake/interactive.pm:829
#, c-format
msgid "Choose the new size"
msgstr "Scegliere la nuova dimensione"

#: diskdrake/interactive.pm:830
#, c-format
msgid "New size in MB: "
msgstr "Nuova dimensione in MB: "

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

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

#: diskdrake/interactive.pm:880 fs/partitioning_wizard.pm:215
#, 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 ""
"Per assicurare l'integrità dei dati dopo aver ridimensionato partizioni,\n"
"saranno eseguiti dei controlli sul filesystem al prossimo avvio di Microsoft "
"Windows®"

#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1494
#, c-format
msgid "Filesystem encryption key"
msgstr "Chiave di cifratura del filesystem"

#: diskdrake/interactive.pm:947
#, c-format
msgid "Enter your filesystem encryption key"
msgstr "Fornisci la chiave di cifratura del filesystem"

#: diskdrake/interactive.pm:948 diskdrake/interactive.pm:1502
#, c-format
msgid "Encryption key"
msgstr "Chiave di cifratura"

#: diskdrake/interactive.pm:955
#, c-format
msgid "Invalid key"
msgstr "Chiave non valida"

#: diskdrake/interactive.pm:965
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Scegli un RAID esistente a cui aggiungere"

#: diskdrake/interactive.pm:967 diskdrake/interactive.pm:986
#, c-format
msgid "new"
msgstr "nuovo"

#: diskdrake/interactive.pm:984
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Scegliere un LVM esistente a cui aggiungere"

#: diskdrake/interactive.pm:996 diskdrake/interactive.pm:1005
#, c-format
msgid "LVM name"
msgstr "Nome LVM"

#: diskdrake/interactive.pm:997
#, c-format
msgid "Enter a name for the new LVM volume group"
msgstr "Immetti un nome per il nuovo gruppo di volumi LVM"

#: diskdrake/interactive.pm:1002
#, c-format
msgid "\"%s\" already exists"
msgstr "\"%s\" esiste già"

#: diskdrake/interactive.pm:1034
#, 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 ""
"Il volume fisico %s è ancora in uso.\n"
"Vuoi spostare su altri volumi le estensioni fisiche in uso su questo volume?"

#: diskdrake/interactive.pm:1036
#, c-format
msgid "Moving physical extents"
msgstr "Spostamento delle estensioni fisiche"

#: diskdrake/interactive.pm:1054
#, c-format
msgid "This partition cannot be used for loopback"
msgstr "Questa partizione non può essere usata per il loopback"

#: diskdrake/interactive.pm:1067
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:1068
#, c-format
msgid "Loopback file name: "
msgstr "Nome file loopback: "

#: diskdrake/interactive.pm:1073
#, c-format
msgid "Give a file name"
msgstr "Fornisci un nome di file"

#: diskdrake/interactive.pm:1076
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "File già usato da un altro loopback, devi indicarne un altro"

#: diskdrake/interactive.pm:1077
#, c-format
msgid "File already exists. Use it?"
msgstr "Il file esiste già. Lo uso?"

#: diskdrake/interactive.pm:1109 diskdrake/interactive.pm:1112
#, c-format
msgid "Mount options"
msgstr "Opzioni di mount"

#: diskdrake/interactive.pm:1119
#, c-format
msgid "Various"
msgstr "Vari"

#: diskdrake/interactive.pm:1165
#, c-format
msgid "device"
msgstr "dispositivo"

#: diskdrake/interactive.pm:1166
#, c-format
msgid "level"
msgstr "livello"

#: diskdrake/interactive.pm:1167
#, c-format
msgid "chunk size in KiB"
msgstr "dimensione frammento in KiB"

#: diskdrake/interactive.pm:1185
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Attenzione: questa operazione è pericolosa."

#: diskdrake/interactive.pm:1200
#, c-format
msgid "Partitioning Type"
msgstr "Tipo di partizionamento"

#: diskdrake/interactive.pm:1200
#, c-format
msgid "What type of partitioning?"
msgstr "Quale tipo di partizionamento?"

#: diskdrake/interactive.pm:1238
#, c-format
msgid "You'll need to reboot before the modification can take effect"
msgstr "Devi riavviare affinché questa modifica abbia effetto"

#: diskdrake/interactive.pm:1247
#, c-format
msgid "Partition table of drive %s is going to be written to disk"
msgstr ""
"La tabella delle partizioni del dispositivo %s viene ora scritta su disco"

#: diskdrake/interactive.pm:1266 fs/format.pm:107 fs/format.pm:114
#, c-format
msgid "Formatting partition %s"
msgstr "Formattazione della partizione %s"

#: diskdrake/interactive.pm:1279
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver formattato la partizione %s, tutti i dati su questa partizione "
"saranno persi"

#: diskdrake/interactive.pm:1293 fs/partitioning.pm:48
#, c-format
msgid "Check for bad blocks?"
msgstr "Controlla per eventuali blocchi danneggiati?"

#: diskdrake/interactive.pm:1308
#, c-format
msgid "Move files to the new partition"
msgstr "Sposta i file sulla nuova partizione"

#: diskdrake/interactive.pm:1308
#, c-format
msgid "Hide files"
msgstr "Nascondi i file"

#: diskdrake/interactive.pm:1309
#, 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 ""
"La directory %s contiene già dei dati\n"
"(%s)\n"
"\n"
"Potete scegliere di spostare i file nella partizione che sarà montata li o "
"lasciarli dove sono (cosa che comporta nasconderli con il contenuto della "
"partizione montata)"

#: diskdrake/interactive.pm:1324
#, c-format
msgid "Moving files to the new partition"
msgstr "Sto spostando i file sulla nuova partizione"

#: diskdrake/interactive.pm:1328
#, c-format
msgid "Copying %s"
msgstr "Copia di %s in corso"

#: diskdrake/interactive.pm:1332
#, c-format
msgid "Removing %s"
msgstr "Sto cancellando %s"

#: diskdrake/interactive.pm:1346
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partizione %s adesso è nota come %s"

#: diskdrake/interactive.pm:1347
#, c-format
msgid "Partitions have been renumbered: "
msgstr "È cambiata la numerazione delle partizioni: "

#: diskdrake/interactive.pm:1372 diskdrake/interactive.pm:1443
#, c-format
msgid "Device: "
msgstr "Dispositivo: "

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

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

#: diskdrake/interactive.pm:1375
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettera del drive DOS: %s (solo una supposizione)\n"

#: diskdrake/interactive.pm:1379 diskdrake/interactive.pm:1388
#: diskdrake/interactive.pm:1462
#, c-format
msgid "Type: "
msgstr "Tipo: "

#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1447
#, c-format
msgid "Name: "
msgstr "Nome: "

#: diskdrake/interactive.pm:1390
#, c-format
msgid "Start: sector %s\n"
msgstr "Inizio: settore %s\n"

#: diskdrake/interactive.pm:1391
#, c-format
msgid "Size: %s"
msgstr "Dimensione: %s"

#: diskdrake/interactive.pm:1393
#, c-format
msgid ", %s sectors"
msgstr ", %s settori"

#: diskdrake/interactive.pm:1395
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Da cilindro %d a %d\n"

#: diskdrake/interactive.pm:1396
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Numero di estensioni logiche: %d\n"

#: diskdrake/interactive.pm:1397
#, c-format
msgid "Formatted\n"
msgstr "Formattato\n"

#: diskdrake/interactive.pm:1398
#, c-format
msgid "Not formatted\n"
msgstr "Non formattato\n"

#: diskdrake/interactive.pm:1399
#, c-format
msgid "Mounted\n"
msgstr "Montato\n"

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

#: diskdrake/interactive.pm:1402
#, c-format
msgid "Encrypted"
msgstr "Cifrato"

#: diskdrake/interactive.pm:1404
#, c-format
msgid " (mapped on %s)"
msgstr " (mappato su %s)"

#: diskdrake/interactive.pm:1405
#, c-format
msgid " (to map on %s)"
msgstr " (da mappare su %s)"

#: diskdrake/interactive.pm:1406
#, c-format
msgid " (inactive)"
msgstr " (inattivo)"

#: diskdrake/interactive.pm:1413
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"File di loopback:\n"
"   %s\n"

#: diskdrake/interactive.pm:1414
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Partizione di boot predefinita\n"
"    (per boot MS-DOS, non per lilo)\n"

#: diskdrake/interactive.pm:1416
#, c-format
msgid "Level %s\n"
msgstr "Livello %s\n"

#: diskdrake/interactive.pm:1417
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Dimensione frammento %d in KiB\n"

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

#: diskdrake/interactive.pm:1420
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome file di loopback: %s"

#: diskdrake/interactive.pm:1423
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Molto probabilmente questa partizione\n"
"è una partizione Driver, è meglio\n"
"non toccarla.\n"

#: diskdrake/interactive.pm:1426
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Questa speciale partizione di boot\n"
"viene utilizzata per effettuare\n"
"il dual-boot del sistema.\n"

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

#: diskdrake/interactive.pm:1444
#, c-format
msgid "Read-only"
msgstr "Solo lettura"

#: diskdrake/interactive.pm:1445
#, c-format
msgid "Size: %s\n"
msgstr "Dimensione: %s\n"

#: diskdrake/interactive.pm:1446
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindri, %s testine, %s settori\n"

#: diskdrake/interactive.pm:1448
#, c-format
msgid "Medium type: "
msgstr "Tipo di supporto: "

#: diskdrake/interactive.pm:1449
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dischi LVM %s\n"

#: diskdrake/interactive.pm:1450
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo tabella delle partizioni: %s\n"

#: diskdrake/interactive.pm:1451
#, c-format
msgid "on channel %d id %d\n"
msgstr "sul canale %d id %d\n"

#: diskdrake/interactive.pm:1495
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Scegliere la chiave di cifratura del filesystem"

#: diskdrake/interactive.pm:1498
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Questa chiave di cifratura è troppo semplice (deve essere lunga almeno %d "
"caratteri)"

#: diskdrake/interactive.pm:1505
#, c-format
msgid "Encryption algorithm"
msgstr "Algoritmo di cifratura"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Cambia tipo"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:550
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Annulla"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Cannot login using username %s (bad password?)"
msgstr "Impossibile accedere usando il nome utente %s (password errata?)"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Serve l'autenticazione del dominio"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Quale nome utente"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Un altro"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Per favore inserisci il tuo nome utente, la password e il nome di dominio "
"per accedere a questo host."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Nome utente"

#: diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Dominio"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Ricerca i server"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search for new servers"
msgstr "Cerca nuovi server"

#: 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 "Il pacchetto %s deve essere installato. Lo installo?"

#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "È stato impossibile installare il pacchetto %s!"

#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Manca il pacchetto %s, che è indispensabile"

#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "I seguenti pacchetti devono essere installati:\n"

#: do_pkgs.pm:242
#, c-format
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."

#: do_pkgs.pm:287 pkgs.pm:285
#, c-format
msgid "Removing packages..."
msgstr "Rimozione i pacchetti in corso..."

#: fs/any.pm:18
#, 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 ""
"Si è verificato un errore perché non è stata trovata alcuna unità valida su "
"cui creare nuovi filesystem. Per favore controlla l'hardware per stabilire "
"la causa di questo problema."

#: fs/any.pm:76 fs/partitioning_wizard.pm:64
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Occorre una partizione FAT montata su /boot/efi"

#: fs/format.pm:111
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sto creando e formattando il file %s"

#: fs/format.pm:130
#, c-format
msgid "I do not know how to set label on %s with type %s"
msgstr "Impossibile applicare a %s un'etichetta nel formato %s"

#: fs/format.pm:142
#, c-format
msgid "setting label on %s failed, is it formatted?"
msgstr "non è riuscita l'etichettatura di %s, è stato formattato?"

#: fs/format.pm:183
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr "Impossibile formattare %s nel formato %s"

#: fs/format.pm:188 fs/format.pm:190
#, c-format
msgid "%s formatting of %s failed"
msgstr "formattazione %s di %s fallita"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Mount circolari %s\n"

#: fs/mount.pm:85
#, c-format
msgid "Mounting partition %s"
msgstr "Sto montando la partizione %s"

#: fs/mount.pm:86
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non è riuscito"

#: fs/mount.pm:91 fs/mount.pm:108
#, c-format
msgid "Checking %s"
msgstr "Sto controllando %s"

#: fs/mount.pm:125 partition_table.pm:422
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"

#: fs/mount.pm:140
#, c-format
msgid "Enabling swap partition %s"
msgstr "Attivazione della partizione di swap %s"

#: fs/mount_options.pm:113
#, c-format
msgid "Enable POSIX Access Control Lists"
msgstr "Attiva le liste di controllo dell'accesso POSIX"

#: fs/mount_options.pm:115
#, c-format
msgid "Flush write cache on file close"
msgstr "Svuotare la cache di scrittura nel chiudere i file"

#: fs/mount_options.pm:117
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr "Attivare le quote per i gruppi e imporre eventuali limiti"

#: fs/mount_options.pm:119
#, c-format
msgid ""
"Do not update inode access times on this filesystem\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Non aggiornare i tempi di accesso agli inode su questo filesystem\n"
"(p.e., per accessi più rapidi al news spool e quindi per velocizzare i "
"server di news)."

#: fs/mount_options.pm:122
#, 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 ""
"Aggiornare più efficientemente i tempi di accesso agli inode su questo "
"filesystem\n"
"(p.e., per accessi più rapidi al news spool e quindi server di news più "
"veloci)."

#: fs/mount_options.pm:125
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the filesystem to be mounted)."
msgstr ""
"Può essere montato solo esplicitamente (es.,\n"
"l'opzione -a non farà montare il filesystem)."

#: fs/mount_options.pm:128
#, c-format
msgid "Do not interpret character or block special devices on the filesystem."
msgstr "Non interpretare caratteri o dispositivi speciali nel filesystem."

#: fs/mount_options.pm:130
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"filesystem. This option might be useful for a server that has filesystems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Non permettere l'esecuzione di nessun binario nel filesystem montato.\n"
"Questa opzione può essere utile per un server che ha filesystem contententi "
"binari per archittetture diverse dalla sua."

#: fs/mount_options.pm:134
#, 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 ""
"Non consente che i bit set-user-identifier o set-group-identifier\n"
"abbiano effetto. (Ciò sembrerebbe sicuro, ma è piuttosto rischioso\n"
"se hai installato suidperl(1).)"

#: fs/mount_options.pm:138
#, c-format
msgid "Mount the filesystem read-only."
msgstr "Monta il filesystem in modalità sola-lettura."

#: fs/mount_options.pm:140
#, c-format
msgid "All I/O to the filesystem should be done synchronously."
msgstr "Tutti gli I/O del filesystem dovrebbe essere fatti in modo sincrono."

#: fs/mount_options.pm:142
#, c-format
msgid "Allow every user to mount and umount the filesystem."
msgstr "Permetti a tutti gli utenti di montare e smontare il filesystem."

#: fs/mount_options.pm:144
#, c-format
msgid "Allow an ordinary user to mount the filesystem."
msgstr "Permetti a un utente normale di montare il filesystem."

#: fs/mount_options.pm:146
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr "Attivare le quote per gli utenti e imporre eventuali limiti"

#: fs/mount_options.pm:148
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Supporto attributi estesi per l'\"utente.\" "

#: fs/mount_options.pm:150
#, c-format
msgid "Give write access to ordinary users"
msgstr "Permetti agli utenti normali di accedere in scrittura"

#: fs/mount_options.pm:152
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Permetti agli utenti normali di accedere solo per leggere"

#: fs/mount_point.pm:82
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto di mount doppio: %s"

#: fs/mount_point.pm:97
#, c-format
msgid "No partition available"
msgstr "Nessuna partizione disponibile"

#: fs/mount_point.pm:100
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Controllo delle partizioni per trovare i punti di mount"

#: fs/mount_point.pm:107
#, c-format
msgid "Choose the mount points"
msgstr "Scegli i punti di mount"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Scegliere le partizioni da formattare"

#: 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 ""
"Errori nella verifica del filesystem %s. Vuoi riparare gli errori? "
"(attenzione, si potrebbero perdere dei dati)"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Swap insufficiente per completare l'installazione.\n"
"Per favore, aumentane le dimensioni"

#: fs/partitioning_wizard.pm:55
#, c-format
msgid ""
"You must have a root partition.\n"
"To accomplish this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Devi avere una partizione radice.\n"
"Per fare questo, crea una partizione (o fai clic su una esistente).\n"
"Quindi fai clic sul pulsante ``Punto di Mount'' e impostalo su `/'"

#: fs/partitioning_wizard.pm:61
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Manca una partizione swap\n"
"\n"
"Continuo comunque?"

#: fs/partitioning_wizard.pm:95
#, c-format
msgid "Use free space"
msgstr "Usa lo spazio libero"

#: fs/partitioning_wizard.pm:97
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Non c'è abbastanza spazio libero per creare nuove partizioni"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "Use existing partitions"
msgstr "Usa partizioni esistenti"

#: fs/partitioning_wizard.pm:107
#, c-format
msgid "There is no existing partition to use"
msgstr "Non esiste già una partizione da usare"

#: fs/partitioning_wizard.pm:131
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Sto calcolando la dimensione della partizione Microsoft Windows®"

#: fs/partitioning_wizard.pm:167
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Utilizza lo spazio libero della partizione Windows"

#: fs/partitioning_wizard.pm:171
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Quale partizione vuoi ridimensionare?"

#: fs/partitioning_wizard.pm:174
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the %s installation."
msgstr ""
"La tua partizione Microsoft Windows® è troppo frammentata. Riavvia il "
"computer sotto Microsoft Windows®, esegui l'utilità ``defrag'', quindi "
"riavvia l'installazione di %s."

#: fs/partitioning_wizard.pm:182
#, 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 ""
"ATTENZIONE!\n"
"\n"
"\n"
"DrakX ora ridimensionerà la partizione Windows.\n"
"\n"
"\n"
"Sii prudente: questa operazione è pericolosa. Se non lo hai già fatto, devi "
"uscire dall'installazione e lanciare \"chkdsk c:\" da riga di comando sotto "
"Windows (attenzione, l'uso del comando grafico \"scandisk\" non è "
"sufficiente. Devi assolutamente lanciare \"chkdsk\" da linea di comando!). "
"Se vuoi lancia anche defrag. Poi puoi riavviare l'installazione. È "
"consigliato anche un backup dei dati.\n"
"\n"
"\n"
"Quando sei sicuro, premi %s."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:191 fs/partitioning_wizard.pm:559
#: interactive.pm:549 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Avanti"

#: fs/partitioning_wizard.pm:197
#, c-format
msgid "Partitionning"
msgstr "Partizionamento"

#: fs/partitioning_wizard.pm:197
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Quanto spazio devo lasciare per Microsoft Windows® sulla partizione %s?"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Size"
msgstr "Dimensione"

#: fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Sto ridimensionando la partizione Microsoft Windows®"

#: fs/partitioning_wizard.pm:212
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ridimensionamento FAT fallito: %s"

#: fs/partitioning_wizard.pm:228
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Non c'è una partizione FAT da ridimensionare\n"
"(o non basta lo spazio disponibile)"

#: fs/partitioning_wizard.pm:233
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Rimuovi Microsoft Windows®"

#: fs/partitioning_wizard.pm:233
#, c-format
msgid "Erase and use entire disk"
msgstr "Cancella e utilizza l'intero disco"

#: fs/partitioning_wizard.pm:237
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "Hai più di un disco rigido, quale deve usare l'installer?"

#: fs/partitioning_wizard.pm:245 fsedit.pm:634
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TUTTE le partizioni esistenti sul disco %s (NB. i dati contenuti verranno "
"persi)"

#: fs/partitioning_wizard.pm:255
#, c-format
msgid "Custom disk partitioning"
msgstr "Partizionamento personalizzato"

#: fs/partitioning_wizard.pm:261
#, c-format
msgid "Use fdisk"
msgstr "Usa fdisk"

#: fs/partitioning_wizard.pm:264
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Adesso puoi partizionare %s\n"
"Alla fine, ricordati di salvare usando \"w\""

#: fs/partitioning_wizard.pm:403
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"

#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:579
#, c-format
msgid "I cannot find any room for installing"
msgstr "Non c'è spazio per l'installazione"

#: fs/partitioning_wizard.pm:442 fs/partitioning_wizard.pm:586
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'assistente per il partizionamento di DrakX ha trovato le seguenti "
"soluzioni:"

#: fs/partitioning_wizard.pm:512
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Questo è il contenuto del disco"

#: fs/partitioning_wizard.pm:596
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizionamento fallito: %s"

#: fs/type.pm:389
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Non puoi usare JFS per le partizioni più piccole di 16 MB"

#: fs/type.pm:390
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Non puoi usare ReiserFS per partizioni più piccole di 32 MB"

#: fsedit.pm:24
#, c-format
msgid "simple"
msgstr "semplice"

#: fsedit.pm:28
#, c-format
msgid "with /usr"
msgstr "con /usr"

#: fsedit.pm:33
#, c-format
msgid "server"
msgstr "server"

#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "È stato rilevato un BIOS software RAID sui dischi %s. Attivarlo?"

#: fsedit.pm:247
#, c-format
msgid ""
"I cannot 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 ""
"Non riesco a leggere la tabella delle partizioni del dispositivo %s, è "
"troppo corrotta :(\n"
"L'altra soluzione è di non permettere a DrakX di modificare la tabella delle "
"partizioni.\n"
"(l'errore è %s)\n"
"\n"
"Vuoi perdere tutte le partizioni?\n"

#: fsedit.pm:427
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "I punti di mount devono iniziare con /"

#: fsedit.pm:428
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Il nome dei punti di mount dovrebbe contenere solo lettere e numeri"

#: fsedit.pm:429
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "C'è già una partizione con punto di mount %s\n"

#: fsedit.pm:434
#, 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 separate /boot partition"
msgstr ""
"Hai selezionato una partizione software RAID come root (/).\n"
"Nessun bootloader è in grado di gestirla senza una partizione /boot.\n"
"Per favore, aggiungi una partizione /boot separata."

#: fsedit.pm:440
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
"Versione dei metadata non supportata per una partizione boot. Per favore, "
"aggiungi una partizione /boot separata."

#: fsedit.pm:448
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
"È stata selezionata una partizione RAID software come boot (/).\n"
"Nessun bootloader può gestirla."

#: fsedit.pm:452
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Versione dei metadati non utilizzabile per una partizione di boot."

#: fsedit.pm:459
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a separate /boot partition"
msgstr ""
"Hai selezionato una partizione cifrata come root. (/).\n"
"Nessun bootloader è in grado di gestirla senza una partizione /boot.\n"
"Per favore, aggiungi una partizione /boot separata."

#: fsedit.pm:465 fsedit.pm:485
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Non puoi usare un filesystem cifrato per il punto di mount %s"

#: fsedit.pm:469
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Non puoi usare il Volume Logico LVM per il punto di mount %s  perché occupa "
"volumi fisici"

#: fsedit.pm:471
#, 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 separate /boot partition first"
msgstr ""
"Hai selezionato il Volume Logico LVM come root (/).\n"
"Il bootloader non è in grado di gestirlo quando il volume occupa volumi "
"fisici.\n"
"Dovresti prima creare una partizione /boot separata"

#: fsedit.pm:475 fsedit.pm:477
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Questa directory dovrebbe rimanere all'interno del filesystem root"

#: fsedit.pm:479 fsedit.pm:481 fsedit.pm:483
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"È richiesto un vero filesystem (ext2/3/4, reiserfs, xfs o jfs) per questo "
"punto di mount\n"

#: fsedit.pm:550
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Non c'è abbastanza spazio libero per l'allocazione automatica"

#: fsedit.pm:552
#, c-format
msgid "Nothing to do"
msgstr "Nulla da fare"

#: harddrake/data.pm:62
#, c-format
msgid "SATA controllers"
msgstr "Controller SATA"

#: harddrake/data.pm:71
#, c-format
msgid "RAID controllers"
msgstr "Controller RAID"

#: harddrake/data.pm:81
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Controller (E)IDE/ATA"

#: harddrake/data.pm:92
#, c-format
msgid "Card readers"
msgstr "Lettori di schede"

#: harddrake/data.pm:101
#, c-format
msgid "Firewire controllers"
msgstr "Controller firewire"

#: harddrake/data.pm:110
#, c-format
msgid "PCMCIA controllers"
msgstr "Controller PCMCIA"

#: harddrake/data.pm:119
#, c-format
msgid "SCSI controllers"
msgstr "Controller SCSI"

#: harddrake/data.pm:128
#, c-format
msgid "USB controllers"
msgstr "Controller USB"

#: harddrake/data.pm:137
#, c-format
msgid "USB ports"
msgstr "Porte USB"

#: harddrake/data.pm:146
#, c-format
msgid "SMBus controllers"
msgstr "Controller SMBus"

#: harddrake/data.pm:155
#, c-format
msgid "Bridges and system controllers"
msgstr "Bridge e controller di sistema"

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Floppy"

#: harddrake/data.pm:177
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:193
#, c-format
msgid "Hard Disk"
msgstr "Disco"

#: harddrake/data.pm:203
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dispositivi di archiviazione di massa USB"

#: harddrake/data.pm:212
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:222
#, c-format
msgid "CD/DVD burners"
msgstr "Masterizzatori CD/DVD"

#: harddrake/data.pm:232
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:242
#, c-format
msgid "Tape"
msgstr "Nastro"

#: harddrake/data.pm:253
#, c-format
msgid "AGP controllers"
msgstr "Controller AGP"

#: harddrake/data.pm:262
#, c-format
msgid "Videocard"
msgstr "Scheda video"

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

#: harddrake/data.pm:279
#, c-format
msgid "Tvcard"
msgstr "Scheda TV"

#: harddrake/data.pm:289
#, c-format
msgid "Other MultiMedia devices"
msgstr "Altri dispositivi multimediali"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Scheda audio"

#: harddrake/data.pm:312
#, c-format
msgid "Webcam"
msgstr "Webcam"

#: harddrake/data.pm:327
#, c-format
msgid "Processors"
msgstr "Processori"

#: harddrake/data.pm:337
#, c-format
msgid "ISDN adapters"
msgstr "Dispositivi ISDN"

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

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

#: harddrake/data.pm:366
#, c-format
msgid "ATM network cards"
msgstr "Schede di rete ATM"

#: harddrake/data.pm:375
#, c-format
msgid "WAN network cards"
msgstr "Schede di rete WAN"

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

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr "Scheda ethernet"

#: harddrake/data.pm:410
#, c-format
msgid "Modem"
msgstr "Modem"

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

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Memoria"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Stampante"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:455
#, c-format
msgid "Game port controllers"
msgstr "Controller per porta giochi"

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr "Joystick"

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Tastiera"

#: harddrake/data.pm:488
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tavoletta grafica e touchscreen"

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Mouse"

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

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

#: harddrake/data.pm:529
#, c-format
msgid "Scanner"
msgstr "Scanner"

#: harddrake/data.pm:540
#, c-format
msgid "Unknown/Others"
msgstr "Sconosciuto/Altri"

#: harddrake/data.pm:570
#, c-format
msgid "cpu # "
msgstr "CPU n. "

#: harddrake/sound.pm:270
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Bisogna attendere, ... sto applicando la configurazione"

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

#: harddrake/sound.pm:336
#, c-format
msgid "Use Glitch-Free mode"
msgstr "Utilizza modalità Glitch-Free"

#: harddrake/sound.pm:342
#, c-format
msgid "Reset sound mixer to default values"
msgstr "Ripristina i valori predefiniti per il mixer audio"

#: harddrake/sound.pm:347
#, c-format
msgid "Troubleshooting"
msgstr "Risoluzione problemi"

#: harddrake/sound.pm:354
#, c-format
msgid "No alternative driver"
msgstr "Non esiste un driver alternativo"

#: harddrake/sound.pm:355
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Non esiste nessun altro driver OSS/ALSA conosciuto per questa scheda audio"
"(%s), che attualmente usa \"%s\""

#: harddrake/sound.pm:362
#, c-format
msgid "Sound configuration"
msgstr "Configurazione del suono"

#: harddrake/sound.pm:364
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Qui è possibile scegliere un driver alternativo (OSS o ALSA) per la scheda "
"audio (%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:369
#, c-format
msgid ""
"\n"
"\n"
"Your card currently uses the %s\"%s\" driver (the default driver for your "
"card is \"%s\")"
msgstr ""
"\n"
"\n"
"La tua scheda attualmente usa il driver %s \"%s\" (il driver predefinito per "
"la tua scheda è \"%s\")"

#: harddrake/sound.pm:371
#, 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 ""
"OSS (Open Sound System) è stata la prima API sonora. Si tratta di una API "
"sonora indipendente dal sistema operativo (è disponibile sulla maggior parte "
"dei sistemi UNIX(tm)), ma è un'API estremamente essenziale e limitata.\n"
"Inoltre, i driver OSS reinventano tutti la ruota.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) è un'architettura modulare che\n"
"supporta un'ampia gamma di ISA, USB e schede PCI.\n"
"\n"
"Fornisce anche una API molto più sofisticata rispetto a OSS.\n"
"\n"
"Per usare alsa, si possono utilizzare:\n"
"- la vecchia API compatibile con OSS\n"
"- la nuova API ALSA che fornisce molte funzionalità avanzate, ma richiede "
"l'utilizzo della libreria ALSA.\n"

#: harddrake/sound.pm:385 harddrake/sound.pm:468
#, c-format
msgid "Driver:"
msgstr "Driver:"

#: harddrake/sound.pm:399
#, 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 ""
"Il vecchio driver \"%s \" è sulla lista nera.\n"
"\n"
"È stato riferito che, quando viene fermato, può creare problemi al kernel.\n"
"\n"
"Il nuovo driver \"%s\"sarà utilizzabile solo dopo il prossimo riavvio."

#: harddrake/sound.pm:407
#, c-format
msgid "No open source driver"
msgstr "Nessun driver open source"

#: harddrake/sound.pm:408
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Non esiste nessun driver libero per questa scheda audio(%s), ma ce n'è uno "
"commerciale a \"%s\""

#: harddrake/sound.pm:411
#, c-format
msgid "No known driver"
msgstr "Nessun driver conosciuto"

#: harddrake/sound.pm:412
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Non esistono driver conosciuti per questa scheda audio (%s)"

#: harddrake/sound.pm:427
#, c-format
msgid "Sound troubleshooting"
msgstr "Risoluzione problemi al suono"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:430
#, 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 are 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 ""
"Un controllo classico in caso di problemi audio è lanciare questi comandi:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" ti dice il driver predefinito per la "
"tua scheda\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" ti dice il driver utilizzato ora\n"
"\n"
"- \"/sbin/lsmod\" ti permette di controllare se il modulo (driver) è\n"
"caricato o no\n"
"\n"
"- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\" ti "
"dicono\n"
"se i servizi sound e alsa sono configurati per funzionare all'initlevel 3\n"
"\n"
"- \"aumix -q\" ti dice se il volume del suono è azzerato o no\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" ti dice quale programma sta usando la scheda\n"
"audio.\n"

#: harddrake/sound.pm:457
#, c-format
msgid "Let me pick any driver"
msgstr "Scelta di un driver"

#: harddrake/sound.pm:460
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Scelta arbitraria d'un driver..."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:463
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one from the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Se conosci davvero quale driver sia il più adatto per la tua scheda, "
"scegline uno dalla lista sotto.\n"
"\n"
"Il driver attuale per la tua scheda audio \"%s\" è \"%s\" "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Riconoscimento automatico"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Sconosciuto|Generico"

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

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

#: 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 ""
"Per la maggior parte delle schede TV moderne, il modulo bttv del kernel GNU/"
"Linux rileva automaticamente i parametri corretti.\n"
"Se la tua scheda non è stata riconosciuta correttamente, puoi forzare il "
"tipo di scheda e il tuner qua. Se necessario, devi solamente selezionare i "
"parametri della tua scheda TV."

#: harddrake/v4l.pm:478
#, c-format
msgid "Card model:"
msgstr "Tipo di scheda:"

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

#: interactive.pm:128 interactive.pm:549 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "OK"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "Yes"
msgstr "Sì"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "No"
msgstr "No"

#: interactive.pm:262
#, c-format
msgid "Choose a file"
msgstr "Scegli un file"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Add"
msgstr "Aggiungi"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Modify"
msgstr "Modifica"

#: interactive.pm:549 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Finisci"

#: interactive.pm:550 interactive/curses.pm:267 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Indietro"

#: interactive/curses.pm:576 ugtk2.pm:872
#, c-format
msgid "No file chosen"
msgstr "Nessun file selezionato"

#: interactive/curses.pm:580 ugtk2.pm:876
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "È stata selezionata una directory, non un file"

#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such directory"
msgstr "Directory non trovata"

#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "File non trovato"

#: interactive/gtk.pm:592
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Attenzione, CapsLock è attivo"

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Scelta non valida, riprova\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "La tua scelta? (predefinito %s) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Voci che dovrai riempire:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La tua scelta? (0/1, predefinito \"%s\") "

#: interactive/stdio.pm:97
#, c-format
msgid "Button `%s': %s"
msgstr "Pulsante \"%s\"%s"

#: interactive/stdio.pm:98
#, c-format
msgid "Do you want to click on this button?"
msgstr "Vuoi cliccare su questo pulsante?"

#: interactive/stdio.pm:110
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Cosa scegli? (predefinito \"%s\"%s) "

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

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Ci sono molte cose fra cui scegliere (%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 ""
"Per favore, scegliere il primo numero del gruppo di 10 che vuoi\n"
"modificare, oppure premi Invio per continuare.\n"
"Cosa hai scelto? "

#: interactive/stdio.pm:144
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Attenzione, un'etichetta è cambiata:\n"
"%s"

#: interactive/stdio.pm:151
#, c-format
msgid "Re-submit"
msgstr "Riproporre"

#. -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:203
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:220
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:221 timezone.pm:228
#, c-format
msgid "United Arab Emirates"
msgstr "Emirati Arabi Uniti"

#: lang.pm:222
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"

#: lang.pm:223
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua e Barbuda"

#: lang.pm:224
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:225
#, c-format
msgid "Albania"
msgstr "Albania"

#: lang.pm:226
#, c-format
msgid "Armenia"
msgstr "Armenia"

#: lang.pm:227
#, c-format
msgid "Netherlands Antilles"
msgstr "Antille olandesi"

#: lang.pm:228
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:229
#, c-format
msgid "Antarctica"
msgstr "Antartide"

#: lang.pm:230 timezone.pm:273
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: lang.pm:231
#, c-format
msgid "American Samoa"
msgstr "Samoa Americana"

#: lang.pm:232 mirror.pm:12 timezone.pm:231
#, c-format
msgid "Austria"
msgstr "Austria"

#: lang.pm:233 mirror.pm:11 timezone.pm:269
#, c-format
msgid "Australia"
msgstr "Australia"

#: lang.pm:234
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:235
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"

#: lang.pm:236
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia Erzegovina"

#: lang.pm:237
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:238 timezone.pm:213
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang.pm:239 mirror.pm:13 timezone.pm:233
#, c-format
msgid "Belgium"
msgstr "Belgio"

#: lang.pm:240
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:241 timezone.pm:234
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"

#: lang.pm:242
#, c-format
msgid "Bahrain"
msgstr "Bahrain"

#: lang.pm:243
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:244
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:245
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

#: lang.pm:246
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: lang.pm:247
#, c-format
msgid "Bolivia"
msgstr "Bolivia"

#: lang.pm:248 mirror.pm:14 timezone.pm:274
#, c-format
msgid "Brazil"
msgstr "Brasile"

#: lang.pm:249
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: lang.pm:250
#, c-format
msgid "Bhutan"
msgstr "Bhutan"

#: lang.pm:251
#, c-format
msgid "Bouvet Island"
msgstr "Isola di Bouvet"

#: lang.pm:252
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:253 timezone.pm:232
#, c-format
msgid "Belarus"
msgstr "Bielorussia"

#: lang.pm:254
#, c-format
msgid "Belize"
msgstr "Belize"

#: lang.pm:255 mirror.pm:15 timezone.pm:263
#, c-format
msgid "Canada"
msgstr "Canada"

#: lang.pm:256
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Isole Cocos (Keeling)"

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

#: lang.pm:258
#, c-format
msgid "Central African Republic"
msgstr "Repubblica Centro Africana"

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

#: lang.pm:260 mirror.pm:39 timezone.pm:257
#, c-format
msgid "Switzerland"
msgstr "Svizzera"

#: lang.pm:261
#, c-format
msgid "Cote d'Ivoire"
msgstr "Costa d'Avorio"

#: lang.pm:262
#, c-format
msgid "Cook Islands"
msgstr "Isole Cook"

#: lang.pm:263 timezone.pm:275
#, c-format
msgid "Chile"
msgstr "Cile"

#: lang.pm:264
#, c-format
msgid "Cameroon"
msgstr "Camerun"

#: lang.pm:265 timezone.pm:214
#, c-format
msgid "China"
msgstr "Cina"

#: lang.pm:266
#, c-format
msgid "Colombia"
msgstr "Colombia"

#: lang.pm:267 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang.pm:268
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia e Montenegro"

#: lang.pm:269
#, c-format
msgid "Cuba"
msgstr "Cuba"

#: lang.pm:270
#, c-format
msgid "Cape Verde"
msgstr "Capo Verde"

#: lang.pm:271
#, c-format
msgid "Christmas Island"
msgstr "Isola Christmas"

#: lang.pm:272
#, c-format
msgid "Cyprus"
msgstr "Cipro"

#: lang.pm:273 mirror.pm:17 timezone.pm:235
#, c-format
msgid "Czech Republic"
msgstr "Repubblica Ceca"

#: lang.pm:274 mirror.pm:22 timezone.pm:240
#, c-format
msgid "Germany"
msgstr "Germania"

#: lang.pm:275
#, c-format
msgid "Djibouti"
msgstr "Gibuti"

#: lang.pm:276 mirror.pm:18 timezone.pm:236
#, c-format
msgid "Denmark"
msgstr "Danimarca"

#: lang.pm:277
#, c-format
msgid "Dominica"
msgstr "Dominica"

#: lang.pm:278
#, c-format
msgid "Dominican Republic"
msgstr "Repubblica Dominicana"

#: lang.pm:279
#, c-format
msgid "Algeria"
msgstr "Algeria"

#: lang.pm:280
#, c-format
msgid "Ecuador"
msgstr "Ecuador"

#: lang.pm:281 mirror.pm:19 timezone.pm:237
#, c-format
msgid "Estonia"
msgstr "Estonia"

#: lang.pm:282
#, c-format
msgid "Egypt"
msgstr "Egitto"

#: lang.pm:283
#, c-format
msgid "Western Sahara"
msgstr "Sahara Occidentale"

#: lang.pm:284
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: lang.pm:285 mirror.pm:37 timezone.pm:255
#, c-format
msgid "Spain"
msgstr "Spagna"

#: lang.pm:286
#, c-format
msgid "Ethiopia"
msgstr "Etiopia"

#: lang.pm:287 mirror.pm:20 timezone.pm:238
#, c-format
msgid "Finland"
msgstr "Finlandia"

#: lang.pm:288
#, c-format
msgid "Fiji"
msgstr "Fiji"

#: lang.pm:289
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Isole Falkland (Malvinas)"

#: lang.pm:290
#, c-format
msgid "Micronesia"
msgstr "Micronesia"

#: lang.pm:291
#, c-format
msgid "Faroe Islands"
msgstr "Isole Faroe"

#: lang.pm:292 mirror.pm:21 timezone.pm:239
#, c-format
msgid "France"
msgstr "Francia"

#: lang.pm:293
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:294 timezone.pm:259
#, c-format
msgid "United Kingdom"
msgstr "Regno Unito"

#: lang.pm:295
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:296
#, c-format
msgid "Georgia"
msgstr "Georgia"

#: lang.pm:297
#, c-format
msgid "French Guiana"
msgstr "Guiana Francese"

#: lang.pm:298
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: lang.pm:299
#, c-format
msgid "Gibraltar"
msgstr "Gibilterra"

#: lang.pm:300
#, c-format
msgid "Greenland"
msgstr "Groenlandia"

#: lang.pm:301
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: lang.pm:302
#, c-format
msgid "Guinea"
msgstr "Guinea"

#: lang.pm:303
#, c-format
msgid "Guadeloupe"
msgstr "Guadalupe"

#: lang.pm:304
#, c-format
msgid "Equatorial Guinea"
msgstr "Guinea Equatoriale"

#: lang.pm:305 mirror.pm:23 timezone.pm:241
#, c-format
msgid "Greece"
msgstr "Grecia"

#: lang.pm:306
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Georgia del Sud e le isole Sandwich meridionali"

#: lang.pm:307 timezone.pm:264
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: lang.pm:308
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:309
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"

#: lang.pm:310
#, c-format
msgid "Guyana"
msgstr "Guyana"

#: lang.pm:311
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Cina (Hong Kong)"

#: lang.pm:312
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Isole Heard e McDonald"

#: lang.pm:313
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:314
#, c-format
msgid "Croatia"
msgstr "Croazia"

#: lang.pm:315
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:316 mirror.pm:24 timezone.pm:242
#, c-format
msgid "Hungary"
msgstr "Ungheria"

#: lang.pm:317 timezone.pm:217
#, c-format
msgid "Indonesia"
msgstr "Indonesia"

#: lang.pm:318 mirror.pm:25 timezone.pm:243
#, c-format
msgid "Ireland"
msgstr "Irlanda"

#: lang.pm:319 mirror.pm:26 timezone.pm:219
#, c-format
msgid "Israel"
msgstr "Israele"

#: lang.pm:320 timezone.pm:216
#, c-format
msgid "India"
msgstr "India"

#: lang.pm:321
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Territorio Britannico dell'Oceano Indiano"

#: lang.pm:322
#, c-format
msgid "Iraq"
msgstr "Iraq"

#: lang.pm:323 timezone.pm:218
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:324
#, c-format
msgid "Iceland"
msgstr "Islanda"

#: lang.pm:325 mirror.pm:27 timezone.pm:244
#, c-format
msgid "Italy"
msgstr "Italia"

#: lang.pm:326
#, c-format
msgid "Jamaica"
msgstr "Giamaica"

#: lang.pm:327
#, c-format
msgid "Jordan"
msgstr "Giordania"

#: lang.pm:328 mirror.pm:28 timezone.pm:220
#, c-format
msgid "Japan"
msgstr "Giappone"

#: lang.pm:329
#, c-format
msgid "Kenya"
msgstr "Kenya"

#: lang.pm:330
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirghizistan"

#: lang.pm:331
#, c-format
msgid "Cambodia"
msgstr "Cambogia"

#: lang.pm:332
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

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

#: lang.pm:334
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts e Nevis"

#: lang.pm:335
#, c-format
msgid "Korea (North)"
msgstr "Corea del Nord"

#: lang.pm:336 timezone.pm:221
#, c-format
msgid "Korea"
msgstr "Corea"

#: lang.pm:337
#, c-format
msgid "Kuwait"
msgstr "Kuwait"

#: lang.pm:338
#, c-format
msgid "Cayman Islands"
msgstr "Isole Cayman"

#: lang.pm:339
#, c-format
msgid "Kazakhstan"
msgstr "Kazakistan"

#: lang.pm:340
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:341
#, c-format
msgid "Lebanon"