summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
blob: e2f01cf950fbf56af941c84041f24fbc04fab5ec (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
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
package install_steps_interactive; # $Id$


use diagnostics;
use strict;
use vars qw(@ISA $new_bootstrap);

@ISA = qw(install_steps);


#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use partition_table qw(:types);
use partition_table::raw;
use install_steps;
use install_interactive;
use install_any;
use install_messages;
use detect_devices;
use run_program;
use devices;
use fsedit;
use loopback;
use mouse;
use modules;
use modules::interactive;
use lang;
use keyboard;
use any;
use fs;
use log;

#-######################################################################################
#- In/Out Steps Functions
#-######################################################################################
sub errorInStep {
    my ($o, $err) = @_;
    $o->ask_warn(N("Error"), [ N("An error occurred"), formatError($err) ]);
}

sub kill_action {
    my ($o) = @_;
    $o->kill;
}

sub charsetChanged {
    my ($_o) = @_;
}

#-######################################################################################
#- Steps Functions
#-######################################################################################
#------------------------------------------------------------------------------
sub selectLanguage {
    my ($o) = @_;

    $o->{locale}{lang} = any::selectLanguage($o, $o->{locale}{lang}, $o->{locale}{langs} ||= {});
    install_steps::selectLanguage($o);

    $o->charsetChanged;

    if ($o->isa('interactive::gtk')) {
	$o->ask_warn('', formatAlaTeX(
"If you see this message it is because you chose a language for
which DrakX does not include a translation yet; however the fact
that it is listed means there is some support for it anyway.

That is, once GNU/Linux will be installed, you will be able to at
least read and write in that language; and possibly more (various
fonts, spell checkers, various programs translated etc. that
varies from language to language).")) if $o->{locale}{lang} !~ /^en/ && !lang::load_mo();
    } else {
	#- no need to have this in po since it is never translated
	$o->ask_warn('', "The characters of your language can't be displayed in console,
so the messages will be displayed in english during installation") if $ENV{LANGUAGE} eq 'C';
    }
}
    
sub acceptLicense {
    my ($o) = @_;

    my $r = 'Refuse';

    $o->ask_from_({ title => N("License agreement"), 
		    cancel => N("Quit"),
		    messages => formatAlaTeX(install_messages::main_license() . "\n\n\n" . install_messages::warning_about_patents()),
		    interactive_help_id => 'acceptLicense',
		    callbacks => { ok_disabled => sub { $r eq 'Refuse' } },
		  },
		  [ { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list', format => sub { translate($_[0]) } } ]) 
      or do {
	  install_any::ejectCdrom();
	  $o->exit;
      };
}

#------------------------------------------------------------------------------
sub selectKeyboard {
    my ($o, $clicked) = @_;

    my $from_usb = keyboard::from_usb();
    my $l = keyboard::lang2keyboards(lang::langs($o->{locale}{langs}));

    if ($::expert || $clicked || !($from_usb || @$l && $l->[0][1] >= 90) || listlength(lang::langs($o->{locale}{langs})) > 1) {
	add2hash($o->{keyboard}, $from_usb);
	my @best = uniq($from_usb ? $from_usb->{KEYBOARD} : (), (map { $_->[0] } @$l), 'us_intl');

	my $format = sub { translate(keyboard::KEYBOARD2text($_[0])) };
	my $other;
	my $ext_keyboard = my $KEYBOARD = $o->{keyboard}{KEYBOARD};
	$o->ask_from_(
		      { title => N("Keyboard"), 
			messages => N("Please choose your keyboard layout."),
			interactive_help_id => 'selectKeyboard',
			advanced_messages => N("Here is the full list of keyboards available"),
			advanced_label => N("More"),
			callbacks => { changed => sub { $other = $_[0] == 1 } },
		      },
		      [ if_(@best > 1, { val => \$KEYBOARD, type => 'list', format => $format, sort => 1,
					 list => [ @best ] }),
			{ val => \$ext_keyboard, type => 'list', format => $format,
			  list => [ difference2([ keyboard::KEYBOARDs() ], \@best) ], advanced => @best > 1 }
		      ]);
	$o->{keyboard}{KEYBOARD} = $other ? $ext_keyboard : $KEYBOARD;
	delete $o->{keyboard}{unsafe};
    }
    keyboard::group_toggle_choose($o, $o->{keyboard}) or goto &selectKeyboard;
    install_steps::selectKeyboard($o);
}

#------------------------------------------------------------------------------
sub selectInstallClass {
    my ($o) = @_;

    if (my @l = install_any::find_root_parts($o->{fstab}, $o->{prefix})) {
	log::l("proposing to upgrade partitions " . join(" ", map { $_->{part}{device} } @l));

	my @releases = uniq(map { $_->{release} } @l);
	if (@releases != @l) {
	    #- same release name so adding the device to differentiate them:
	    $_->{release} .= " ($_->{part}{device})" foreach @l;
	}

	my $p;
	$o->ask_from_({ title => N("Install/Upgrade"),
			messages => N("Is this an install or an upgrade?"),
			interactive_help_id => 'selectInstallClass',
		      },
		      [ { val => \$p,
			  list => [ @l, N_("Install") ], 
			  type => 'list',
			  format => sub { ref($_[0]) ? N("Upgrade %s", $_[0]{release}) : translate($_[0]) }
			} ]);
	if (ref $p) {
	    my $part = $p->{part};
	    log::l("choosing to upgrade partition $part->{device}");
	    install_any::use_root_part($o->{all_hds}, $part, $o->{prefix});
	    foreach (grep { $_->{mntpoint} } @{$o->{fstab}}) {
		my ($options, $_unknown) = fs::mount_options_unpack($_);
		$options->{encrypted} or next;
		$o->ask_from_({ focus_first => 1 },
			      [ { label => N("Encryption key for %s", $_->{mntpoint}),
				  hidden => 1, val => \$_->{encrypt_key} } ]);
	    }
	    $o->{isUpgrade} = 1;
	}
    }
}

#------------------------------------------------------------------------------
sub selectMouse {
    my ($o, $force) = @_;

    $force ||= $o->{mouse}{unsafe} || 1;

    if ($force) {
	my $prev = $o->{mouse}{type} . '|' . $o->{mouse}{name};

	$o->ask_from_({ messages => N("Please choose your type of mouse."),
			interactive_help_id => 'selectMouse',
		      },
		     [ { list => [ mouse::fullnames() ], separator => '|', val => \$prev, format => sub { join('|', map { translate($_) } split('\|', $_[0])) } } ]);
	$o->{mouse} = mouse::fullname2mouse($prev);
    }

    if ($force && $o->{mouse}{type} eq 'serial') {
	$o->{mouse}{device} = 
	  $o->ask_from_listf_raw({ title => N("Mouse Port"),
				   messages => N("Please choose which serial port your mouse is connected to."),
				   interactive_help_id => 'selectSerialPort',
				 },
			    \&mouse::serial_port2text,
			    [ mouse::serial_ports() ]) or return &selectMouse;
    }
    if (arch() =~ /ppc/ && $o->{mouse}{nbuttons} == 1) {
	#- set a sane default F11/F12
	$o->{mouse}{button2_key} = 87;
	$o->{mouse}{button3_key} = 88;
	$o->ask_from('', N("Buttons emulation"),
		[
		{ label => N("Button 2 Emulation"), val => \$o->{mouse}{button2_key}, list => [ mouse::ppc_one_button_keys() ], format => \&mouse::ppc_one_button_key2text },
		{ label => N("Button 3 Emulation"), val => \$o->{mouse}{button3_key}, list => [ mouse::ppc_one_button_keys() ], format => \&mouse::ppc_one_button_key2text },
		]) or return;
    }
    
    if ($o->{mouse}{device} eq "usbmouse") {
	modules::interactive::load_category($o, 'bus/usb', 1, 1);
	eval { 
	    devices::make("usbmouse");
	    modules::load(qw(hid mousedev usbmouse));
	};
    }

    $o->SUPER::selectMouse;
    1;
}
#------------------------------------------------------------------------------
sub setupSCSI {
    my ($o) = @_;

    if (!$::noauto && arch() =~ /i.86/) {
	if ($o->{pcmcia} ||= !$::testing && c::pcmcia_probe()) {
	    my $w = $o->wait_message(N("PCMCIA"), N("Configuring PCMCIA cards..."));
	    my $results = modules::configure_pcmcia($o->{pcmcia});
	    $w = undef;
	    $results and $o->ask_warn('', $results);
	}
    }
    { 
	my $_w = $o->wait_message(N("IDE"), N("Configuring IDE"));
	modules::load(modules::category2modules('disk/cdrom'));
    }
    modules::interactive::load_category($o, 'bus/firewire', 1);

    my $have_non_scsi = detect_devices::hds(); #- at_least_one scsi device if we have no disks
    modules::interactive::load_category($o, 'disk/scsi|hardware_raid', 1, !$have_non_scsi);
    modules::interactive::load_category($o, 'disk/scsi|hardware_raid') if !detect_devices::hds(); #- we really want a disk!

    install_interactive::tellAboutProprietaryModules($o);

    install_any::getHds($o, $o);
}

sub ask_mntpoint_s { #- }{}
    my ($o, $fstab) = @_;

    my @fstab = grep { isTrueFS($_) } @$fstab;
    @fstab = grep { isSwap($_) } @$fstab if @fstab == 0;
    @fstab = @$fstab if @fstab == 0;
    die \N("No partition available") if @fstab == 0;

    {
	my $_w = $o->wait_message('', N("Scanning partitions to find mount points"));
	install_any::suggest_mount_points($fstab, $o->{prefix}, 'uniq');
	log::l("default mntpoint $_->{mntpoint} $_->{device}") foreach @fstab;
    }
    if (@fstab == 1) {
	$fstab[0]{mntpoint} = '/';
    } else {
	$o->ask_from_({ messages => N("Choose the mount points"),
			interactive_help_id => 'ask_mntpoint_s',
		      },
		      [ map { { label => partition_table::description($_), 
				  val => \$_->{mntpoint},
				    not_edit => 0,
				      list => [ '', fsedit::suggestions_mntpoint(fsedit::empty_all_hds()) ] }
			  } grep { !$_->{real_mntpoint} || common::usingRamdisk() } @fstab ]) or return;
    }
    $o->SUPER::ask_mntpoint_s($fstab);
}

#------------------------------------------------------------------------------
sub doPartitionDisks {
    my ($o) = @_;

    if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) { #- need to make bootstrap part if NewWorld machine - thx Pixel ;^)
	if (defined $partition_table::mac::bootstrap_part) {
	    #- don't do anything if we've got the bootstrap setup
	    #- otherwise, go ahead and create one somewhere in the drive free space
	} else {
            undef = $partition_table::mac::freepart; #- please "perl -w"
            my $freepart = $partition_table::mac::freepart;
	    if ($freepart && $freepart->{size} >= 1) {	        
		log::l("creating bootstrap partition on drive /dev/$freepart->{hd}{device}, block $freepart->{start}");
		$partition_table::mac::bootstrap_part = $freepart->{part};	
		log::l("bootstrap now at $partition_table::mac::bootstrap_part");
		fsedit::add($freepart->{hd}, { start => $freepart->{start}, size => 1 << 11, type => 0x401, mntpoint => '' }, $o->{all_hds}, { force => 1, primaryOrExtended => 'Primary' });
		$new_bootstrap = 1;    
	    } else {
		$o->ask_warn('', N("No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake"));
	    }
	}
    }

    if (!$o->{isUpgrade}) {
        install_interactive::partitionWizard($o);
    }
}

#------------------------------------------------------------------------------
sub rebootNeeded {
    my ($o) = @_;
    $o->ask_warn('', N("You need to reboot for the partition table modifications to take place"));

    install_steps::rebootNeeded($o);
}

#------------------------------------------------------------------------------
sub choosePartitionsToFormat {
    my ($o, $fstab) = @_;

    $o->SUPER::choosePartitionsToFormat($fstab);

    my @l = grep { !$_->{isMounted} && $_->{mntpoint} && 
		   (!isSwap($_) || $::expert) &&
		   (!isFat_or_NTFS($_) || $_->{notFormatted} || $::expert) &&
		   (!isOtherAvailableFS($_) || $::expert || $_->{toFormat})
	       } @$fstab;
    $_->{toFormat} = 1 foreach grep { isSwap($_) && !$::expert } @$fstab;

    return if @l == 0 || !$::expert && every { $_->{toFormat} } @l;

    #- keep it temporary until the guy has accepted
    $_->{toFormatTmp} = $_->{toFormat} || $_->{toFormatUnsure} foreach @l;

    $o->ask_from_(
        { messages => N("Choose the partitions you want to format"),
	  interactive_help_id => 'formatPartitions',
          advanced_messages => N("Check bad blocks?"),
        },
        [ map { 
	    my $e = $_;
	    ({
	      text => partition_table::description($e), type => 'bool',
	      val => \$e->{toFormatTmp}
	     }, if_(!isLoopback($_) && !isThisFs("reiserfs", $_) && !isThisFs("xfs", $_) && !isThisFs("jfs", $_), {
	      text => partition_table::description($e), type => 'bool', advanced => 1, 
	      disabled => sub { !$e->{toFormatTmp} },
	      val => \$e->{toFormatCheck}
        })) } @l ]
    ) or die 'already displayed';
    #- ok now we can really set toFormat
    foreach (@l) {
	$_->{toFormat} = delete $_->{toFormatTmp};
	$_->{isFormatted} = 0;
    }
}


sub formatMountPartitions {
    my ($o, $_fstab) = @_;
    my $w;
    catch_cdie {
        fs::formatMount_all($o->{all_hds}{raids}, $o->{fstab}, $o->{prefix}, sub {
        	my ($msg) = @_;
        	$w ||= $o->wait_message('', $msg);
        	$w->set($msg);
        });
    } sub { 
	$@ =~ /fsck failed on (\S+)/ or return;
	$o->ask_yesorno('', N("Failed to check filesystem %s. Do you want to repair the errors? (beware, you can loose data)", $1), 1);
    };
    undef $w; #- help perl (otherwise wait_message stays forever in newt)
    die \N("Not enough swap space to fulfill installation, please add some") if availableMemory() < 40 * 1024;
}

#------------------------------------------------------------------------------
sub setPackages {
    my ($o, $rebuild_needed) = @_;

    my $w = $o->wait_message('', $rebuild_needed ? N("Looking for available packages and rebuilding rpm database...") :
			     N("Looking for available packages..."));
    install_any::setPackages($o, $rebuild_needed);

    $w->set(N("Looking at packages already installed..."));
    pkgs::selectPackagesAlreadyInstalled($o->{packages}, $o->{prefix});

    if ($rebuild_needed) {
	$w->set(N("Finding packages to upgrade..."));
	pkgs::selectPackagesToUpgrade($o->{packages}, $o->{prefix});
    }
}
#------------------------------------------------------------------------------
sub choosePackages {
    my ($o, $packages, $compssUsers, $_first_time) = @_;

    #- this is done at the very beginning to take into account
    #- selection of CD by user if using a cdrom.
    $o->chooseCD($packages) if $o->{method} eq 'cdrom' && !$::oem;

    my $w = $o->wait_message('', N("Looking for available packages..."));
    my $availableC = &install_steps::choosePackages;
    my $individual;

    require pkgs;

    my $min_size = pkgs::selectedSize($packages);
    unless ($min_size < $availableC) {
	$w = undef;
	$o->ask_warn('', N("Your system does not have enough space left for installation or upgrade (%d > %d)",
			   $min_size, $availableC));
	install_steps::rebootNeeded($o);
    }

    my $min_mark = 4;

    my $b = pkgs::saveSelected($packages);
    my $_level = pkgs::setSelectedFromCompssList($packages, { map { $_ => 1 } map { @{$compssUsers->{$_}{flags}} } @{$o->{compssUsersSorted}} }, $min_mark, 0);
    my $max_size = pkgs::selectedSize($packages) + 1; #- avoid division by zero.
    log::l("max size (level $min_mark) is : " . formatXiB($max_size));
    pkgs::restoreSelected($b);
    $w = undef;

  chooseGroups:
    $o->chooseGroups($packages, $compssUsers, $min_mark, \$individual, $max_size) if !$o->{isUpgrade} && !$::corporate;

    ($o->{packages_}{ind}) =
      pkgs::setSelectedFromCompssList($packages, $o->{compssUsersChoice}, $min_mark, $availableC);

    $o->choosePackagesTree($packages) or goto chooseGroups if $individual;

    install_any::warnAboutRemovedPackages($o, $o->{packages});
    install_any::warnAboutNaughtyServers($o) or goto chooseGroups;
}

sub choosePackagesTree {
    my ($o, $packages, $limit_to_medium) = @_;

    $o->ask_many_from_list('', N("Choose the packages you want to install"),
			   {
			    list => [ grep { !$limit_to_medium || pkgs::packageMedium($packages, $_) == $limit_to_medium }
				      @{$packages->{depslist}} ],
			    value => \&URPM::Package::flag_selected,
			    label => \&URPM::Package::name,
			    sort => 1,
			   });
}
sub loadSavePackagesOnFloppy {
    my ($o, $packages) = @_;
    $o->ask_from('', 
N("Please choose load or save package selection on floppy.
The format is the same as auto_install generated floppies."),
		 [ { val => \ (my $choice), list => [ N_("Load from floppy"), N_("Save on floppy") ], format => \&translate, type => 'list' } ]) or return;

    if ($choice eq 'Load from floppy') {
	while (1) {
	    my $w = $o->wait_message(N("Package selection"), N("Loading from floppy"));
	    log::l("load package selection from floppy");
	    my $O = eval { install_any::loadO(undef, 'floppy') };
	    if ($@) {
		$w = undef;	#- close wait message.
		$o->ask_okcancel('', N("Insert a floppy containing package selection"))
		  or return;
	    } else {
		install_any::unselectMostPackages($o);
		foreach (@{$O->{default_packages} || []}) {
		    my $pkg = pkgs::packageByName($packages, $_);
		    pkgs::selectPackage($packages, $pkg) if $pkg;
		}
		return 1;
	    }
	}
    } else {
	log::l("save package selection to floppy");
	install_any::g_default_packages($o, 'quiet');
    }
}
sub chooseGroups {
    my ($o, $packages, $compssUsers, $min_level, $individual, $max_size) = @_;

    #- for all groups available, determine package which belongs to each one.
    #- this will enable getting the size of each groups more quickly due to
    #- limitation of current implementation.
    #- use an empty state for each one (no flag update should be propagated).
    
#- OLD VERSION
    my $b = pkgs::saveSelected($packages);
    install_any::unselectMostPackages($o);
    pkgs::setSelectedFromCompssList($packages, {}, $min_level, $max_size);
    my $system_size = pkgs::selectedSize($packages);
    my ($sizes, $pkgs) = pkgs::computeGroupSize($packages, $min_level);
    pkgs::restoreSelected($b);
    log::l("system_size: $system_size");

    my @groups = @{$o->{compssUsersSorted}};
    my %stable_flags = grep_each { $::b } %{$o->{compssUsersChoice}};
    delete $stable_flags{$_} foreach map { @{$compssUsers->{$_}{flags}} } @groups;

    my $compute_size = sub {
	my %pkgs;
	my %flags = %stable_flags; @flags{@_} = ();
	my $total_size;
	A: while (my ($k, $size) = each %$sizes) {
	    Or: foreach (split "\t", $k) {
		  foreach (split "&&") {
		      exists $flags{$_} or next Or;
		  }
		  $total_size += $size;
		  $pkgs{$_} = 1 foreach @{$pkgs->{$k}};
		  next A;
	      }
	  }
	log::l("computed size $total_size");
	log::l("chooseGroups: ", join(" ", sort keys %pkgs));

	int $total_size;
    };
    my %val = map {
	$_ => every { $o->{compssUsersChoice}{$_} } @{$compssUsers->{$_}{flags}}
    } @groups;

#    @groups = grep { $size{$_} = round_down($size{$_} / sqr(1024), 10) } @groups; #- don't display the empty or small one (eg: because all packages are below $min_level)
    my ($size, $unselect_all);
    my $available_size = install_any::getAvailableSpace($o) / sqr(1024);
    my $size_to_display = sub { 
	my $lsize = $system_size + $compute_size->(map { @{$compssUsers->{$_}{flags}} } grep { $val{$_} } @groups);

	#- if a profile is deselected, deselect everything (easier than deselecting the profile packages)
	$unselect_all ||= $size > $lsize;
	$size = $lsize;
	N("Total size: %d / %d MB", pkgs::correctSize($size / sqr(1024)), $available_size);
    };

    while (1) {
	if ($available_size < 140) {
	    # too small to choose anything. Defaulting to no group chosen
	    $val{$_} = 0 foreach %val;
	    last;
	}

	$o->reallyChooseGroups($size_to_display, $individual, \%val) or return;
	last if $::testing || pkgs::correctSize($size / sqr(1024)) < $available_size;
       
	$o->ask_warn('', N("Selected size is larger than available space"));	
    }

    $o->{compssUsersChoice}{$_} = 0 foreach map { @{$compssUsers->{$_}{flags}} } grep { !$val{$_} } keys %val;
    $o->{compssUsersChoice}{$_} = 1 foreach map { @{$compssUsers->{$_}{flags}} } grep {  $val{$_} } keys %val;

    log::l("compssUsersChoice: " . (!$val{$_} && "not ") . "selected [$_] as [$o->{compssUsers}{$_}{label}]") foreach keys %val;

    #- do not try to deselect package (by default no groups are selected).
    $o->{isUpgrade} or $unselect_all and install_any::unselectMostPackages($o);
    #- if no group have been chosen, ask for using base system only, or no X, or normal.
    if (!$o->{isUpgrade} && !any { $_ } values %val) {
	my $docs = !$o->{excludedocs};	
	my $minimal = !any { $_ } values %{$o->{compssUsersChoice}};

	$o->ask_from(N("Type of install"), 
		     N("You haven't selected any group of packages.
Please choose the minimal installation you want:"),
		     [
		      { val => \$o->{compssUsersChoice}{X}, type => 'bool', text => N("With X"), disabled => sub { $minimal } },
		      { val => \$docs, type => 'bool', text => N("With basic documentation (recommended!)"), disabled => sub { $minimal } },
		      { val => \$minimal, type => 'bool', text => N("Truly minimal install (especially no urpmi)") },
		     ],
		     changed => sub { $o->{compssUsersChoice}{X} = $docs = 0 if $minimal },
	) or return &chooseGroups;

	$o->{excludedocs} = !$docs || $minimal;

	#- reselect according to user selection.
	if ($minimal) {
	    $o->{compssUsersChoice}{$_} = 0 foreach keys %{$o->{compssUsersChoice}};
	} else {
	    my $X = $o->{compssUsersChoice}{X}; #- don't let setDefaultPackages modify this one
	    install_any::setDefaultPackages($o, 'clean');
	    $o->{compssUsersChoice}{X} = $X;
	}
	install_any::unselectMostPackages($o);
    }
    1;
}

sub reallyChooseGroups {
    my ($o, $size_to_display, $individual, $val) = @_;

    my $size_text = &$size_to_display;

    my ($path, $all);
    $o->ask_from_({ messages => N("Package Group Selection"),
		    interactive_help_id => 'choosePackages',
		    callbacks => { changed => sub { $size_text = &$size_to_display } },
		  }, [
        { val => \$size_text, type => 'label' }, {},
	 (map { 
	       my $old = $path;
	       $path = $o->{compssUsers}{$_}{path};
	       if_($old ne $path, { val => translate($path) }),
		 {
		  val => \$val->{$_},
		  type => 'bool',
		  disabled => sub { $all },
		  text => translate($o->{compssUsers}{$_}{label}),
		  help => translate($o->{compssUsers}{$_}{descr}),
		 }
	   } @{$o->{compssUsersSorted}}),
	 if_($o->{meta_class} eq 'desktop', { text => N("All"), val => \$all, type => 'bool' }),
	 if_($individual, { text => N("Individual package selection"), val => $individual, advanced => 1, type => 'bool' }),
    ]);

    if ($all) {
	$val->{$_} = 1 foreach keys %$val;
    }
    1;    
}

sub chooseCD {
    my ($o, $packages) = @_;
    my @mediums = grep { $_ != $install_any::boot_medium } pkgs::allMediums($packages);
    my @mediumsDescr;
    my %mediumsDescr;

    if (!common::usingRamdisk()) {
	#- mono-cd in case of no ramdisk
	foreach (@mediums) {
	    pkgs::mediumDescr($packages, $install_any::boot_medium) eq pkgs::mediumDescr($packages, $_) and next;
	    undef $packages->{mediums}{$_}{selected};
	}
	log::l("low memory install, using single CD installation (as it is not ejectable)");
	return;
    }

    #- the boot medium is already selected.
    $mediumsDescr{pkgs::mediumDescr($packages, $install_any::boot_medium)} = 1;

    #- build mediumDescr according to mediums, this avoid asking multiple times
    #- all the medium grouped together on only one CD.
    foreach (@mediums) {
	my $descr = pkgs::mediumDescr($packages, $_);
	$packages->{mediums}{$_}{ignored} and next;
	exists $mediumsDescr{$descr} or push @mediumsDescr, $descr;
	$mediumsDescr{$descr} ||= $packages->{mediums}{$_}{selected};
    }

    #- if no other medium available or a poor beginner, we are choosing for him!
    #- note first CD is always selected and should not be unselected!
    return if @mediumsDescr == () || !$::expert;

#    $o->set_help('chooseCD');
    $o->ask_many_from_list('',
N("If you have all the CDs in the list below, click Ok.
If you have none of those CDs, click Cancel.
If only some CDs are missing, unselect them, then click Ok."),
			   {
			    list => \@mediumsDescr,
			    label => sub { N("Cd-Rom labeled \"%s\"", $_[0]) },
			    val => sub { \$mediumsDescr{$_[0]} },
			   }) or do {
			       $mediumsDescr{$_} = 0 foreach @mediumsDescr; #- force unselection of other CDs.
			   };

    #- restore true selection of medium (which may have been grouped together)
    foreach (@mediums) {
	my $descr = pkgs::mediumDescr($packages, $_);
	$packages->{mediums}{$_}{ignored} and next;
	$packages->{mediums}{$_}{selected} = $mediumsDescr{$descr};
	log::l("select status of medium $_ is $packages->{mediums}{$_}{selected}");
    }
}

#------------------------------------------------------------------------------
sub installPackages {
    my ($o, $packages) = @_;
    my ($current, $total) = (0, 0);

    my $w = $o->wait_message(N("Installing"), N("Preparing installation"));

    my $old = \&pkgs::installCallback;
    local *pkgs::installCallback = sub {
	my ($data, $type, $id, $subtype, $_amount, $total_) = @_;
	if ($type eq 'user' && $subtype eq 'install') {
	    $total = $total_;
	} elsif ($type eq 'inst' && $subtype eq 'start') {
	    my $p = $data->{depslist}[$id];
	    $w->set(N("Installing package %s\n%d%%", $p->name, $total && 100 * $current / $total));
	    $current += $p->size;
	} else { goto $old }
    };

    #- the modification is not local as the box should be living for other package installation.
    #- BEWARE this is somewhat duplicated (but not exactly from gtk code).
    undef *install_any::changeMedium;
    *install_any::changeMedium = sub {
	my ($method, $medium) = @_;

	#- if not using a cdrom medium, always abort.
	$method eq 'cdrom' && !$::oem and do {
	    my $name = pkgs::mediumDescr($o->{packages}, $medium);
	    local $| = 1; print "\a";
	    my $r = $name !~ /commercial/i || ($o->{useless_thing_accepted2} ||= $o->ask_from_list_('', formatAlaTeX(install_messages::com_license()), [ N_("Accept"), N_("Refuse") ], "Accept") eq "Accept");
            $r &&= $o->ask_okcancel('', N("Change your Cd-Rom!

Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.
If you don't have it, press Cancel to avoid installation from this Cd-Rom.", $name), 1);
            return $r;
	};
    };
    my $install_result;
    catch_cdie { $install_result = $o->install_steps::installPackages($packages) }
      sub {
	  if ($@ =~ /^error ordering package list: (.*)/) {
	      $o->ask_yesorno('', [
N("There was an error ordering packages:"), $1, N("Go on anyway?") ], 1) and return 1;
	      ${$_[0]} = "already displayed";
	  } elsif ($@ =~ /^error installing package list: (.*)/) {
	      $o->ask_yesorno('', [
N("There was an error installing packages:"), $1, N("Go on anyway?") ], 1) and return 1;
	      ${$_[0]} = "already displayed";
	  }
	  0;
      };
    if ($pkgs::cancel_install) {
	$pkgs::cancel_install = 0;
	die "setstep choosePackages\n";
    }
    $install_result;
}

sub afterInstallPackages($) {
    my ($o) = @_;
    my $_w = $o->wait_message('', N("Post-install configuration"));
    $o->SUPER::afterInstallPackages;
}

sub copyKernelFromFloppy {
    my ($o) = @_;
    $o->ask_okcancel('', N("Please insert the Boot floppy used in drive %s", $o->{blank}), 1) or return;
    $o->SUPER::copyKernelFromFloppy;
}

sub updateModulesFromFloppy {
    my ($o) = @_;
    $o->ask_okcancel('', N("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return;
    $o->SUPER::updateModulesFromFloppy;
}

#------------------------------------------------------------------------------
sub configureNetwork {
    my ($o) = @_;
    require network::network;
    network::network::easy_dhcp($o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan';
    $o->SUPER::configureNetwork;
}

#------------------------------------------------------------------------------
sub installUpdates {
    my ($o) = @_;
    my $u = $o->{updates} ||= {};
    
    $o->hasNetwork or return;

    is_empty_hash_ref($u) and $o->ask_yesorno_({ messages => formatAlaTeX(
N("You now have the opportunity to download updated packages. These packages
have been updated after the distribution was released. They may
contain security or bug fixes.

To download these packages, you will need to have a working Internet 
connection.

Do you want to install the updates ?")),
						interactive_help_id => 'installUpdates',
					       }) || return;

    #- bring all interface up for installing crypto packages.
    install_interactive::upNetwork($o);

    #- update medium available and working.
    my $update_medium;
    do {
	require crypto;
	eval {
	    my @mirrors = do {
		my $_w = $o->wait_message('', N("Contacting Mandrake Linux web site to get the list of available mirrors..."));
		crypto::mirrors() };
	    #- if no mirror have been found, use current time zone and propose among available.
	    $u->{mirror} ||= crypto::bestMirror($o->{timezone}{timezone});
	    $o->ask_from_({ messages => N("Choose a mirror from which to get the packages"),
			    cancel => N("Cancel"),
			  }, [ { separator => '|',
				 format => \&crypto::mirror2text,
				 list => \@mirrors,
				 val => \$u->{mirror},
			       },
			     ],
			 ) or $u->{mirror} = '';
	};
	return if $@ || !$u->{mirror};

	eval {
	    if ($u->{mirror}) {
		my $_w = $o->wait_message('', N("Contacting the mirror to get the list of available packages..."));
		$update_medium = crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror});
	    }
	};
    } while $@ || !$update_medium && $o->ask_yesorno('', N("Unable to contact mirror %s", $u->{mirror}) . ($@ ? " :\n$@" : "") . "\n\n" . N("Would you like to try again?"));

    if ($update_medium) {
	if ($o->choosePackagesTree($o->{packages}, $update_medium)) {
	    $o->{isUpgrade} = 1; #- now force upgrade mode, else update will be installed instead of upgraded.
	    $o->pkg_install;
	} else {
	    #- make sure to not try to install the packages (which are automatically selected by getPackage above).
	    #- this is possible by deselecting the medium (which can be re-selected above).
	    delete $update_medium->{selected};
	}
	#- update urpmi even, because there is an hdlist available and everything is good,
	#- this will allow user to update the medium but update his machine later.
	$o->install_urpmi;
    }
 
    #- stop interface using ppp only. FIXME REALLY TOCHECK isdn (costly network) ?
    # FIXME damien install_interactive::downNetwork($o, 'pppOnly');
}


#------------------------------------------------------------------------------
sub configureTimezone {
    my ($o, $clicked) = @_;

    require timezone;
    $o->{timezone}{timezone} = $o->ask_from_treelist('', N("Which is your timezone?"), '/', [ timezone::getTimeZones($::g_auto_install ? '' : $o->{prefix}) ], $o->{timezone}{timezone}) || return;

    my $ntp = to_bool($o->{timezone}{ntp});
    $o->ask_from_({ interactive_help_id => 'configureTimezoneGMT' }, [
	  { text => N("Hardware clock set to GMT"), val => \$o->{timezone}{UTC}, type => 'bool' },
	  { text => N("Automatic time synchronization (using NTP)"), val => \$ntp, type => 'bool' },
    ]) or goto &configureTimezone
	    if $::expert || $clicked;
    if ($ntp) {
	my @servers = split("\n", timezone::ntp_servers());

	$o->ask_from_({},
	    [ { label => N("NTP Server"), val => \$o->{timezone}{ntp}, list => \@servers, not_edit => 0 } ]
        ) or goto &configureTimezone;
	$o->{timezone}{ntp} =~ s/.*\((.+)\)/$1/;
    } else {
	$o->{timezone}{ntp} = '';
    }
    install_steps::configureTimezone($o);
    1;
}

#------------------------------------------------------------------------------
sub configureServices { 
    my ($o, $clicked) = @_;
    require services;
    $o->{services} = services::ask($o) if $::expert || $clicked;
    install_steps::configureServices($o);
}


sub summaryBefore {
    my ($o) = @_;

    #- auto-detection
    $o->configurePrinter(0);
    install_any::preConfigureTimezone($o);
    #- get back network configuration.
    require network;
    eval {
	network::network::read_all_conf($o->{prefix}, $o->{netc} ||= {}, $o->{intf} ||= {}, $o->{netcnx} ||= {});
    };
    log::l("summaryBefore: network configuration: ", formatError($@));
}

sub summary_prompt {
    my ($o, $l, $check_complete) = @_;

    foreach (@$l) {
	my $val = $_->{val};
	($_->{format}, $_->{val}) = (sub { $val->() || N("not configured") }, '');
    }
    
    $o->ask_from_({
		   messages => N("Summary"),
		   interactive_help_id => 'summary',
		   cancel   => '',
		   callbacks => { complete => sub { !$check_complete->() } },
		  }, $l);
}

sub summary {
    my ($o) = @_;

    my @l;

    push @l, {
	group => N("System"), 
	label => N("Keyboard"), 
	val => sub { $o->{keyboard} && translate(keyboard::keyboard2text($o->{keyboard})) },
	clicked => sub { $o->selectKeyboard(1) },
    };

    my $timezone_manually_set;  
    push @l, {
	group => N("System"),
	label => N("Country / Region"),
	val => sub { lang::c2name($o->{locale}{country}) },
	clicked => sub {
	    any::selectCountry($o, $o->{locale}) or return;
	    $o->do_pkgs->install('locales-' . substr(lang::getlocale_for_country($o->{locale}{lang}, $o->{locale}{country}), 0, 2));
	    lang::write($o->{prefix}, $o->{locale});
	    if (!$timezone_manually_set) {
		delete $o->{timezone};
		install_any::preConfigureTimezone($o); #- now we can precise the timezone thanks to the country
	    }
	},
    };
    push @l, {
	group => N("System"),
	label => N("Timezone"),
	val => sub { $o->{timezone}{timezone} },
	clicked => sub { $timezone_manually_set = $o->configureTimezone(1) || $timezone_manually_set },
    };

    push @l, {
	group => N("System"),
	label => N("Mouse"),
	val => sub { translate($o->{mouse}{type}) . ' ' . translate($o->{mouse}{name}) },
	clicked => sub { $o->selectMouse(1); mouse::write($o, $o->{mouse}) },
    };

    push @l, {
	group => N("Hardware"),
	label => N("Printer"),
	val => sub {
	    if (is_empty_hash_ref($o->{printer}{configured})) {
		require pkgs;
		my $p = pkgs::packageByName($o->{packages}, 'cups');
		$p && $p->flag_installed ? N("Remote CUPS server") : N("No printer");
	    } elsif (defined($o->{printer}{configured}{$o->{printer}{DEFAULT}})  &&
		     (my $p = find { $_ && ($_->{make} || $_->{model}) }
		      $o->{printer}{configured}{$o->{printer}{DEFAULT}}{queuedata})) {
		"$p->{make} $p->{model}";
	    } elsif ($p = find { $_ && ($_->{make} || $_->{model}) }
		      map { $_->{queuedata} } (values %{$o->{printer}{configured}})) {
		"$p->{make} $p->{model}";
	    } else {
		N("Remote CUPS server"); #- fall back in case of something wrong.
	    }
	},
	clicked => sub { $o->configurePrinter(1) },
    };
  
    my @sound_cards = detect_devices::getSoundDevices();

    my $sound_index = 0;
    foreach my $device (@sound_cards) {
	push @l, {
	    group => N("Hardware"),
	    label => N("Sound card"),
	    val => sub { 
		$device->{driver} && modules::module2description($device->{driver}) || $device->{description};
	    },
	    clicked => sub {
	        require harddrake::sound; 
             $device->{sound_slot_index} = $sound_index;
	        harddrake::sound::config($o, $device);
	    },
	};
     $sound_index++;
    }

    if (!@sound_cards && ($o->{compssUsersChoice}{GAMES} || $o->{compssUsersChoice}{AUDIO})) {
	#- if no sound card are detected AND the user selected things needing a sound card,
	#- propose a special case for ISA cards
	push @l, {
	    group => N("Hardware"),
	    label => N("Sound card"),
	    val => sub {},
	    clicked => sub {
	        if ($o->ask_yesorno('', N("Do you have an ISA sound card?"))) {
	    	  $o->do_pkgs->install('sndconfig');
	    	  $o->ask_warn('', N("Run \"sndconfig\" after installation to configure your sound card"));
	        } else {
	    	  $o->ask_warn('', N("No sound card detected. Try \"harddrake\" after installation"));
	        }
	    },
	};
    }

    foreach my $tv (detect_devices::getTVcards()) {
	push @l, {
	    group => N("Hardware"),
	    label => N("TV card"),
	    val => sub { $tv->{description} }, 
	    clicked => sub { 
	        require harddrake::v4l; 
	        harddrake::v4l::config($o, $tv->{driver});
	    }
	};
    }

    push @l, {
	group => N("Hardware"),
	label => N("Graphical interface"),
	val => sub { $o->{raw_X} ? Xconfig::various::to_string($o->{raw_X}) : '' },
	clicked => sub { configureX($o, 'expert') }, 
    };

    push @l, {
	group => N("Network & Internet"),
	label => N("Network"),
	val => sub { $o->{netcnx}{type} },
	clicked => sub { 
	    local $::expert = $::expert;
	    require network::netconnect;
	    network::netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o, $o->{netc}, $o->{mouse}, $o->{intf}, 0, 1);
	    #- in case netcnx type is not updated.
	    require network::network;
	    network::network::probe_netcnx_type($o->{prefix}, $o->{netc}, $o->{intf}, $o->{netcnx});
	},
    };

    push @l, {
	group => N("Security"),
	label => N("Security Level"),
	val => sub { 
	    require security::level;
	    security::level::to_string($o->{security});
	},
	clicked => sub {
	    require security::level;
	    security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user})
		and install_any::set_security($o);
	},
    };

    push @l, {
	group => N("Security"),
	label => N("Firewall"),
	val => sub { 
	    require network::shorewall;
	    my $shorewall = network::shorewall::read();
	    $shorewall && !$shorewall->{disabled} ? N("activated") : N("disabled");
	},
	clicked => sub { 
	    require network::drakfirewall;
	    network::drakfirewall::main($o, $o->{security} <= 3);
	},
    } if detect_devices::getNet();

    push @l, {
	group => N("Boot"),
	label => N("Bootloader"),
	val => sub { 
	    #-PO: example: lilo-graphic on /dev/hda1
	    N("%s on %s", $o->{bootloader}{method}, $o->{bootloader}{boot})
	},
	clicked => sub { any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) },
    };

    push @l, {
	group => N("System"),
	label => N("Services"),
	val => sub {
	    require services;
	    my ($l, $activated) = services::services();
	    N("Services: %d activated for %d registered", int(@$activated), int(@$l));
	},
	clicked => sub { 
	    require services;
	    $o->{services} = services::ask($o) and services::doit($o, $o->{services});
	},
    };

    my $check_complete = sub {
	$o->{raw_X} || !pkgs::packageByName($o->{packages}, 'XFree86')->flag_installed ||
	$o->ask_yesorno('', N("You have not configured X. Are you sure you really want this?"));
    };

    $o->summary_prompt(\@l, $check_complete);

    $o->cleanupPrinter;
    install_steps::configureTimezone($o) if !$timezone_manually_set;  #- do not forget it.
}

#------------------------------------------------------------------------------
sub configurePrinter {
    my ($o, $clicked) = @_;

    require printer::main;
    require printer::printerdrake;
    require printer::detect;

    #- $clicked = 0: Preparation of "Summary" step, check whether there are
    #- are local printers. Continue for automatically setting up print
    #- queues if so, return otherwise
    #- $clicked = 1: User clicked "Configure" button in "Summary", enter
    #- Printerdrake for manual configuration
    my $go_on = $clicked ? 2 : $o && printer::detect::local_detect();
    $go_on-- or return;

    #- install packages needed for printer::getinfo()
    $::testing or $o->do_pkgs->install('foomatic-db-engine');

    #- take default configuration, this include choosing the right spooler
    #- currently used by the system.
    my $printer = $o->{printer} ||= {};
    eval { add2hash($printer, printer::main::getinfo($o->{prefix})) };

    $printer->{PAPERSIZE} = $o->{locale}{lang} eq 'en_US' || $o->{locale}{country} eq 'CA' ? 'Letter' : 'A4';
    printer::printerdrake::main($printer, $o, $clicked, sub { install_interactive::upNetwork($o, 'pppAvoided') });

}

sub cleanupPrinter {
    my ($o) = @_;
    #- Clean up $o->{printer} so that the records for an auto-installation
    #- contain only the important stuff
    return if !defined($o->{printer});
    require printer::printerdrake;
    printer::printerdrake::final_cleanup($o->{printer});
}
    
#------------------------------------------------------------------------------
sub setRootPassword {
    my ($o, $clicked) = @_;
    my $sup = $o->{superuser} ||= {};
    my $auth = ($o->{authentication}{LDAP} && N_("LDAP") ||
		$o->{authentication}{NIS} && N_("NIS") ||
		$o->{authentication}{winbind} && N_("Windows Domain") ||
		N_("Local files"));
    $sup->{password2} ||= $sup->{password} ||= "";

    return if $o->{security} < 1 && !$clicked;

    $o->ask_from_(
        {
	 title => N("Set root password"), 
	 messages => N("Set root password"),
	 interactive_help_id => "setRootPassword",
	 cancel => ($o->{security} <= 2 && !$::corporate ? 
		    #-PO: keep this short or else the buttons will not fit in the window
		    N("No password") : ''),
	 focus_first => 1,
	 callbacks => { 
	     complete => sub {
		 $sup->{password} eq $sup->{password2} or $o->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return (1,0);
		 length $sup->{password} < 2 * $o->{security}
		   and $o->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $o->{security})), return (1,0);
		 return 0
        } } }, [
{ label => N("Password"), val => \$sup->{password},  hidden => 1 },
{ label => N("Password (again)"), val => \$sup->{password2}, hidden => 1 },
{ label => N("Authentication"), val => \$auth, list => [ N_("Local files"), N_("LDAP"), N_("NIS"), N_("Windows Domain") ], format => \&translate, advanced => 1 },
			 ]) or return;

    if ($auth eq N_("LDAP")) {
	$o->{authentication}{LDAP} ||= 'ldap.' . $o->{netc}{DOMAINNAME};
	$o->{netc}{LDAPDOMAIN} ||= join(',', map { "dc=$_" } split /\./, $o->{netc}{DOMAINNAME});
	$o->ask_from('',
		     N("Authentication LDAP"),
		     [ { label => N("LDAP Base dn"), val => \$o->{netc}{LDAPDOMAIN} },
		       { label => N("LDAP Server"), val => \$o->{authentication}{LDAP} },
		     ]) or goto &setRootPassword;
    } else { $o->{authentication}{LDAP} = '' }
    if ($auth eq N_("NIS")) { 
	$o->{authentication}{NIS} ||= 'broadcast';
	$o->ask_from('',
		     N("Authentication NIS"),
		     [ { label => N("NIS Domain"), val => \ ($o->{netc}{NISDOMAIN} ||= $o->{netc}{DOMAINNAME}) },
		       { label => N("NIS Server"), val => \$o->{authentication}{NIS}, list => ["broadcast"], not_edit => 0 },
		     ]) or goto &setRootPassword;
    } else { $o->{authentication}{NIS} = '' }
    if ($auth eq N_("Windows Domain")) {
	#- maybe we should browse the network like diskdrake --smb and get the 'doze server names in a list 
	#- but networking isn't setup yet necessarily
	$o->ask_warn('', N("For this to work for a W2K PDC, you will probably need to have the admin run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add and reboot the server.\nYou will also need the username/password of a Domain Admin to join the machine to the Windows(TM) domain.\nIf networking is not yet enabled, Drakx will attempt to join the domain after the network setup step.\nShould this setup fail for some reason and domain authentication is not working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) Domain, and Admin Username/Password, after system boot.\nThe command 'wbinfo -t' will test whether your authentication secrets are good."));
	$o->ask_from('',
			N("Authentication Windows Domain"),
			[ { label => N("Windows Domain"), val => \ ($o->{netc}{WINDOMAIN} ||= $o->{netc}{DOMAINNAME}) },
			  { label => N("Domain Admin User Name"), val => \$o->{authentication}{winbind} },
			  { label => N("Domain Admin Password"), val => \$o->{authentication}{winpass}, hidden => 1  },
			]) or goto &setRootPassword;
    } else { $o->{authentication}{winbind} = '' }
    install_steps::setRootPassword($o);
}

#------------------------------------------------------------------------------
#-addUser
#------------------------------------------------------------------------------
sub addUser {
    my ($o, $clicked) = @_;
    $o->{users} ||= [];

    if ($o->{security} < 1) {
	push @{$o->{users}}, { password => 'mandrake', realname => 'default', icon => 'automagic' } 
	  if !member('mandrake', map { $_->{name} } @{$o->{users}});
    }
    if ($o->{security} >= 1 || $clicked) {
	any::ask_users($o->{prefix}, $o, $o->{users}, $o->{security});
    }
    add2hash($o, any::get_autologin());
    any::autologin($o, $o);

    install_steps::addUser($o);
}

#------------------------------------------------------------------------------
sub setupBootloaderBefore {
    my ($o) = @_;
    my $_w = $o->wait_message('', N("Preparing bootloader..."));
    $o->SUPER::setupBootloaderBefore;
}

#------------------------------------------------------------------------------
sub setupBootloader {
    my ($o) = @_;
    if (arch() =~ /ppc/) {
	my $machtype = detect_devices::get_mac_generation();
	if ($machtype !~ /NewWorld/) {
	    $o->ask_warn('', N("You appear to have an OldWorld or Unknown\n machine, the yaboot bootloader will not work for you.\nThe install will continue, but you'll\n need to use BootX or some other means to boot your machine"));
	    log::l("OldWorld or Unknown Machine - no yaboot setup");
	    return;
	}
    }
    if (arch() =~ /^alpha/) {
	$o->ask_yesorno('', N("Do you want to use aboot?"), 1) or return;
	catch_cdie { $o->SUPER::setupBootloader } sub {
	    $o->ask_yesorno('', 
N("Error installing aboot, 
try to force installation even if that destroys the first partition?"));
	};
    } else {
	any::setupBootloader_simple($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return;

	{
	    my $_w = $o->wait_message('', N("Installing bootloader"));
	    eval { $o->SUPER::setupBootloader };
	}
	if (my $err = $@) {
	    $err =~ s/^\w+ failed// or die;
            $err = formatError($err);
            while ($err =~ s/^Warning:.*//m) {}
	    $o->ask_warn('', [ N("Installation of bootloader failed. The following error occured:"), $err ]);
	    die "already displayed";
	} elsif (arch() =~ /ppc/) {
	    my $of_boot = cat_("$o->{prefix}/tmp/of_boot_dev") || die "Can't open $o->{prefix}/tmp/of_boot_dev";
	    chop($of_boot);
	    $o->ask_warn('', N("You may need to change your Open Firmware boot-device to\n enable the bootloader.  If you don't 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\nAt your next boot you should see the bootloader prompt.", $of_boot));
	}
    }
}

sub miscellaneous {
    my ($o, $_clicked) = @_;

    require security::level;
    security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user});

    install_steps::miscellaneous($o);
}

#------------------------------------------------------------------------------
sub configureX {
    my ($o, $expert) = @_;

    install_steps::configureXBefore($o);
    symlink "$o->{prefix}/etc/gtk", "/etc/gtk";

    my $options = { 
	allowFB => $o->{allowFB},
	allowNVIDIA_rpms => $o->do_pkgs->check_kernel_module_packages('NVIDIA_kernel', 'NVIDIA_GLX'),
    };

    require Xconfig::main;
    if (my $raw_X = Xconfig::main::configure_everything_or_configure_chooser($o, $options, !$expert, $o->{keyboard}, $o->{mouse})) {
	$o->{raw_X} = $raw_X;
	install_steps::configureXAfter($o);
    }
}

#------------------------------------------------------------------------------
sub generateAutoInstFloppy {
    my ($o, $replay) = @_;

    my $floppy = detect_devices::floppy();

    $o->ask_okcancel('', N("Insert a blank floppy in drive %s", $floppy), 1) or return;

    my $dev = devices::make($floppy);
    {
	my $_w = $o->wait_message('', N("Creating auto install floppy..."));
	install_any::getAndSaveAutoInstallFloppy($o, $replay, $dev) or return;
    }
    common::sync();         #- if you shall remove the floppy right after the LED switches off
}

#------------------------------------------------------------------------------
sub exitInstall {
    my ($o, $alldone) = @_;

    return $o->{step} = '' if !$alldone && !$o->ask_yesorno('', 
N("Some steps are not completed.

Do you really want to quit now?"), 0);

    install_steps::exitInstall($o);

    $o->exit unless $alldone;

    $o->ask_from_no_check(
	{
	 messages => formatAlaTeX(install_messages::install_completed()),
	 interactive_help_id => 'exitInstall',
	 ok => N("Reboot"),
	},      
	[
	 { val => \ (my $_t1 = N("Generate auto install floppy")), clicked => sub {
		   my $t = $o->ask_from_list_('', 
N("The auto install can be fully automated if wanted,
in that case it will take over the hard drive!!
(this is meant for installing on another box).

You may prefer to replay the installation.
"), [ N_("Replay"), N_("Automated") ]);
		   $t and $o->generateAutoInstFloppy($t eq 'Replay');
	       }, advanced => 1 },
	 { val => \ (my $_t2 = N("Save packages selection")), clicked => sub { install_any::g_default_packages($o) }, advanced => 1 },
	]
	) if $alldone && !$::g_auto_install;
}


#-######################################################################################
#- Misc Steps Functions
#-######################################################################################

1;
ddrake2:97 #, c-format msgid "EIDE/SCSI channel" msgstr "EIDE/SCSI ਚੈਨਲ" #: harddrake2:98 #, c-format msgid "Disk identifier" msgstr "ਡਿਸਕ ਪਛਾਣ" #: harddrake2:98 #, c-format msgid "usually the disk serial number" msgstr "ਆਮ ਵਰਤਿਆ ਡਿਸਕ ਲੜੀ ਅੰਕ" #: harddrake2:99 #, c-format msgid "Logical unit number" msgstr "ਲੌਜ਼ੀਕਲ ਇਕਾਈ ਅੰਕ" #: harddrake2:99 #, c-format msgid "" "the SCSI target number (LUN). SCSI devices connected to a host are uniquely " "identified by a\n" "channel number, a target id and a logical unit number" msgstr "" "SCSI ਮੰਜ਼ਿਲ ਅੰਕ (LUN)। ਮੇਜ਼ਬਾਨ ਨਾਲ ਜੁੜੇ SCSI ਜੰਤਰਾਂ ਦੀ ਵੱਖਰੀ ਪਛਾਣ\n" "ਚੈਨਲ ਨੰਬਰ, ਮੰਜ਼ਿਲ id ਅਤੇ ਲੌਜ਼ੀਕਲ ਇਕਾਈ ਅੰਕ ਨਾਲ ਹੁੰਦੀ ਹੈ" #. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...) #: harddrake2:106 #, c-format msgid "Installed size" msgstr "ਇੰਸਟਾਲ ਕੀਤਾ ਅਕਾਰ" #: harddrake2:106 #, c-format msgid "Installed size of the memory bank" msgstr "ਮੈਮੋਰੀ ਬੈਂਕ ਦਾ ਇੰਸਟਾਲ ਕੀਤਾ ਅਕਾਰ" #: harddrake2:107 #, c-format msgid "Enabled Size" msgstr "ਯੋਗ ਅਕਾਰ" #: harddrake2:107 #, c-format msgid "Enabled size of the memory bank" msgstr "ਮੈਮੋਰੀ ਬੈਂਕ ਦਾ ਯੋਗ ਅਕਾਰ" #: harddrake2:108 #, c-format msgid "type of the memory device" msgstr "ਮੈਮੋਰੀ ਜੰਤਰ ਦੀ ਕਿਸਮ" #: harddrake2:109 #, c-format msgid "Speed" msgstr "ਗਤੀ" #: harddrake2:109 #, c-format msgid "Speed of the memory bank" msgstr "ਮੈਮੋਰੀ ਬੈਂਕ ਦੀ ਗਤੀ" #: harddrake2:110 #, c-format msgid "Bank connections" msgstr "ਬੈਂਕ ਕੁਨੈਕਸ਼ਨ" #: harddrake2:111 #, c-format msgid "Socket designation of the memory bank" msgstr "ਮੈਮੋਰੀ ਬੈਂਕ ਦਾ ਸਾਕਟ ਨਿਰਧਾਰਿਤ" #: harddrake2:115 #, c-format msgid "Device file" msgstr "ਜੰਤਰ ਫਾਇਲ" #: harddrake2:115 #, c-format msgid "" "the device file used to communicate with the kernel driver for the mouse" msgstr "ਮਾਊਸ ਲਈ ਕਰਨਲ ਡਰਾਈਵਰ ਨਾਲ ਸੰਪਰਕ ਕਰਨ ਵਾਸਤੇ ਵਰਤੀ ਜੰਤਰ ਫਾਇਲ" #: harddrake2:116 #, c-format msgid "Emulated wheel" msgstr "ਸਮਰੂਪ ਪਹੀਆ" #: harddrake2:116 #, c-format msgid "whether the wheel is emulated or not" msgstr "ਕੀ ਪਹੀਆ ਸਮਰੂਪ ਹੈ ਜਾਂ ਨਹੀਂ" #: harddrake2:117 #, c-format msgid "the type of the mouse" msgstr "ਮਾਊਸ ਦੀ ਕਿਸਮ" #: harddrake2:118 #, c-format msgid "the name of the mouse" msgstr "ਮਾਊਸ ਦਾ ਨਾਂ" #: harddrake2:119 #, c-format msgid "Number of buttons" msgstr "ਬਟਨਾਂ ਦੀ ਗਿਣਤੀ" #: harddrake2:119 #, c-format msgid "the number of buttons the mouse has" msgstr "ਮਾਊਸ ਦੇ ਬਟਨਾਂ ਦੀ ਗਿਣਤੀ" #: harddrake2:120 #, c-format msgid "the type of bus on which the mouse is connected" msgstr "ਬੱਸ ਦੀ ਕਿਸਮ ਜਿਸ ਨਾਲ ਮਾਊਸ ਜੁੜਿਆ ਹੈ" #: harddrake2:121 #, c-format msgid "Mouse protocol used by X11" msgstr "X11 ਦੁਆਰਾ ਵਰਤਿਆ ਮਾਊਸ ਪਰੋਟੋਕਾਲ" #: harddrake2:121 #, c-format msgid "the protocol that the graphical desktop use with the mouse" msgstr "ਪਰੋਟੋਕਾਲ ਜੋ ਗਰਾਫੀਕਲ ਵਿਹੜਾ ਮਾਊਸ ਨਾਲ ਵਰਤਦਾ ਹੈ" #: harddrake2:128 harddrake2:137 harddrake2:144 harddrake2:152 harddrake2:332 #, c-format msgid "Identification" msgstr "ਪਛਾਣ" #: harddrake2:129 harddrake2:145 #, c-format msgid "Connection" msgstr "ਕੁਨੈਕਸ਼ਨ" #: harddrake2:138 #, c-format msgid "Performances" msgstr "ਅਦਾਕਾਰੀ" #: harddrake2:139 #, c-format msgid "Bugs" msgstr "ਬੱਗ" #: harddrake2:140 #, c-format msgid "FPU" msgstr "FPU" #: harddrake2:147 #, c-format msgid "Device" msgstr "ਜੰਤਰ" #: harddrake2:148 #, c-format msgid "Partitions" msgstr "ਭਾਗ" #: harddrake2:153 #, c-format msgid "Features" msgstr "ਵਿਸ਼ੇਸਤਾ" #. -PO: please keep all "/" characters !!! #: harddrake2:176 logdrake:78 #, c-format msgid "/_Options" msgstr "/ਚੋਣ(_O)" #: harddrake2:177 harddrake2:206 logdrake:80 #, c-format msgid "/_Help" msgstr "/ਸਹਾਇਤਾ(_H)" #: harddrake2:181 #, c-format msgid "/Autodetect _printers" msgstr "/ਸਵੈ-ਖੋਜੇ ਪ੍ਰਿੰਟਰ(_p)" #: harddrake2:182 #, c-format msgid "/Autodetect _modems" msgstr "/ਸਵੈ-ਖੋਜੇ ਮਾਡਮ(_m)" #: harddrake2:183 #, c-format msgid "/Autodetect _jaz drives" msgstr "/ਸਵੈ-ਖੋਜੀਆਂ _jaz ਡਰਾਈਵਾਂ" #: harddrake2:184 #, c-format msgid "/Autodetect parallel _zip drives" msgstr "" #: harddrake2:188 #, fuzzy, c-format msgid "Hardware Configuration" msgstr "ਨੈੱਟਵਰਕ ਸੰਰਚਨਾ" #: harddrake2:195 #, c-format msgid "/_Quit" msgstr "/ਬਾਹਰ(_Q)" #: harddrake2:208 #, c-format msgid "/_Fields description" msgstr "/ਖੇਤਰ ਵਰਣਨ(_F)" #: harddrake2:210 #, c-format msgid "Harddrake help" msgstr "Harddrake ਸਹਾਇਤਾ" #: harddrake2:219 #, c-format msgid "Select a device!" msgstr "ਜੰਤਰ ਚੁਣੋ!" #: harddrake2:219 #, c-format msgid "" "Once you've selected a device, you'll be able to see the device information " "in fields displayed on the right frame (\"Information\")" msgstr "" "ਜਦੋਂ ਤੁਸੀਂ ਜੰਤਰ ਚੁਣਿਆ, ਤੁਸੀਂ ਸੱਜੇ ਫਰੇਮ (\"Information\") ਵਿੱਚ ਵਿਖਾਏ ਕਾਲਮ ਵਿੱਚ ਜੰਤਰ ਜਾਣਕਾਰੀ " "ਵੇਖ ਸਕਦੇ ਹੋ" #: harddrake2:225 #, c-format msgid "/_Report Bug" msgstr "/ਬੱਗ ਰਿਪੋਰਟ(_R)" #: harddrake2:227 #, c-format msgid "/_About..." msgstr "/ਬਾਰੇ(_A)..." #: harddrake2:230 #, fuzzy, c-format msgid "Harddrake" msgstr "Harddrake2" #: harddrake2:232 #, c-format msgid "Copyright (C) %s by Mandriva" msgstr "" #: harddrake2:234 #, c-format msgid "This is HardDrake, a %s hardware configuration tool." msgstr "" #: harddrake2:267 #, c-format msgid "Detected hardware" msgstr "ਲੱਭੇ ਜੰਤਰ" #: harddrake2:270 scannerdrake:286 #, c-format msgid "Information" msgstr "ਜਾਣਕਾਰੀ" #: harddrake2:272 #, c-format msgid "Set current driver options" msgstr "" #: harddrake2:279 #, c-format msgid "Run config tool" msgstr "config ਸੰਦ ਚਲਾਓ" #: harddrake2:299 #, c-format msgid "" "Click on a device in the left tree in order to display its information here." msgstr "ਇੱਥੇ ਜਾਣਕਾਰੀ ਵਿਖਾਉਣ ਲਈ ਖੱਬੀ ਲੜੀ ਵਿੱਚ ਜੰਤਰ ਤੇ ਕਲਿੱਕ ਕਰੋ।" #: harddrake2:319 #, c-format msgid "unknown" msgstr "ਅਣਪਛਾਤਾ" #: harddrake2:340 #, c-format msgid "Misc" msgstr "ਫੁਟਕਲ" #: harddrake2:415 #, c-format msgid "secondary" msgstr "ਸੈਕੰਡਰੀ" #: harddrake2:415 #, c-format msgid "primary" msgstr "ਪ੍ਰਾਇਮਰੀ" #: harddrake2:419 #, c-format msgid "burner" msgstr "ਨਿਰਮਾਤਾ" #: harddrake2:419 #, c-format msgid "DVD" msgstr "DVD" #: localedrake:47 #, c-format msgid "LocaleDrake" msgstr "LocaleDrake" #: localedrake:53 #, c-format msgid "You should install the following packages: %s" msgstr "ਤੁਹਾਨੂੰ ਹੇਠਲੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨੇ ਚਾਹੀਦੇ ਹਨ: %s" #. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit" #: localedrake:56 #, c-format msgid ", " msgstr ", " #: localedrake:64 #, c-format msgid "The change is done, but to be effective you must logout" msgstr "ਤਬਦੀਲੀ ਕੀਤੀ ਗਈ, ਪਰ ਲਾਗੂ ਕਰਨ ਲਈ ਤੁਹਾਨੂੰ ਲਾਗ-ਆਊਟ ਕਰਨਾ ਪਵੇਗਾ" #: logdrake:51 #, c-format msgid "Mandriva Linux Tools Logs" msgstr "ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਸੰਦ ਲਾਗ" #: logdrake:52 #, c-format msgid "Logs" msgstr "ਲਾਗ" #: logdrake:65 #, c-format msgid "Show only for the selected day" msgstr "ਸਿਰਫ ਚੁਣੇ ਦਿਨ ਲਈ ਵਿਖਾਓ" #: logdrake:72 #, c-format msgid "/File/_New" msgstr "/ਫਾਇਲ(F)/ਨਵਾਂ(_N)" #: logdrake:72 #, c-format msgid "<control>N" msgstr "<control>N" #: logdrake:73 #, c-format msgid "/File/_Open" msgstr "/ਫਾਇਲ(F)/ਖੋਲੋ(_O)" #: logdrake:73 #, c-format msgid "<control>O" msgstr "<control>O" #: logdrake:74 #, c-format msgid "/File/_Save" msgstr "/ਫਾਇਲ(F)/ਸੰਭਾਲੋ(_S)" #: logdrake:74 #, c-format msgid "<control>S" msgstr "<control>S" #: logdrake:75 #, c-format msgid "/File/Save _As" msgstr "/ਫਾਇਲ(F)/ਇਸ ਤਰਾਂ ਸੰਭਾਲੋ(_A)" #: logdrake:76 #, c-format msgid "/File/-" msgstr "/ਫਾਇਲ(F)/-" #: logdrake:79 #, c-format msgid "/Options/Test" msgstr "/ਚੋਣ(O)/ਜਾਂਚ" #: logdrake:81 #, c-format msgid "/Help/_About..." msgstr "/ਸਹਾਇਤਾ(H)/ਇਸ ਬਾਰੇ(_A)..." #: logdrake:110 #, c-format msgid "" "_:this is the auth.log log file\n" "Authentication" msgstr "ਪ੍ਰਮਾਣਿਕਤਾ" #: logdrake:111 #, c-format msgid "" "_:this is the user.log log file\n" "User" msgstr "ਉਪਭੋਗੀ" #: logdrake:112 #, c-format msgid "" "_:this is the /var/log/messages log file\n" "Messages" msgstr "ਸੁਨੇਹੇ" #: logdrake:113 #, c-format msgid "" "_:this is the /var/log/syslog log file\n" "Syslog" msgstr "Syslog" #: logdrake:117 #, c-format msgid "search" msgstr "ਖੋਜ" #: logdrake:129 #, c-format msgid "A tool to monitor your logs" msgstr "ਤੁਹਾਡੇ ਲਾਗ ਨਿਗਰਾਨੀ ਲਈ ਇੱਕ ਸੰਦ" #: logdrake:131 #, c-format msgid "Settings" msgstr "ਵਿਵਸਥਾ" #: logdrake:134 #, c-format msgid "Matching" msgstr "ਮੇਲ ਖਾਂਦਾ ਹੈ" #: logdrake:135 #, c-format msgid "but not matching" msgstr "ਪਰ ਮੇਲ ਨਹੀਂ ਖਾਂਦਾ" #: logdrake:138 #, c-format msgid "Choose file" msgstr "ਫਾਇਲ ਚੁਣੋ" #: logdrake:150 #, c-format msgid "Calendar" msgstr "ਕੈਲੰਡਰ" #: logdrake:159 #, c-format msgid "Content of the file" msgstr "ਫਾਇਲ ਦੇ ਸੰਖੇਪ" #: logdrake:163 logdrake:407 #, c-format msgid "Mail alert" msgstr "ਪੱਤਰ ਚੇਤਾਵਨੀ" #: logdrake:170 #, c-format msgid "The alert wizard has failed unexpectedly:" msgstr "ਚੇਤਾਵਨੀ ਤਖਤੀ ਅਚਾਨਕ ਅਸਫਲ ਹੋਈ:" #: logdrake:174 #, c-format msgid "Save" msgstr "ਸੰਭਾਲੋ" #: logdrake:222 #, c-format msgid "please wait, parsing file: %s" msgstr "ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕੋ, ਫਾਇਲ ਪਾਰਸ ਹੋ ਰਹੀ ਹੈ: %s" #: logdrake:244 #, c-format msgid "Sorry, log file isn't available!" msgstr "" #: logdrake:292 #, c-format msgid "Error while opening \"%s\" log file: %s\n" msgstr "" #: logdrake:385 #, c-format msgid "Apache World Wide Web Server" msgstr "Apache World Wide Web Server" #: logdrake:386 #, c-format msgid "Domain Name Resolver" msgstr "Domain Name Resolver" #: logdrake:387 #, c-format msgid "Ftp Server" msgstr "Ftp ਸਰਵਰ" #: logdrake:388 #, c-format msgid "Postfix Mail Server" msgstr "Postfix ਪੱਤਰ ਸਰਵਰ" #: logdrake:389 #, c-format msgid "Samba Server" msgstr "ਸਾਂਬਾ ਸੇਵਾ" #: logdrake:390 #, c-format msgid "SSH Server" msgstr "SSH ਸਰਵਰ" #: logdrake:391 #, c-format msgid "Webmin Service" msgstr "Webmin ਸੇਵਾ" #: logdrake:392 #, c-format msgid "Xinetd Service" msgstr "Xinetd ਸੇਵਾ" #: logdrake:401 #, c-format msgid "Configure the mail alert system" msgstr "ਪੱਤਰ ਚੇਤਾਵਨੀ ਸਿਸਟਮ ਸੰਰਚਿਤ ਕਰੋ" #: logdrake:402 #, c-format msgid "Stop the mail alert system" msgstr "ਪੱਤਰ ਚੇਤਾਵਨੀ ਸਿਸਟਮ ਰੋਕੋ" #: logdrake:410 #, c-format msgid "Mail alert configuration" msgstr "ਪੱਤਰ ਚੇਤਾਵਨੀ ਸੰਰਚਨਾ" #: logdrake:411 #, c-format msgid "" "Welcome to the mail configuration utility.\n" "\n" "Here, you'll be able to set up the alert system.\n" msgstr "" "ਪੱਤਰ ਸੰਰਚਨਾ ਸਹੂਲਤ ਵੱਲੋਂ ਜੀ ਆਇਆਂ ਨੂੰ।\n" "\n" "ਇੱਥੇ, ਤੁਸੀਂ ਚੇਤਾਵਨੀ ਸਿਸਟਮ ਨਿਰਧਾਰਿਤ ਕਰ ਸਕਦੇ ਹੋ।\n" #: logdrake:414 #, c-format msgid "What do you want to do?" msgstr "ਤੁਸੀਂ ਕੀ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #: logdrake:421 #, c-format msgid "Services settings" msgstr "ਸੇਵਾਵਾਂ ਵਿਵਸਥਾ" #: logdrake:422 #, c-format msgid "" "You will receive an alert if one of the selected services is no longer " "running" msgstr "ਤੁਹਾਨੂੰ ਚੇਤਾਵਨੀ ਮਿਲੇਗੀ ਜੇ ਕੋਈ ਚੁਣੀ ਸੇਵਾ ਨਹੀਂ ਚੱਲਦੀ" #: logdrake:429 #, c-format msgid "Load setting" msgstr "ਲੋਡ ਵਿਵਸਥਾ" #: logdrake:430 #, c-format msgid "You will receive an alert if the load is higher than this value" msgstr "ਤੁਹਾਨੂੰ ਚੇਤਾਵਨੀ ਮਿਲੇਗੀ ਜੇ ਲੋਡ ਇਸ ਮੁੱਲ ਤੋਂ ਜਿਆਦਾ ਹੈ" #: logdrake:431 #, c-format msgid "" "_: load here is a noun, the load of the system\n" "Load" msgstr "ਲੋਡ ਕਰੋ" #: logdrake:436 #, c-format msgid "Alert configuration" msgstr "ਚੇਤਾਵਨੀ ਸੰਰਚਨਾ" #: logdrake:437 #, c-format msgid "Please enter your email address below " msgstr "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣਾ ਈ-ਪੱਤਰ ਸਿਰਨਾਵਾਂ ਹੇਠਾਂ ਭਰੋ" #: logdrake:438 #, c-format msgid "and enter the name (or the IP) of the SMTP server you wish to use" msgstr "ਅਤੇ SMTP ਸਰਵਰ ਜੋ ਤੁਸੀਂ ਵਰਤਣਾ ਹੈ, ਦਾ ਨਾਂ (ਜਾਂ IP) ਦਿਓ" #: logdrake:445 #, c-format msgid "\"%s\" neither is a valid email nor is an existing local user!" msgstr "\"%s\" ਨਾ ਤਾਂ ਯੋਗ ਈ-ਪੱਤਰ ਹੈ ਨਾ ਮੌਜੂਦਾ ਲੋਕਲ ਉਪਭੋਗੀ ਹੈ!" #: logdrake:450 #, c-format msgid "" "\"%s\" is a local user, but you did not select a local smtp, so you must use " "a complete email address!" msgstr "" "\"%s\" ਸਥਾਨਕ ਉਪਭੋਗੀ ਹੈ, ਪਰ ਤੁਸੀਂ ਸਥਾਨਕ smtp ਨਹੀਂ ਚੁਣਿਆ, ਇਸਕਰਕੇ ਤੁਹਾਨੂੰ ਪੂਰਾ ਈ-ਪੱਤਰ " "ਸਿਰਨਾਵਾਂ ਦੇਣਾ ਪਵੇਗਾ!" #: logdrake:457 #, c-format msgid "The wizard successfully configured the mail alert." msgstr "ਤਖਤੀ ਨੇ ਪੱਤਰ ਚੌਕਸੀ ਸੰਰਚਨਾ ਸਫਲਤਾ ਨਾਲ ਕੀਤੀ।" #: logdrake:463 #, c-format msgid "The wizard successfully disabled the mail alert." msgstr "ਤਖਤੀ ਨੇ ਪੱਤਰ ਚੌਕਸੀ ਸਫਲਤਾ ਨਾਲ ਅਯੋਗ ਕੀਤੀ।" #: logdrake:522 #, c-format msgid "Save as.." msgstr "ਇਸ ਤਰਾਂ ਸੰਭਾਲੋ..." #: scannerdrake:51 #, c-format msgid "" "SANE packages need to be installed to use scanners.\n" "\n" "Do you want to install the SANE packages?" msgstr "" "ਸਕੈਨਰ ਵਰਤਣ ਲਈ SANE ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋਣ ਦੀ ਲੋੜ ਹੈ।\n" "\n" "ਕੀ ਤੁਸੀਂ SANE ਪੈਕੇਜ਼ ਇੰਸਟਾਲ ਕਰਨੇ ਚਾਹੁੰਦੇ ਹੋ?" #: scannerdrake:55 #, c-format msgid "Aborting Scannerdrake." msgstr "Scannerdrake ਅਧੂਰਾ ਖਤਮ ਹੋ ਰਿਹਾ ਹੈ।" #: scannerdrake:60 #, c-format msgid "" "Could not install the packages needed to set up a scanner with Scannerdrake." msgstr "Scannerdrake ਨਾਲ ਸਕੈਨਰ ਨਿਰਧਾਰਿਤ ਕਰਨ ਲਈ ਲੋੜੀਂਦੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕਰ ਸਕਦਾ।" #: scannerdrake:61 #, c-format msgid "Scannerdrake will not be started now." msgstr "Scannerdrake ਹੁਣ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋਵੇਗਾ।" #: scannerdrake:67 scannerdrake:506 #, c-format msgid "Searching for configured scanners..." msgstr "ਸੰਰਚਿਤ ਸਕੈਨਰਾਂ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ..." #: scannerdrake:71 scannerdrake:510 #, c-format msgid "Searching for new scanners..." msgstr "ਨਵੇਂ ਸਕੈਨਰਾਂ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ..." #: scannerdrake:79 scannerdrake:532 #, c-format msgid "Re-generating list of configured scanners..." msgstr "ਸੰਰਚਿਤ ਸਕੈਨਰਾਂ ਦੀ ਸੂਚੀ ਮੁੜ ਬਣਾ ਰਿਹਾ ਹੈ..." #: scannerdrake:101 #, c-format msgid "The %s is not supported by this version of %s." msgstr "%s ਨੂੰ %s ਦੇ ਇਸ ਵਰਜ਼ਨ ਦਾ ਸਹਿਯੋਗ ਨਹੀਂ ਹੈ।" #: scannerdrake:104 #, c-format msgid "%s found on %s, configure it automatically?" msgstr "%s ਲੱਭਿਆ ਹੈ %s ਤੇ, ਇਸ ਨੂੰ ਸਵੈ ਹੀ ਸੰਰਚਿਤ ਕਰੋ?" #: scannerdrake:116 #, c-format msgid "%s is not in the scanner database, configure it manually?" msgstr "%s ਇੱਕ ਸਕੈਨਰ ਡਾਟਾਬੇਸ ਨਹੀਂ ਹੈ, ਇਸ ਨੂੰ ਦਸਤੀ ਸੰਰਚਿਤ ਕਰੋ?" #: scannerdrake:130 #, fuzzy, c-format msgid "Scanner configuration" msgstr "ਚੇਤਾਵਨੀ ਸੰਰਚਨਾ" #: scannerdrake:131 #, c-format msgid "Select a scanner model (Detected model: %s, Port: %s)" msgstr "" #: scannerdrake:133 #, c-format msgid "Select a scanner model (Detected model: %s)" msgstr "" #: scannerdrake:134 #, c-format msgid "Select a scanner model (Port: %s)" msgstr "" #: scannerdrake:136 scannerdrake:139 #, c-format msgid " (UNSUPPORTED)" msgstr "" #: scannerdrake:142 #, fuzzy, c-format msgid "The %s is not supported under Linux." msgstr "%s ਨੂੰ %s ਦੇ ਇਸ ਵਰਜ਼ਨ ਦਾ ਸਹਿਯੋਗ ਨਹੀਂ ਹੈ।" #: scannerdrake:169 scannerdrake:183 #, c-format msgid "Do not install firmware file" msgstr "firmware ਫਾਇਲ ਇੰਸਟਾਲ ਨਾ ਕਰੋ" #: scannerdrake:172 scannerdrake:222 #, fuzzy, c-format msgid "Scanner Firmware" msgstr "ਸਕੈਨਰ ਸ਼ੇਅਰਿੰਗ" #: scannerdrake:173 scannerdrake:225 #, c-format msgid "" "It is possible that your %s needs its firmware to be uploaded everytime when " "it is turned on." msgstr "ਇਹ ਸੰਭਵ ਹੈ ਕਿ ਤੁਹਾਡੇ %s ਨੂੰ ਹਰ ਵਾਰ ਚੱਲਣ ਤੇ ਆਪਣਾ firmware ਅੱਪਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" #: scannerdrake:174 scannerdrake:226 #, c-format msgid "If this is the case, you can make this be done automatically." msgstr "ਜੇ ਅਜਿਹਾ ਹੈ, ਤੁਸੀਂ ਇਸ ਨੂੰ ਸਵੈ ਹੀ ਮੁਕੰਮਲ ਹੋਣ ਲਈ ਨਿਰਧਾਰਿਤ ਕਰ ਸਕਦੇ ਹੋ।" #: scannerdrake:175 scannerdrake:229 #, c-format msgid "" "To do so, you need to supply the firmware file for your scanner so that it " "can be installed." msgstr "" "ਅਜਿਹਾ ਕਰਨ ਲਈ, ਤੁਹਾਨੂੰ ਆਪਣੇ ਸਕੈਨਰਾਂ ਲਈ firmware ਫਾਇਲਾਂ ਦੇਣੀਆਂ ਪੈਣਗੀਆਂ ਤਾਂ ਕਿ ਇਹ ਇੰਸਟਾਲ ਹੋ " "ਸਕੇ।" #: scannerdrake:176 scannerdrake:230 #, c-format msgid "" "You find the file on the CD or floppy coming with the scanner, on the " "manufacturer's home page, or on your Windows partition." msgstr "" "ਤੁਸੀਂ ਨਿਰਮਾਤਾ ਦੇ ਘਰ ਸਫੇ ਤੇ, ਜਾਂ ਆਪਣੇ Windows ਭਾਗ ਤੇ ਸਕੈਨਰ ਨਾਲ ਆਈ CD ਜਾਂ ਫਲਾਪੀ ਤੋਂ ਫਾਇਲ " "ਲੱਭੀ ਹੈ।" #: scannerdrake:178 scannerdrake:237 #, c-format msgid "Install firmware file from" msgstr "ਇਸ ਤੋਂ firmware ਫਾਇਲ ਇੰਸਟਾਲ ਕਰੋ" #: scannerdrake:180 scannerdrake:188 scannerdrake:239 scannerdrake:246 #, c-format msgid "CD-ROM" msgstr "CD-ROM" #: scannerdrake:181 scannerdrake:190 scannerdrake:240 scannerdrake:248 #, c-format msgid "Floppy Disk" msgstr "ਫਲਾਪੀ ਡਿਸਕ" #: scannerdrake:182 scannerdrake:192 scannerdrake:241 scannerdrake:250 #, c-format msgid "Other place" msgstr "ਹੋਰ ਸਥਿਤੀ" #: scannerdrake:198 #, c-format msgid "Select firmware file" msgstr "firmware ਫਾਇਲ ਚੁਣੋ" #: scannerdrake:201 scannerdrake:260 #, c-format msgid "The firmware file %s does not exist or is unreadable!" msgstr "firmware ਫਾਇਲ %s ਮੌਜੂਦ ਨਹੀਂ ਜਾਂ ਪੜਨਯੋਗ ਨਹੀਂ ਹੈ!" #: scannerdrake:224 #, c-format msgid "" "It is possible that your scanners need their firmware to be uploaded " "everytime when they are turned on." msgstr "ਇਹ ਸੰਭਵ ਹੈ ਕਿ ਤੁਹਾਡੇ ਸਕੈਨਰ ਨੂੰ ਹਰ ਵਾਰ ਚੱਲਣ ਤੇ ਆਪਣਾ firmware ਅੱਪਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" #: scannerdrake:228 #, c-format msgid "" "To do so, you need to supply the firmware files for your scanners so that it " "can be installed." msgstr "" "ਅਜਿਹਾ ਕਰਨ ਲਈ, ਤੁਹਾਨੂੰ ਆਪਣੇ ਸਕੈਨਰਾਂ ਲਈ firmware ਫਾਇਲਾਂ ਦੇਣੀਆਂ ਪੈਣਗੀਆਂ ਤਾਂ ਕਿ ਇਹ ਇੰਸਟਾਲ ਹੋ " "ਸਕੇ।" #: scannerdrake:231 #, c-format msgid "" "If you have already installed your scanner's firmware you can update the " "firmware here by supplying the new firmware file." msgstr "" "ਜੇ ਤੁਸੀਂ ਪਹਿਲਾਂ ਹੀ ਆਪਣੇ ਸਕੈਨਰ ਦਾ firmware ਇੰਸਟਾਲ ਕੀਤਾ ਹੈ, ਤੁਸੀਂ ਇੱਥੇ ਨਵੀਂ firmware ਫਾਇਲ ਦੇ " "ਕੇ firmware ਦਾ ਨਵਿਨੀਕਰਨ ਕਰ ਸਕਦੇ ਹੋ।" #: scannerdrake:233 #, c-format msgid "Install firmware for the" msgstr "ਇਸ ਲਈ firmware ਇੰਸਟਾਲ ਕਰੋ" #: scannerdrake:256 #, c-format msgid "Select firmware file for the %s" msgstr "%s ਲਈ firmware ਫਾਇਲ ਚੁਣੋ" #: scannerdrake:274 #, c-format msgid "Could not install the firmware file for the %s!" msgstr "%s ਲਈ firmware ਫਾਇਲ ਇੰਸਟਾਲ ਨਹੀਂ ਹੋ ਸਕੀ!" #: scannerdrake:287 #, c-format msgid "The firmware file for your %s was successfully installed." msgstr "ਤੁਹਾਡੇ %s ਲਈ firmware ਫਾਇਲ ਸਫਲਤਾ ਨਾਲ ਇੰਸਟਾਲ ਹੋ ਗਈ।" #: scannerdrake:297 #, c-format msgid "The %s is unsupported" msgstr "%s ਨੂੰ ਸਹਿਯੋਗ ਨਹੀਂ" #: scannerdrake:302 #, c-format msgid "" "The %s must be configured by printerdrake.\n" "You can launch printerdrake from the %s Control Center in Hardware section." msgstr "" "%s printerdrake ਦੁਆਰਾ ਸੰਰਚਿਤ ਹੋਣਾ ਜਰੂਰੀ ਹੈ।\n" "ਤੁਸੀਂ printerdrake ਨੂੰ ਜੰਤਰ ਚੋਣ ਵਿੱਚ %s ਕੰਟਰੋਲ ਕੇਂਦਰ ਤੋਂ ਚਲਾ ਸਕਦੇ ਹੋ।" #: scannerdrake:320 #, fuzzy, c-format msgid "Setting up kernel modules..." msgstr "ਕਰਨਲ ਮੈਡਿਊਲ।" #: scannerdrake:330 scannerdrake:337 scannerdrake:367 #, c-format msgid "Auto-detect available ports" msgstr "ਸਵੈ-ਖੋਜੇ ਉਪਲੱਬਧ ਪੋਰਟ" #: scannerdrake:331 scannerdrake:377 #, fuzzy, c-format msgid "Device choice" msgstr "ਜੰਤਰ ਫਾਇਲ" #: scannerdrake:332 scannerdrake:378 #, c-format msgid "Please select the device where your %s is attached" msgstr "ਕਿਰਪਾ ਕਰਕੇ ਜੰਤਰ ਚੁਣੋ ਜਿੱਥੇ ਤੁਹਾਡਾ %s ਜੁੜਿਆ ਹੈ" #: scannerdrake:333 #, c-format msgid "(Note: Parallel ports cannot be auto-detected)" msgstr "(ਸੂਚਨਾ: ਪੈਰਲਲ ਪੋਰਟ ਸਵੈ ਨਹੀਂ ਖੋਜੇ ਜਾ ਸਕੇ)" #: scannerdrake:335 scannerdrake:380 #, c-format msgid "choose device" msgstr "ਜੰਤਰ ਚੁਣੋ" #: scannerdrake:369 #, c-format msgid "Searching for scanners..." msgstr "ਸਕੈਨਰਾਂ ਲਈ ਖੋਜ ਜਾਰੀ..." #: scannerdrake:405 scannerdrake:412 #, fuzzy, c-format msgid "Attention!" msgstr "ਸਵੈ-ਖੋਜ" #: scannerdrake:406 #, c-format msgid "" "Your %s cannot be configured fully automatically.\n" "\n" "Manual adjustments are required. Please edit the configuration file /etc/" "sane.d/%s.conf. " msgstr "" #: scannerdrake:407 scannerdrake:416 #, c-format msgid "" "More info in the driver's manual page. Run the command \"man sane-%s\" to " "read it." msgstr "" #: scannerdrake:409 scannerdrake:418 #, fuzzy, c-format msgid "" "After that you may scan documents using \"XSane\" or \"Kooka\" from " "Multimedia/Graphics in the applications menu." msgstr "" "ਤੁਹਾਡਾ %s ਸੰਰਚਿਤ ਹੋ ਗਿਆ।\n" "ਤੁਸੀਂ ਹੁਣ ਕਾਰਜ ਸੂਚੀ ਵਿੱਚ ਮਲਟੀਮੀਡੀਆ/ਗਰਾਫਿਕਸ ਤੋਂ \"XSane\" ਜਾਂ \"Kooka\" ਵਰਤ ਕੇ ਦਸਤਾਵੇਜ਼ " "ਸਕੈਨ ਕਰ ਸਕਦੇ ਹੋ।" #: scannerdrake:413 #, c-format msgid "" "Your %s has been configured, but it is possible that additional manual " "adjustments are needed to get it to work. " msgstr "" #: scannerdrake:414 #, c-format msgid "" "If it does not appear in the list of configured scanners in the main window " "of Scannerdrake or if it does not work correctly, " msgstr "" #: scannerdrake:415 #, c-format msgid "edit the configuration file /etc/sane.d/%s.conf. " msgstr "" #: scannerdrake:420 #, c-format msgid "Congratulations!" msgstr "ਮੁਬਾਰਕ!" #: scannerdrake:421 #, c-format msgid "" "Your %s has been configured.\n" "You may now scan documents using \"XSane\" or \"Kooka\" from Multimedia/" "Graphics in the applications menu." msgstr "" "ਤੁਹਾਡਾ %s ਸੰਰਚਿਤ ਹੋ ਗਿਆ।\n" "ਤੁਸੀਂ ਹੁਣ ਕਾਰਜ ਸੂਚੀ ਵਿੱਚ ਮਲਟੀਮੀਡੀਆ/ਗਰਾਫਿਕਸ ਤੋਂ \"XSane\" ਜਾਂ \"Kooka\" ਵਰਤ ਕੇ ਦਸਤਾਵੇਜ਼ " "ਸਕੈਨ ਕਰ ਸਕਦੇ ਹੋ।" #: scannerdrake:446 #, c-format msgid "" "The following scanners\n" "\n" "%s\n" "are available on your system.\n" msgstr "" "ਹੇਠਲੇ ਸਕੈਨਰ\n" "\n" "%s\n" "ਤੁਹਾਡੇ ਸਿਸਟਮ ਤੇ ਉਪਲੱਬਧ ਹਨ।\n" #: scannerdrake:447 #, c-format msgid "" "The following scanner\n" "\n" "%s\n" "is available on your system.\n" msgstr "" "ਹੇਠਲਾ ਸਕੈਨਰ\n" "\n" "%s\n" "ਤੁਹਾਡੇ ਸਿਸਟਮ ਤੇ ਉਪਲੱਬਧ ਹੈ।\n" #: scannerdrake:450 scannerdrake:453 #, c-format msgid "There are no scanners found which are available on your system.\n" msgstr "ਇੱਥੇ ਕੋਈ ਸਕੈਨਰ ਨਹੀਂ ਲੱਭਿਆ ਜੋ ਤੁਹਾਡੇ ਸਿਸਟਮ ਤੇ ਉਪਲੱਬਧ ਹੋਵੇ।\n" #: scannerdrake:461 #, fuzzy, c-format msgid "Scanner Management" msgstr "ਪ੍ਰਿੰਟਰ ਪ੍ਰਬੰਧ %s" #: scannerdrake:467 #, c-format msgid "Search for new scanners" msgstr "ਨਵੇਂ ਸਕੈਨਰ ਲਈ ਖੋਜ ਕਰੋ" #: scannerdrake:473 #, c-format msgid "Add a scanner manually" msgstr "ਸਕੈਨਰ ਦਸਤੀ ਸ਼ਾਮਿਲ ਕਰੋ" #: scannerdrake:480 #, c-format msgid "Install/Update firmware files" msgstr "ਇੰਸਟਾਲ/ਨਵਿਨੀਕਰਨ firmware ਫਾਇਲਾਂ" #: scannerdrake:486 #, c-format msgid "Scanner sharing" msgstr "ਸਕੈਨਰ ਸ਼ੇਅਰਿੰਗ" #: scannerdrake:545 scannerdrake:710 #, c-format msgid "All remote machines" msgstr "ਸਭ ਰਿਮੋਟ ਮਸ਼ੀਨਾਂ" #: scannerdrake:557 scannerdrake:860 #, c-format msgid "This machine" msgstr "ਇਹ ਮਸ਼ੀਨ" #: scannerdrake:596 #, fuzzy, c-format msgid "Scanner Sharing" msgstr "ਸਕੈਨਰ ਸ਼ੇਅਰਿੰਗ" #: scannerdrake:597 #, c-format msgid "" "Here you can choose whether the scanners connected to this machine should be " "accessible by remote machines and by which remote machines." msgstr "" "ਇੱਥੇ ਤੁਸੀਂ ਚੁਣ ਸਕਦੇ ਹੋ ਕਿ ਕੀ ਇਸ ਮਸ਼ੀਨ ਨਾਲ ਜੁੜੇ ਸਕੈਨਰ ਰਿਮੋਟ ਮਸ਼ੀਨ ਜਾਂ ਕਿਹੜੀ ਰਿਮੋਟ ਮਸ਼ੀਨ ਦੁਆਰਾ " "ਪਹੁੰਚਣ ਯੋਗ ਹੋਣ।" #: scannerdrake:598 #, c-format msgid "" "You can also decide here whether scanners on remote machines should be made " "available on this machine." msgstr "" "ਤੁਸੀਂ ਇੱਥੇ ਇਹ ਵੀ ਨਿਰਧਾਰਿਤ ਕਰ ਸਕਦੇ ਹੋ ਕਿ ਰਿਮੋਟ ਮਸ਼ੀਨ ਤੋਂ ਸਕੈਨਰ ਇਸ ਮਸ਼ੀਨ ਨੂੰ ਉਪਲੱਬਧ ਹੋਣਾ " "ਚਾਹੀਦਾ ਹੈ।" #: scannerdrake:601 #, c-format msgid "The scanners on this machine are available to other computers" msgstr "ਇਸ ਮਸ਼ੀਨ ਤੇ ਸਕੈਨਰ ਹੋਰ ਕੰਪਿਊਟਰਾਂ ਨੂੰ ਉਪਲੱਬਧ ਹੁੰਦੇ ਹਨ" #: scannerdrake:603 #, c-format msgid "Scanner sharing to hosts: " msgstr "ਮੇਜ਼ਬਾਨਾਂ ਤੇ ਸਕੈਨਰ ਸ਼ੇਅਰਿੰਗ:" #: scannerdrake:608 scannerdrake:625 #, c-format msgid "No remote machines" msgstr "ਕੋਈ ਰਿਮੋਟ ਮਸ਼ੀਨ ਨਹੀਂ" #: scannerdrake:617 #, c-format msgid "Use scanners on remote computers" msgstr "ਰਿਮੋਟ ਕੰਪਿਊਟਰ ਤੇ ਸਕੈਨਰ ਵਰਤੋ" #: scannerdrake:620 #, c-format msgid "Use the scanners on hosts: " msgstr "ਮੇਜ਼ਬਾਨ ਤੇ ਲੋਕਲ ਸਕੈਨਰ ਵਰਤੋ:" #: scannerdrake:647 scannerdrake:719 scannerdrake:869 #, c-format msgid "Sharing of local scanners" msgstr "ਲੋਕਲ ਸਕੈਨਰਾਂ ਦੀ ਸ਼ੇਅਰਿੰਗ" #: scannerdrake:648 #, c-format msgid "" "These are the machines on which the locally connected scanner(s) should be " "available:" msgstr "ਇੱਥੇ ਮਸ਼ੀਨਾਂ ਹਨ ਜਿਨਾ ਤੇ ਲੋਕਲ ਜੁੜੇ ਸਕੈਨਰ ਉਪਲੱਬਧ ਕਰਨੇ ਹਨ:" #: scannerdrake:659 scannerdrake:809 #, c-format msgid "Add host" msgstr "ਮੇਜ਼ਬਾਨ ਸ਼ਾਮਿਲ" #: scannerdrake:665 scannerdrake:815 #, c-format msgid "Edit selected host" msgstr "ਚੁਣਿਆ ਮੇਜ਼ਬਾਨ ਸੋਧ" #: scannerdrake:674 scannerdrake:824 #, c-format msgid "Remove selected host" msgstr "ਚੁਣੇ ਮੇਜ਼ਬਾਨ ਹਟਾਓ" #: scannerdrake:698 scannerdrake:706 scannerdrake:711 scannerdrake:757 #: scannerdrake:848 scannerdrake:856 scannerdrake:861 scannerdrake:907 #, c-format msgid "Name/IP address of host:" msgstr "ਮੇਜ਼ਬਾਨ ਦਾ ਨਾਂ/IP ਸਿਰਨਾਵਾਂ:" #: scannerdrake:720 scannerdrake:870 #, c-format msgid "Choose the host on which the local scanners should be made available:" msgstr "ਮੇਜ਼ਬਾਨ ਚੁਣੋ ਜਿਸ ਤੇ ਲੋਕਲ ਸਕੈਨਰ ਉਪਲੱਬਧ ਕਰਨੇ ਹਨ:" #: scannerdrake:731 scannerdrake:881 #, c-format msgid "You must enter a host name or an IP address.\n" msgstr "ਤੁਹਾਨੂੰ ਮੇਜ਼ਬਾਨ ਨਾਂ ਜਾਂ IP ਸਿਰਨਾਵਾਂ ਦੇਣਾ ਜਰੂਰੀ ਹੈ।\n" #: scannerdrake:742 scannerdrake:892 #, c-format msgid "This host is already in the list, it cannot be added again.\n" msgstr "ਇਹ ਮੇਜ਼ਬਾਨ ਸੂਚੀ ਵਿੱਚ ਮੌਜੂਦ ਹੈ, ਇਹ ਦੁਬਾਰਾ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ।\n" #: scannerdrake:797 #, c-format msgid "Usage of remote scanners" msgstr "ਰਿਮੋਟ ਸਕੈਨਰ ਦੀ ਵਰਤੋਂ" #: scannerdrake:798 #, c-format msgid "These are the machines from which the scanners should be used:" msgstr "ਇਹ ਮਸ਼ੀਨਾਂ ਹਨ ਜਿਨਾ ਤੋਂ ਸਕੈਨਰ ਵਰਤੇ ਜਾਣੇ ਚਾਹੀਦੇ ਹਨ:" #: scannerdrake:955 #, c-format msgid "" "saned needs to be installed to share the local scanner(s).\n" "\n" "Do you want to install the saned package?" msgstr "" "ਲੋਕਲ ਸਕੈਨਰ ਸ਼ੇਅਰ ਕਰਨ ਲਈ saned ਇੰਸਟਾਲ ਹੋਣਾ ਜਰੂਰੀ ਹੈ।\n" "\n" "ਕੀ ਤੁਸੀਂ saned ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #: scannerdrake:959 scannerdrake:963 #, c-format msgid "Your scanner(s) will not be available on the network." msgstr "ਤੁਹਾਡਾ ਸਕੈਨਰ ਨੈੱਟਵਰਕ ਤੇ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।" #: service_harddrake:131 #, c-format msgid "Some devices in the \"%s\" hardware class were removed:\n" msgstr "ਜੰਤਰ ਸ਼੍ਰੇਣੀ \"%s\" ਵਿੱਚ ਕੁਝ ਜੰਤਰ ਹਟਾਏ ਗਏ:\n" #: service_harddrake:132 #, c-format msgid "- %s was removed\n" msgstr "- %s ਹਟਾਇਆ\n" #: service_harddrake:135 #, c-format msgid "Some devices were added: %s\n" msgstr "ਕੁਝ ਜੰਤਰ ਸ਼ਾਮਿਲ ਸਨ: %s\n" #: service_harddrake:136 #, c-format msgid "- %s was added\n" msgstr "- %s ਸ਼ਾਮਿਲ ਸੀ\n" #: service_harddrake:259 #, c-format msgid "Hardware probing in progress" msgstr "ਜੰਤਰ ਖੋਜ ਜਾਰੀ" #: service_harddrake_confirm:7 #, c-format msgid "Hardware changes in \"%s\" class (%s seconds to answer)" msgstr "\"%s\" ਸ਼੍ਰੇਣੀ ਵਿੱਚ ਜੰਤਰ ਤਬਦੀਲੀਆਂ (ਉੱਤਰ ਲਈ %s ਸਕਿੰਟ)" #: service_harddrake_confirm:8 #, c-format msgid "Do you want to run the appropriate config tool?" msgstr "ਕੀ ਤੁਸੀਂ ਜਾਇਜ਼ config ਸੰਦ ਚਲਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" #~ msgid "Error!" #~ msgstr "ਗਲਤੀ!" #~ msgid "I can not find needed image file `%s'." #~ msgstr "ਮੈਂ ਲੋੜੀਂਦੀ ਪ੍ਰਤੀਬਿੰਬ ਫਾਇਲ `%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ।" #~ msgid "Auto Install Configurator" #~ msgstr "ਸਵੈ ਇੰਸਟਾਲ ਸੰਰਚਨਾ-ਕਾਰ" #~ msgid "replay" #~ msgstr "ਮੁੜ ਚਲਾਓ" #~ msgid "manual" #~ msgstr "ਦਸਤੀ" #~ msgid "Automatic Steps Configuration" #~ msgstr "ਸਵੈਚਾਲਤ ਪਗ਼ ਸੰਰਚਨਾ" #~ msgid "" #~ "Please choose for each step whether it will replay like your install, or " #~ "it will be manual" #~ msgstr "ਕਿਰਪਾ ਕਰਕੇ ਹਰੇਕ ਪਗ਼ ਲਈ ਚੁਣੋ ਭਾਵੇਂ ਇਹ ਤੁਹਾਡੀ ਇੰਸਟਾਲ ਮੁੜ ਚਲਾਏਗਾ, ਜਾਂ ਇਹ ਦਸਤਾਵੇਜ਼ ਹੈ" #~ msgid "Insert a blank floppy in drive %s" #~ msgstr "ਡਰਾਈਵ %s ਵਿੱਚ ਖਾਲੀ ਫਲਾਪੀ ਪਾਓ" #~ msgid "Creating auto install floppy" #~ msgstr "ਸਵੈ ਇੰਸਟਾਲ ਫਲਾਪੀ ਬਣਾ ਰਿਹਾ ਹੈ" #~ msgid "Insert another blank floppy in drive %s (for drivers disk)" #~ msgstr "ਡਰਾਈਵ %s ਵਿੱਚ ਹੋਰ ਖਾਲੀ ਫਲਾਪੀ ਪਾਓ (ਡਰਾਈਵਰ ਡਿਸਕ ਲਈ)" #~ msgid "Creating auto install floppy (drivers disk)" #~ msgstr "ਸਵੈ ਇੰਸਟਾਲ ਫਲਾਪੀ (ਡਰਾਈਵਰ ਡਿਸਕ) ਬਣਾ ਰਿਹਾ ਹੈ " #~ msgid "" #~ "\n" #~ "Welcome.\n" #~ "\n" #~ "The parameters of the auto-install are available in the sections on the " #~ "left" #~ msgstr "" #~ "\n" #~ "ਜੀ ਆਇਆਂ ਨੂੰ\n" #~ "\n" #~ "ਸਵੈ-ਇੰਸਟਾਲ ਦੇ ਪੈਰਾਮੀਟਰ ਸੱਜੇ ਭਾਗ ਵਿੱਚ ਉਪਲੱਬਧ ਹਨ" #~ msgid "" #~ "The floppy has been successfully generated.\n" #~ "You may now replay your installation." #~ msgstr "" #~ "ਫਲਾਪੀ ਸਫਲਤਾ ਨਾਲ ਬਣ ਗਈ।\n" #~ "ਤੁਸੀਂ ਹੁਣ ਆਪਣੀ ਇੰਸਟਾਲੇਸ਼ਨ ਮੁੜ ਚਲਾ ਸਕਦੇ ਹੋ।" #~ msgid "Auto Install" #~ msgstr "ਸਵੈ ਇੰਸਟਾਲ" #~ msgid "Add an item" #~ msgstr "ਇਕਾਈ ਸ਼ਾਮਿਲ ਕਰੋ" #~ msgid "Remove the last item" #~ msgstr "ਆਖਰੀ ਇਕਾਈ ਹਟਾਓ" #~ msgid "HardDrake" #~ msgstr "HardDrake" #~ msgid "Menudrake" #~ msgstr "Menudrake" #~ msgid "Msec" #~ msgstr "Msec" #~ msgid "Urpmi" #~ msgstr "Urpmi" #~ msgid "Userdrake" #~ msgstr "Userdrake"